:root {
  --bg: #fbf6f2;
  --surface: #ffffff;
  --surface-warm: #fffaf6;
  --beige: #f4e5d9;
  --blue: #002d5e;
  --blue-2: #0b4479;
  --yellow: #fab900;
  --green: #5b9a48;
  --text: #17314d;
  --muted: #647184;
  --line: #dce2e8;
  --shadow: 0 10px 28px rgba(0, 45, 94, .10);
  --shadow-soft: 0 5px 16px rgba(0, 45, 94, .09);
  --radius: 18px;
  --radius-lg: 28px;
  --font-ui: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display: "Segoe UI Variable", "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #eef1f4;
  color: var(--text);
  font-family: var(--font-ui);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
body.panel-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input { font: inherit; }
button { color: inherit; }
svg.icon { width: 1em; height: 1em; fill: currentColor; display: inline-block; flex: 0 0 auto; }
.svg-sprite { pointer-events: none; }

.site-frame {
  position: relative;
  width: min(100%, 941px);
  min-height: 100vh;
  margin-inline: auto;
  background: var(--bg);
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 20;
  min-height: 112px;
  padding: 18px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid #eef0f2;
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: 286px; height: auto; }
.header-actions { display: flex; align-items: center; gap: 28px; }

.home-hero { height: 356px; overflow: hidden; }
.home-hero img { height: 100%; object-fit: cover; object-position: center 48%; }
.hero-panel {
  position: relative;
  z-index: 3;
  width: calc(100% - 110px);
  margin: -141px 55px 20px;
  padding: 35px 38px 31px;
  background: rgba(255, 250, 246, .98);
  border-radius: 32px;
}
.eyebrow {
  margin: 0 0 12px;
  color: #eaa900;
  font-size: 17px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
h1, h2, h3 { color: var(--blue); }
h1, h2 { font-family: var(--font-display); }
.hero-panel h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 56px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -.025em;
}
.lead {
  margin: 12px 0 22px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.4;
}
.search-box {
  position: relative;
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr 76px;
  align-items: center;
  background: #fff;
  border: 1px solid #cbd5df;
  border-radius: 14px;
  overflow: hidden;
}
.search-box:focus-within { border-color: var(--yellow); }
.search-box-icon { margin-left: 20px; color: #62758a; font-size: 25px; }
.search-box input {
  min-width: 0;
  height: 100%;
  padding: 0 18px;
  border: 0;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  color: var(--text);
  font-size: 18px;
}
.search-box input::placeholder { color: #738196; opacity: 1; }
.search-box button {
  height: 100%;
  min-height: 58px;
  border: 0;
  background: var(--yellow);
  color: var(--blue);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.search-box button:hover { filter: brightness(.96); }
.search-box button .icon { font-size: 29px; }

.topic-section { padding: 0 55px 23px; }
.topic-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.topic-card {
  position: relative;
  height: 162px;
  overflow: hidden;
  border-radius: 16px;
  isolation: isolate;
}
.topic-card img { height: 100%; object-fit: cover; transition: transform .35s ease; }
.topic-card:hover img { transform: scale(1.035); }
.topic-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 20, 45, .03) 12%, rgba(0, 24, 50, .80) 100%);
}
.topic-copy {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 18px;
  bottom: 16px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  color: #fff;
}
.topic-copy > .icon { color: var(--yellow); font-size: 34px; margin-bottom: 4px; }
.topic-copy strong { display: block; font-size: 24px; line-height: 1.1; }
.topic-copy small { display: block; margin-top: 5px; font-size: 16px; color: rgba(255,255,255,.92); }

.content-section { padding: 31px 55px 34px; }
.favorites-section { background: #fff; border-top: 1px solid #f0f1f2; }
.section-heading {
  margin-bottom: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.section-heading h2 { margin: 0; font-size: 34px; line-height: 1.08; }
.section-heading .eyebrow { margin-bottom: 10px; font-size: 15px; }
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 800;
  font-size: 17px;
  white-space: nowrap;
}
.section-link .icon { font-size: 17px; }
.section-link:hover { color: var(--blue-2); }

.featured-list { display: grid; gap: 13px; }
.featured-card {
  position: relative;
  min-height: 184px;
  display: grid;
  grid-template-columns: 41% 1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e7e9ec;
  border-radius: 18px;
}
.featured-image { overflow: hidden; }
.featured-image img { height: 100%; object-fit: cover; }
.featured-body { min-width: 0; padding: 22px 58px 20px 30px; }
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  color: var(--blue);
}
.tag-blue { background: #dcecff; }
.tag-green { background: #e3f1dd; color: #2f6e27; }
.featured-card h3 { margin: 10px 0 7px; font-family: var(--font-display); font-size: 26px; line-height: 1.12; }
.featured-card p { margin: 0; color: #536174; font-size: 17px; line-height: 1.42; }
.bookmark-button {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 40px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  color: var(--blue);
  cursor: pointer;
}
.bookmark-button .icon { font-size: 30px; }
.bookmark-button.is-active { color: var(--yellow); }
.rating-row { margin-top: 13px; display: flex; align-items: center; gap: 12px; color: #3d5066; font-size: 15px; }
.stars { color: var(--yellow); letter-spacing: .06em; white-space: nowrap; }

.events-section { background: #fff; padding-top: 22px; }
.event-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.event-card {
  position: relative;
  min-height: 150px;
  display: grid;
  grid-template-columns: 41% 1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e7e9ec;
  border-radius: 17px;
}
.event-image img { height: 100%; object-fit: cover; }
.event-card time {
  position: absolute;
  left: 12px;
  top: 13px;
  width: 63px;
  min-height: 78px;
  padding: 7px 5px;
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  text-align: center;
  color: var(--blue);
}
.event-card time span, .event-card time small { display: block; font-size: 12px; font-weight: 800; }
.event-card time strong { display: block; font-family: var(--font-display); font-size: 29px; line-height: 1.05; }
.event-body { min-width: 0; padding: 18px 18px 15px; }
.event-body h3 { margin: 0 0 12px; font-family: var(--font-display); font-size: 21px; line-height: 1.13; }
.event-body p { margin: 5px 0; display: flex; align-items: center; gap: 8px; color: #546275; font-size: 13px; }
.event-body p .icon { color: var(--blue); font-size: 15px; }

/* Discover page */
.discover-page { background: var(--surface-warm); }
.discover-intro { padding: 29px 56px 17px; background: #fff; }
.discover-intro h1 { margin: 0; font-size: 48px; line-height: 1.08; }
.discover-intro .lead { margin-bottom: 24px; }
.search-box-wide { min-height: 63px; }
.search-box-wide button { min-height: 63px; }
.discover-controls { margin-top: 23px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.results-section { padding: 18px 56px 14px; }
.results-head { margin: 8px 0 14px; display: flex; align-items: baseline; gap: 18px; }
.results-head h2 { margin: 0; font-family: var(--font-ui); font-size: 19px; font-weight: 800; }
.results-head span { color: var(--muted); font-size: 18px; }
.result-list { display: grid; gap: 14px; }
.result-card {
  position: relative;
  min-height: 190px;
  display: grid;
  grid-template-columns: 39% 1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e8eb;
  border-radius: 18px;
}
.result-image { overflow: hidden; }
.result-image img { height: 100%; object-fit: cover; }
.result-body { min-width: 0; padding: 17px 60px 16px 25px; }
.result-body h3 { margin: 8px 0 4px; font-family: var(--font-display); font-size: 27px; line-height: 1.12; }
.result-body p { margin: 0; color: #4b5c70; font-size: 17px; line-height: 1.35; }
.result-meta { margin-top: 11px; display: flex; align-items: center; gap: 10px; color: #43556a; font-size: 14px; }
.result-meta i { width: 4px; height: 4px; border-radius: 50%; background: #8794a2; }
.result-meta .icon { font-size: 17px; }
.no-results { padding: 50px 25px; text-align: center; background: #fff; border: 1px solid #e4e7eb; border-radius: 20px; }
.no-results > .icon { color: var(--blue); font-size: 46px; }
.no-results h3 { margin: 14px 0 5px; font-family: var(--font-display); font-size: 28px; }
.no-results p { margin: 0 0 18px; color: var(--muted); }
.themes-section { padding-top: 10px; background: var(--surface-warm); }
.compact-heading { align-items: center; }
.compact-heading h2 { font-size: 32px; }
.mini-topic-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 16px; }
.mini-topic {
  position: relative;
  height: 126px;
  overflow: hidden;
  border-radius: 16px;
  color: #fff;
}
.mini-topic > img { height: 100%; object-fit: cover; }
.mini-topic > span:not(.topic-shade) {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 38px;
  bottom: 15px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 12px;
  align-items: center;
}
.mini-topic > span .icon { grid-row: 1 / span 2; color: var(--yellow); font-size: 31px; }
.mini-topic b { font-size: 20px; line-height: 1.1; }
.mini-topic small { font-size: 14px; color: rgba(255,255,255,.92); }
.mini-arrow { position: absolute; z-index: 3; right: 15px; bottom: 40px; font-size: 22px; }

/* Location detail */
.location-page { background: var(--surface-warm); padding-bottom: 28px; }
.gallery { position: relative; height: 358px; overflow: hidden; background: #dce4eb; }
.gallery-image { position: absolute; inset: 0; height: 100%; object-fit: cover; opacity: 0; transition: opacity .35s ease; }
.gallery-image.active { opacity: 1; }
.photo-count {
  position: absolute;
  right: 28px;
  top: 27px;
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 13px;
  background: rgba(0,45,94,.82);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  cursor: pointer;
}
.photo-count .icon { font-size: 21px; }
.gallery-dots { position: absolute; left: 50%; bottom: 75px; transform: translateX(-50%); display: flex; gap: 7px; }
.gallery-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.65); cursor: pointer; }
.gallery-dots button.active { background: #fff; }
.location-summary {
  position: relative;
  z-index: 4;
  width: calc(100% - 80px);
  margin: -73px 40px 12px;
  padding: 20px 25px 17px;
  background: rgba(255,250,246,.99);
  border-radius: 26px;
}
.summary-top { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.summary-top h1 { margin: 9px 0 7px; font-size: 41px; line-height: 1.06; }
.location-line { margin: 0; display: flex; align-items: center; gap: 8px; color: #5d6979; font-size: 17px; }
.location-line .icon { color: var(--blue); font-size: 19px; }
.rating-large { margin-top: 10px; font-size: 17px; }
.rating-large .stars { font-size: 24px; }
.summary-actions { display: flex; gap: 9px; }
.summary-actions button {
  width: 86px;
  min-height: 92px;
  border: 1px solid #e4e7ea;
  border-radius: 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--blue);
  cursor: pointer;
}
.summary-actions .icon { font-size: 31px; }
.summary-actions span { font-size: 14px; }
.summary-actions button.is-active { color: var(--yellow); }
.fact-grid {
  margin-top: 18px;
  padding: 16px 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid #e6e8ea;
  border-radius: 15px;
}
.fact-grid > div { min-width: 0; padding: 0 13px; text-align: center; border-right: 1px solid #e6e8eb; }
.fact-grid > div:last-child { border-right: 0; }
.fact-grid .icon { color: var(--blue); font-size: 27px; }
.fact-grid .fact-yellow { color: var(--yellow); }
.fact-grid .fact-green { color: #4a9638; }
.fact-grid strong { display: block; margin-top: 5px; font-size: 15px; }
.fact-grid span { display: block; margin-top: 3px; color: #657083; font-size: 13px; line-height: 1.3; }
.detail-stack { padding: 0 40px; display: grid; gap: 13px; }
.detail-card { padding: 16px 24px; background: #fff; border: 1px solid #e6e8eb; border-radius: 17px; }
.detail-card h2 { margin: 0 0 12px; font-size: 25px; line-height: 1.1; }
.detail-card p { margin: 0; color: #46586c; font-size: 16px; }
.accordion { padding: 0; overflow: hidden; }
.accordion-head { width: 100%; padding: 17px 24px 9px; border: 0; background: transparent; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-display); font-size: 25px; font-weight: 700; color: var(--blue); cursor: pointer; }
.accordion-head .icon { font-size: 17px; transition: transform .2s; }
.accordion:not(.open) .accordion-head .icon { transform: rotate(-90deg); }
.accordion-content { padding: 0 24px 17px; }
.accordion:not(.open) .accordion-content { display: none; }
.highlight-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px 26px; }
.highlight-grid > div { display: flex; align-items: center; gap: 12px; color: #45566b; font-size: 15px; }
.highlight-grid .icon { color: var(--yellow); font-size: 25px; }
.planning-card { padding-bottom: 10px; }
.planning-card > a {
  min-height: 47px;
  display: grid;
  grid-template-columns: 29px 170px 1fr 20px;
  align-items: center;
  gap: 11px;
  border-top: 1px solid #e7e8ea;
  color: #4f6073;
  font-size: 14px;
}
.planning-card > a:first-of-type { border-top: 0; }
.planning-card > a > .icon:first-child { color: var(--blue); font-size: 22px; }
.planning-card strong { color: var(--blue); font-size: 15px; }
.planning-card .chevron { color: var(--blue); font-size: 15px; }
.reviews-card .section-heading { margin-bottom: 12px; }
.reviews-layout { display: grid; grid-template-columns: 150px 1fr 1fr; gap: 14px; align-items: stretch; }
.rating-summary { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding-left: 10px; }
.rating-summary > strong { font-family: var(--font-display); font-size: 54px; line-height: 1; color: var(--blue); }
.rating-summary .stars { margin: 10px 0 4px; font-size: 23px; }
.rating-summary small { color: #667184; }
.review { padding: 13px 15px; background: #fff; border: 1px solid #e8eaed; border-radius: 13px; }
.review-head { display: flex; gap: 10px; align-items: center; }
.avatar { width: 47px; height: 47px; border-radius: 50%; background-size: cover; background-position: center; flex: 0 0 auto; }
.avatar-a { background-image: url('../img/norderney-beach.webp'); }
.avatar-b { background-image: url('../img/greetsiel-harbour.webp'); }
.review-head strong { display: block; font-size: 14px; color: var(--blue); }
.review-head > div > div { display: flex; align-items: center; gap: 7px; }
.review-head .stars { font-size: 18px; line-height: 1; letter-spacing: .075em; }
.review-head small { color: #6d7786; font-size: 11px; }
.review p { margin-top: 10px; font-size: 13px; line-height: 1.4; }
.similar-card .section-heading { margin-bottom: 10px; }
.similar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.similar-place { min-height: 130px; display: grid; grid-template-columns: 40% 1fr; overflow: hidden; border: 1px solid #e5e8eb; border-radius: 13px; background: #fff; }
.similar-place img { height: 100%; object-fit: cover; }
.similar-place > div { padding: 10px 10px 8px; }
.similar-place h3 { margin: 0 0 4px; font-family: var(--font-display); font-size: 17px; line-height: 1.15; }
.similar-place .tag { min-height: 22px; padding: 3px 8px; font-size: 11px; }
.similar-place p { margin: 5px 0 2px; font-size: 11px; }
.similar-place .stars { font-size: 11px; }
.similar-place small { display: block; color: #5c6a7c; font-size: 11px; line-height: 1.3; }

/* Panels: geometry and component styling live in components.css. */
.overlay { position: fixed; inset: 0; z-index: 90; }
.drawer,
.search-overlay,
.sheet,
.map-panel {
  position: fixed;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease, visibility .25s;
}
.drawer { top: 0; right: 0; bottom: 0; width: min(88vw,430px); transform: translateX(100%); }
.drawer.is-open { visibility: visible; opacity: 1; transform: translateX(0); }
.drawer-logo { width: 235px; margin-bottom: 35px; }
.drawer nav { display: grid; }
.drawer nav a { padding: 17px 0; border-bottom: 1px solid #e8ebee; font-size: 20px; font-weight: 750; color: var(--blue); }
.search-overlay { left: 50%; top: 50%; transform: translate(-50%,-46%) scale(.98); }
.search-overlay.is-open { visibility: visible; opacity: 1; transform: translate(-50%,-50%) scale(1); }
.sheet { left: 50%; }
.sheet.is-open { visibility: visible; opacity: 1; }
.map-panel { inset: 0; }
.map-panel.is-open { visibility: visible; opacity: 1; }
.fake-map { position: absolute; inset: 0; overflow: hidden; background: #e8e5d9; }
.map-water { position: absolute; right: -8%; top: -5%; width: 54%; height: 110%; background: #badde6; clip-path: polygon(23% 0,100% 0,100% 100%,0 100%,18% 65%,2% 32%); }
.map-road { position: absolute; height: 8px; background: #fff; border: 1px solid #d3d0c2; transform-origin: left center; border-radius: 10px; }
.road-a { left: 6%; top: 42%; width: 76%; transform: rotate(13deg); }
.road-b { left: 10%; top: 67%; width: 62%; transform: rotate(-20deg); }
.map-pin { position: absolute; color: var(--yellow); filter: drop-shadow(0 4px 5px rgba(0,0,0,.24)); }
.map-pin .icon { font-size: 48px; }
.pin-a { left: 28%; top: 38%; }.pin-b { left: 56%; top: 57%; }.pin-c { left: 68%; top: 27%; }
.map-caption { position: absolute; left: 22px; right: 22px; bottom: 25px; padding: 18px 20px; border-radius: 15px; background: #fff; }
.map-caption strong, .map-caption span { display: block; }
.map-caption strong { color: var(--blue); font-size: 18px; }
.map-caption span { color: var(--muted); }
.toast { position: fixed; z-index: 120; left: 50%; bottom: 24px; transform: translate(-50%, 30px); padding: 12px 18px; border-radius: 10px; background: var(--blue); color: #fff; font-weight: 700; opacity: 0; visibility: hidden; transition: .2s; }
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

@media (max-width: 700px) {
  .site-header { min-height: 76px; padding: 11px 20px; }
  .brand img { width: 190px; }
  .header-actions { gap: 13px; }
  .icon-button .icon { font-size: 27px; }
  .home-hero { height: 235px; }
  .hero-panel { width: calc(100% - 36px); margin: -67px 18px 16px; padding: 22px 21px 22px; border-radius: 21px; }
  .eyebrow { font-size: 12px; margin-bottom: 9px; }
  .hero-panel h1 { font-size: clamp(30px, 8.4vw, 40px); }
  .lead { margin: 9px 0 17px; font-size: 15px; }
  .search-box { min-height: 52px; grid-template-columns: auto 1fr 56px; border-radius: 12px; }
  .search-box-icon { margin-left: 15px; font-size: 20px; }
  .search-box input { padding: 0 11px; font-size: 14px; }
  .search-box button { min-height: 52px; }
  .search-box button .icon { font-size: 22px; }
  .topic-section { padding: 0 18px 19px; }
  .topic-grid { gap: 10px; }
  .topic-card { height: 115px; border-radius: 13px; }
  .topic-copy { left: 13px; right: 10px; bottom: 10px; gap: 9px; }
  .topic-copy > .icon { font-size: 23px; }
  .topic-copy strong { font-size: 15px; }
  .topic-copy small { margin-top: 3px; font-size: 10px; }
  .content-section { padding: 23px 18px 27px; }
  .section-heading { gap: 11px; align-items: flex-end; }
  .section-heading h2 { font-size: 27px; }
  .section-heading .eyebrow { font-size: 10px; }
  .section-link { gap: 5px; font-size: 12px; }
  .featured-card { min-height: 139px; grid-template-columns: 42% 1fr; border-radius: 14px; }
  .featured-body { padding: 13px 36px 12px 13px; }
  .tag { min-height: 21px; padding: 3px 8px; font-size: 9px; }
  .featured-card h3 { margin: 6px 0 4px; font-size: 18px; }
  .featured-card p { font-size: 11px; line-height: 1.35; }
  .bookmark-button { right: 8px; bottom: 9px; width: 28px; height: 32px; }
  .bookmark-button .icon { font-size: 21px; }
  .rating-row { margin-top: 7px; gap: 7px; font-size: 10px; }
  .event-grid { grid-template-columns: 1fr; }
  .event-card { min-height: 135px; }
  .event-body h3 { font-size: 19px; }

  .discover-intro { padding: 24px 18px 16px; }
  .discover-intro h1 { font-size: 33px; }
  .discover-intro .lead { margin-bottom: 17px; }
  .discover-controls { margin-top: 15px; gap: 8px; }
  .discover-controls button { min-height: 49px; gap: 7px; border-radius: 12px; font-size: 13px; }
  .discover-controls .icon { font-size: 20px; }
  .sort-glyph { font-size: 25px; }
  .results-section { padding: 13px 18px 10px; }
  .results-head { margin: 5px 0 11px; gap: 10px; }
  .results-head h2 { font-size: 15px; }
  .results-head span { font-size: 13px; }
  .result-list { gap: 10px; }
  .result-card { min-height: 144px; grid-template-columns: 39% 1fr; border-radius: 14px; }
  .result-body { padding: 10px 34px 9px 12px; }
  .result-body h3 { margin: 5px 0 3px; font-size: 18px; }
  .result-body p { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: 11px; line-height: 1.3; }
  .result-meta { margin-top: 7px; gap: 5px; font-size: 9px; flex-wrap: wrap; }
  .result-meta .icon { font-size: 12px; }
  .themes-section { padding-top: 13px; }
  .compact-heading h2 { font-size: 26px; }
  .mini-topic-grid { gap: 9px; }
  .mini-topic { height: 91px; border-radius: 12px; }
  .mini-topic > span:not(.topic-shade) { left: 12px; right: 25px; bottom: 9px; gap: 2px 7px; }
  .mini-topic > span .icon { font-size: 20px; }
  .mini-topic b { font-size: 14px; }
  .mini-topic small { font-size: 9px; }
  .mini-arrow { right: 8px; bottom: 31px; font-size: 14px; }

  .gallery { height: 250px; }
  .photo-count { right: 15px; top: 14px; min-height: 34px; padding: 0 10px; font-size: 12px; }
  .photo-count .icon { font-size: 15px; }
  .gallery-dots { bottom: 47px; }
  .location-summary { width: calc(100% - 30px); margin: -43px 15px 10px; padding: 15px 15px 13px; border-radius: 19px; }
  .summary-top { grid-template-columns: 1fr; gap: 12px; }
  .summary-top h1 { font-size: 29px; }
  .location-line { font-size: 13px; }
  .rating-large { font-size: 12px; }
  .rating-large .stars { font-size: 17px; }
  .summary-actions { position: absolute; right: 14px; top: 14px; }
  .summary-actions button { width: 49px; min-height: 50px; gap: 3px; border-radius: 11px; }
  .summary-actions .icon { font-size: 20px; }
  .summary-actions span { display: none; }
  .summary-top > div:first-child { padding-right: 108px; }
  .fact-grid { margin-top: 14px; grid-template-columns: repeat(2, 1fr); gap: 0; padding: 8px; }
  .fact-grid > div { padding: 8px 5px; border-right: 1px solid #e6e8eb; border-bottom: 1px solid #e6e8eb; }
  .fact-grid > div:nth-child(2) { border-right: 0; }
  .fact-grid > div:nth-child(n+3) { border-bottom: 0; }
  .fact-grid .icon { font-size: 22px; }
  .fact-grid strong { font-size: 12px; }
  .fact-grid span { font-size: 10px; }
  .detail-stack { padding: 0 15px; gap: 10px; }
  .detail-card { padding: 14px 15px; border-radius: 14px; }
  .detail-card h2, .accordion-head { font-size: 20px; }
  .detail-card p { font-size: 13px; }
  .accordion-head { padding: 14px 15px 7px; }
  .accordion-content { padding: 0 15px 14px; }
  .highlight-grid { grid-template-columns: 1fr; gap: 10px; }
  .highlight-grid > div { font-size: 12px; }
  .highlight-grid .icon { font-size: 21px; }
  .planning-card > a { min-height: 56px; grid-template-columns: 24px 115px 1fr 13px; gap: 7px; font-size: 11px; }
  .planning-card strong { font-size: 12px; }
  .reviews-layout { grid-template-columns: 1fr; }
  .rating-summary { padding: 0 0 4px; flex-direction: row; align-items: center; gap: 10px; }
  .rating-summary > strong { font-size: 38px; }
  .rating-summary .stars { margin: 0; font-size: 17px; }
  .review { padding: 11px; }
  .similar-grid { grid-template-columns: 1fr; }

  .search-overlay { width: calc(100% - 28px); padding: 26px 18px 24px; border-radius: 18px; }
  .search-overlay h2 { font-size: 29px; }
}

@media (max-width: 390px) {
  .brand img { width: 166px; }
  .search-box { grid-template-columns: auto 1fr 54px; }
  .search-box input { padding-inline: 7px; font-size: 12px; text-overflow: ellipsis; }
  .topic-copy strong { font-size: 14px; }
  .topic-copy small { font-size: 9px; }
  .section-heading h2 { font-size: 25px; }
  .featured-card h3 { font-size: 17px; }
  .featured-card p { font-size: 10px; }
  .event-body { padding-right: 12px; }
  .result-body h3 { font-size: 17px; }
  .result-meta { font-size: 8.5px; }
}

@media (min-width: 942px) {
  body { padding-block: 18px; }
  .site-frame { border-radius: 3px; }
}

/* ========================================================================
   Version 1.1 – moderne Sans-Serif-Typografie und eigenständiges Desktop-UI
   ======================================================================== */
:root {
  --font-ui: "Segoe UI Variable", "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --font-display: var(--font-ui);
  --page-max: 1320px;
  --page-gutter: clamp(18px, 3vw, 42px);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 18px 45px rgba(0, 45, 94, .11);
  --shadow-soft: 0 8px 24px rgba(0, 45, 94, .085);
}

body {
  background: var(--bg);
  font-family: var(--font-ui);
  font-size: 16px;
}

h1, h2, h3,
.hero-panel h1,
.featured-card h3,
.event-card time strong,
.event-body h3,
.discover-intro h1,
.result-body h3,
.no-results h3,
.summary-top h1,
.accordion-head,
.rating-summary > strong,
.similar-place h3,
.search-overlay h2,
.sheet h2 {
  font-family: var(--font-ui) !important;
  letter-spacing: -.035em;
}

h1, h2 { font-weight: 800; }
h3 { font-weight: 750; }

.site-frame {
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  min-height: 76px;
  padding: 0;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid #e8edf1;
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(100% - 36px, var(--page-max));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand { flex: 0 0 auto; }
.brand img { width: 190px; }
.mobile-header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.desktop-nav,
.desktop-header-actions { display: none; }

.icon-button .icon { font-size: 27px; }

/* footer */
.site-footer {
  margin-top: 28px;
  padding: 52px var(--page-gutter) 22px;
  background: var(--blue);
  color: #fff;
}
.footer-inner {
  width: min(100%, var(--page-max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) repeat(3, minmax(140px, .7fr));
  gap: 50px;
}
.footer-brand img {
  width: min(240px, 100%);
  padding: 13px 16px;
  border-radius: 14px;
  background: #fff;
}
.footer-brand p { max-width: 390px; margin: 20px 0 0; color: rgba(255,255,255,.75); }
.footer-column { display: grid; align-content: start; gap: 10px; }
.footer-column h2 { margin: 0 0 6px; color: #fff; font-size: 16px; letter-spacing: 0; }
.footer-column a { color: rgba(255,255,255,.78); font-size: 14px; }
.footer-column a:hover { color: var(--yellow); }
.footer-bottom {
  width: min(100%, var(--page-max));
  margin: 40px auto 0;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.62);
  font-size: 12px;
}

/* discover desktop map additions */
.results-layout { display: block; }
.results-main { min-width: 0; }
.results-head { justify-content: space-between; }
.results-head > div { display: flex; align-items: baseline; gap: 14px; }
.desktop-map-card { display: none; }

/* ensure all cards have a modern type rhythm */
.featured-card h3,
.event-body h3,
.result-body h3,
.similar-place h3 { letter-spacing: -.025em; }

@media (max-width: 700px) {
  .site-header { min-height: 76px; padding: 0; }
  .header-inner { width: calc(100% - 36px); min-height: 76px; }
  .brand img { width: 190px; }
  .site-footer { padding: 38px 18px 18px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand img { width: 190px; }
  .footer-column h2 { font-size: 14px; }
  .footer-bottom { margin-top: 30px; flex-direction: column; gap: 5px; }
  .hero-panel h1 { font-weight: 800; letter-spacing: -.035em; }
  .section-heading h2,
  .featured-card h3,
  .event-body h3,
  .result-body h3,
  .summary-top h1,
  .detail-card h2,
  .accordion-head,
  .similar-place h3 { font-family: var(--font-ui) !important; }
}

@media (max-width: 390px) {
  .brand img { width: 166px; }
}

@media (min-width: 1180px) {
  body { padding: 0; background: var(--bg); }
  .site-frame { border-radius: 0; }

  .site-header { min-height: 88px; }
  .header-inner {
    width: min(100% - 56px, 1440px);
    min-height: 88px;
    gap: 26px;
  }
  .brand img { width: 218px; }
  .mobile-header-actions { display: none; }
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
  }
  .desktop-nav a {
    min-height: 42px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    border-radius: 11px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 750;
  }
  .desktop-nav a:hover,
  .desktop-nav a.is-active { background: #edf4fa; }
  .desktop-header-actions { display: flex; align-items: center; gap: 12px; }
  .header-icon-link {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--blue);
  }
  .header-icon-link:hover { background: #edf4fa; }
  .header-icon-link .icon { font-size: 22px; }
  .profile-link {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--beige);
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
  }
  .header-cta {
    min-height: 44px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    border-radius: 11px;
    background: var(--yellow);
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
  }
  .header-cta:hover { filter: brightness(.97); }

  /* Home */
  .home-hero-composition {
    position: relative;
    width: min(100% - 56px, 1440px);
    min-height: 650px;
    margin: 32px auto 0;
  }
  .home-hero {
    height: 590px;
    overflow: hidden;
    border-radius: 28px;
  }
  .home-hero img { object-position: center 53%; }
  .hero-panel {
    position: absolute;
    left: 58px;
    bottom: 0;
    width: min(620px, 48%);
    margin: 0;
    padding: 38px 42px 36px;
    border-radius: 24px;
  }
  .hero-panel h1 { max-width: 560px; font-size: clamp(44px, 4vw, 58px); line-height: 1.04; }
  .hero-panel .lead { max-width: 520px; margin: 14px 0 24px; font-size: 18px; }
  .search-box { min-height: 62px; grid-template-columns: auto 1fr 68px; }
  .search-box button { min-height: 62px; }

  .topic-section {
    width: min(100% - 56px, 1280px);
    margin: 42px auto 0;
    padding: 0 0 66px;
  }
  .topic-grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
  .topic-card { height: 220px; border-radius: 18px; }
  .topic-copy { left: 22px; right: 18px; bottom: 18px; gap: 12px; }
  .topic-copy > .icon { font-size: 30px; }
  .topic-copy strong { font-size: 20px; }
  .topic-copy small { font-size: 13px; }

  .content-section {
    width: min(100% - 56px, 1280px);
    margin-inline: auto;
    padding: 60px 0 68px;
  }
  .favorites-section,
  .events-section { background: transparent; border: 0; }
  .section-heading { margin-bottom: 25px; }
  .section-heading h2 { font-size: 38px; line-height: 1.08; }
  .section-heading .eyebrow { font-size: 13px; }
  .section-link { font-size: 14px; }
  .featured-list { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
  .featured-card { min-height: 260px; grid-template-columns: 46% 1fr; border-radius: 20px; }
  .featured-body { padding: 30px 58px 28px 28px; }
  .featured-card h3 { margin: 12px 0 8px; font-size: 25px; }
  .featured-card p { font-size: 15px; }
  .rating-row { font-size: 13px; }
  .event-grid { gap: 22px; }
  .event-card { min-height: 230px; grid-template-columns: 46% 1fr; border-radius: 20px; }
  .event-body { padding: 30px 26px 24px; }
  .event-body h3 { font-size: 24px; }
  .event-body p { font-size: 14px; }
  .event-card time { left: 18px; top: 18px; width: 70px; min-height: 88px; }

  /* Discover */
  .discover-page { padding-bottom: 18px; }
  .discover-intro {
    width: min(100% - 56px, 1280px);
    margin: 0 auto;
    padding: 64px 0 38px;
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    grid-template-areas:
      "eyebrow search"
      "title search"
      "lead controls";
    column-gap: 64px;
    align-items: end;
    background: transparent;
  }
  .discover-intro > .eyebrow { grid-area: eyebrow; align-self: end; }
  .discover-intro > h1 { grid-area: title; margin: 0; font-size: 50px; line-height: 1.04; }
  .discover-intro > .lead { grid-area: lead; max-width: 520px; margin: 14px 0 0; font-size: 18px; }
  .discover-intro > .search-box { grid-area: search; align-self: end; }
  .discover-intro > .discover-controls { grid-area: controls; margin-top: 16px; }
  .discover-controls { gap: 12px; }
  .discover-controls button { min-height: 56px; border-radius: 14px; font-size: 15px; }
  .discover-controls .icon { font-size: 23px; }
  .sort-glyph { font-size: 30px; }

  .results-section {
    width: min(100% - 56px, 1280px);
    margin: 0 auto;
    padding: 24px 0 36px;
  }
  .results-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(390px, .85fr); gap: 28px; align-items: start; }
  .results-head { margin: 4px 0 18px; }
  .results-head > div { gap: 14px; }
  .results-head h2 { font-size: 18px; }
  .results-head span { font-size: 15px; }
  .result-list { gap: 16px; }
  .result-card { min-height: 210px; grid-template-columns: 39% 1fr; border-radius: 18px; }
  .result-body { padding: 24px 62px 22px 26px; }
  .result-body h3 { margin: 9px 0 5px; font-size: 25px; }
  .result-body p { font-size: 15px; }
  .result-meta { font-size: 12px; }
  .desktop-map-card {
    position: sticky;
    top: 112px;
    display: block;
    overflow: hidden;
    border: 1px solid #e2e7eb;
    border-radius: 22px;
    background: #fff;
  }
  .desktop-map-head {
    min-height: 82px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }
  .desktop-map-head .eyebrow { margin: 0 0 5px; font-size: 10px; }
  .desktop-map-head strong { display: block; color: var(--blue); font-size: 18px; }
  .desktop-map-head button {
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid #d7dfe6;
    border-radius: 10px;
    background: #fff;
    color: var(--blue);
    font-weight: 750;
    cursor: pointer;
  }
  .desktop-fake-map { position: relative; inset: auto; height: 610px; }
  .desktop-fake-map .map-pin { border: 0; background: transparent; cursor: pointer; }
  .desktop-map-location {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    min-height: 94px;
    padding: 10px;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 13px;
    border-radius: 14px;
    background: rgba(255,255,255,.97);
  }
  .desktop-map-location img { height: 74px; object-fit: cover; border-radius: 10px; }
  .desktop-map-location span,
  .desktop-map-location strong,
  .desktop-map-location small { display: block; }
  .desktop-map-location span { color: #6c7989; font-size: 10px; font-weight: 750; text-transform: uppercase; }
  .desktop-map-location strong { margin: 3px 0; color: var(--blue); font-size: 17px; }
  .desktop-map-location small { color: #667386; }
  .themes-section { width: min(100% - 56px, 1280px); padding: 44px 0 74px; }
  .mini-topic-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .mini-topic { height: 168px; border-radius: 17px; }
  .mini-topic b { font-size: 19px; }
  .mini-topic small { font-size: 13px; }

  /* Location detail */
  .location-page { padding: 32px 0 60px; }
  .gallery {
    width: min(100% - 56px, 1440px);
    height: 580px;
    margin-inline: auto;
    border-radius: 28px;
  }
  .gallery-image { object-position: center 55%; }
  .photo-count { right: 28px; top: 24px; }
  .gallery-dots { bottom: 28px; }
  .location-summary {
    width: min(100% - 112px, 1180px);
    margin: -104px auto 28px;
    padding: 34px 38px 30px;
    border-radius: 24px;
  }
  .summary-top h1 { margin: 12px 0 9px; font-size: 46px; }
  .summary-actions button { width: 92px; min-height: 96px; }
  .fact-grid { margin-top: 28px; padding: 19px 12px; }
  .fact-grid strong { font-size: 15px; }
  .detail-stack {
    width: min(100% - 112px, 1180px);
    margin-inline: auto;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    gap: 18px 22px;
    align-items: start;
  }
  .detail-stack > :nth-child(1) { grid-column: 1; grid-row: 1; }
  .detail-stack > :nth-child(2) { grid-column: 1; grid-row: 2; }
  .detail-stack > :nth-child(3) { grid-column: 2; grid-row: 1 / span 2; position: sticky; top: 112px; }
  .detail-stack > :nth-child(4),
  .detail-stack > :nth-child(5) { grid-column: 1 / -1; }
  .detail-card { padding: 24px 28px; border-radius: 18px; }
  .detail-card h2,
  .accordion-head { font-size: 24px; }
  .detail-card p { font-size: 15px; line-height: 1.6; }
  .accordion-head { padding: 24px 28px 10px; }
  .accordion-content { padding: 0 28px 24px; }
  .highlight-grid { gap: 20px 28px; }
  .highlight-grid > div { font-size: 14px; }
  .planning-card > a { grid-template-columns: 28px 125px 1fr 18px; padding: 12px 0; }
  .reviews-layout { grid-template-columns: 180px 1fr 1fr; gap: 18px; }
  .review { padding: 18px; }
  .similar-place { min-height: 170px; grid-template-columns: 42% 1fr; }
  .similar-place > div { padding: 18px; }
  .similar-place h3 { font-size: 20px; }
  .similar-place p,
  .similar-place small { font-size: 12px; }

  .site-footer { margin-top: 0; }
}

@media (min-width: 1180px) and (max-width: 1350px) {
  .header-inner { width: calc(100% - 36px); gap: 16px; }
  .brand img { width: 195px; }
  .desktop-nav a { padding-inline: 9px; font-size: 13px; }
  .header-cta { padding-inline: 15px; }
}

/* ========================================================================
   Version 1.2 – Profil-Offcanvas, gefülltes Herz und zusätzliche Inhaltsseiten
   ======================================================================== */
[hidden] { display: none !important; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.content-shell {
  width: min(calc(100% - 36px), var(--page-max));
  margin-inline: auto;
}
.header-heart .icon { font-size: 21px; }
.profile-link {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.mobile-avatar-button {
  width: 36px;
  height: 36px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--beige);
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
}
.mobile-avatar-button:hover,
.mobile-avatar-button:focus-visible { }
.profile-drawer { padding-top: 72px; }
.profile-drawer-user {
  margin-bottom: 22px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 16px;
  background: var(--surface-warm);
  border: 1px solid #eadfd7;
}
.profile-drawer-avatar,
.profile-settings-avatar,
.article-author-avatar {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--blue);
  font-size: 15px;
  font-weight: 850;
}
.profile-drawer-user strong,
.profile-drawer-user small { display: block; }
.profile-drawer-user strong { color: var(--blue); font-size: 17px; }
.profile-drawer-user small { margin-top: 3px; color: var(--muted); font-size: 13px; }
.profile-drawer-nav { display: grid; }
.profile-drawer-nav a {
  min-height: 70px;
  padding: 12px 4px;
  display: grid;
  grid-template-columns: 27px 1fr 14px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #e7ebef;
  color: var(--blue);
}
.profile-drawer-nav a > .icon:first-child { font-size: 22px; }
.profile-drawer-nav a .nav-chevron { color: #8390a0; font-size: 12px; }
.profile-drawer-nav strong,
.profile-drawer-nav small { display: block; }
.profile-drawer-nav strong { font-size: 15px; }
.profile-drawer-nav small { margin-top: 3px; color: var(--muted); font-size: 12px; font-weight: 500; }
.profile-drawer-nav a:hover strong { color: var(--blue-2); }

/* Shared page elements */
.breadcrumb {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: #718094;
  font-size: 12px;
}
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .icon { font-size: 9px; }
.simple-page-hero {
  padding-top: 38px;
  padding-bottom: 30px;
}
.simple-page-hero h1,
.listing-hero h1,
.magazine-feature-copy h1,
.article-header h1,
.account-hero h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(33px, 6.5vw, 50px);
  line-height: 1.08;
  letter-spacing: -.042em;
}
.simple-page-hero .lead {
  max-width: 760px;
  margin: 13px 0 0;
  font-size: 17px;
}
.page-hero-actions { margin-top: 22px; }

/* Events index */
.events-index-page { padding-bottom: 58px; }
.listing-hero {
  padding-top: 34px;
  padding-bottom: 34px;
  display: grid;
  gap: 28px;
}
.listing-hero-copy .lead { max-width: 650px; margin: 12px 0 22px; font-size: 17px; }
.listing-search { min-height: 56px; }
.date-filter-row {
  margin-top: 15px;
  padding-bottom: 4px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.date-filter-row::-webkit-scrollbar { display: none; }
.featured-event-hero {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: 22px;
  color: #fff;
}
.featured-event-hero > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.featured-event-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,20,45,.08), rgba(0,25,54,.86)); }
.featured-event-hero > time {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 68px;
  padding: 8px 6px;
  border-radius: 13px;
  background: #fff;
  color: var(--blue);
  text-align: center;
}
.featured-event-hero time span,
.featured-event-hero time small { display: block; font-size: 11px; font-weight: 850; }
.featured-event-hero time strong { display: block; font-size: 30px; line-height: 1; }
.featured-event-hero > div { position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 2; }
.event-kicker { display: inline-flex; margin-bottom: 9px; color: var(--yellow); font-size: 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.featured-event-hero h2 { margin: 0; color: #fff; font-size: 28px; line-height: 1.08; }
.featured-event-hero p { margin: 10px 0 13px; color: rgba(255,255,255,.86); font-size: 14px; }
.event-hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: #fff; font-size: 12px; }
.event-hero-meta .icon { color: var(--yellow); }
.event-hero-meta i { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.72); }
.event-list-section { padding-top: 20px; padding-bottom: 54px; }
.event-index-grid { display: grid; gap: 16px; }
.event-index-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 39% 1fr;
  min-height: 176px;
  border: 1px solid #e3e8ed;
  border-radius: 18px;
  background: #fff;
}
.event-index-image { position: relative; overflow: hidden; }
.event-index-image img { height: 100%; object-fit: cover; }
.event-index-image time {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 58px;
  padding: 6px;
  border-radius: 11px;
  background: rgba(255,255,255,.96);
  color: var(--blue);
  text-align: center;
}
.event-index-image time span,
.event-index-image time small { display: block; font-size: 9px; font-weight: 850; }
.event-index-image time strong { display: block; font-size: 25px; line-height: 1; }
.event-index-body { min-width: 0; padding: 17px 16px; }
.event-index-body h3 { margin: 9px 0 7px; color: var(--blue); font-size: 18px; line-height: 1.16; }
.event-index-body > p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.event-index-meta { margin-top: 13px; display: grid; gap: 6px; color: #526378; font-size: 11px; }
.event-index-meta span { display: flex; align-items: center; gap: 7px; }
.event-index-meta .icon { color: var(--blue); font-size: 13px; }
.event-empty-state { padding: 36px 22px; border-radius: 18px; background: #fff; text-align: center; }
.event-empty-state h3 { margin: 0; color: var(--blue); }
.event-empty-state p { color: var(--muted); }
.event-submit-cta {
  padding: 29px;
  display: grid;
  gap: 22px;
  border-radius: 22px;
  background: var(--blue);
  color: #fff;
}
.event-submit-cta h2 { margin: 0; color: #fff; font-size: 29px; }
.event-submit-cta p:not(.eyebrow) { margin: 9px 0 0; color: rgba(255,255,255,.76); }

/* Event detail */
.event-detail-page { padding-bottom: 64px; }
.event-detail-hero { position: relative; min-height: 560px; overflow: hidden; }
.event-detail-hero > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.event-detail-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,25,55,.12), rgba(0,30,62,.88)); }
.event-detail-hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 36px), var(--page-max));
  min-height: 560px;
  margin-inline: auto;
  padding: 34px 0 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.event-detail-hero .breadcrumb { position: absolute; top: 26px; left: 0; color: rgba(255,255,255,.8); }
.event-detail-date {
  width: 82px;
  padding: 10px 8px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: #fff;
  color: var(--blue);
  text-align: center;
}
.event-detail-date span,
.event-detail-date small { display: block; font-size: 11px; font-weight: 850; }
.event-detail-date strong { display: block; font-size: 38px; line-height: 1; }
.event-detail-copy { max-width: 820px; }
.event-detail-copy h1 { margin: 0; color: #fff; font-size: clamp(35px, 7vw, 60px); line-height: 1.03; letter-spacing: -.045em; }
.event-detail-copy p { max-width: 700px; margin: 14px 0 0; color: rgba(255,255,255,.85); font-size: 17px; }
.event-detail-summary {
  position: relative;
  z-index: 3;
  margin-top: -22px;
  padding: 20px;
  display: grid;
  gap: 16px;
  border-radius: 20px;
  background: #fff;
}
.event-fact { display: grid; grid-template-columns: 25px 1fr; gap: 11px; align-items: start; }
.event-fact > .icon { margin-top: 3px; color: var(--yellow); font-size: 21px; }
.event-fact strong,
.event-fact small { display: block; }
.event-fact strong { color: var(--blue); font-size: 14px; }
.event-fact small { margin-top: 2px; color: var(--muted); font-size: 12px; }
.event-detail-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.event-detail-actions button {
  min-height: 43px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #d5dee6;
  border-radius: 11px;
  background: #fff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.event-detail-actions button.is-active { border-color: var(--yellow); background: #fff7d8; }
.event-detail-layout { padding-top: 42px; display: grid; gap: 24px; }
.event-article > section { margin-bottom: 38px; }
.event-article h2 { margin: 0 0 15px; color: var(--blue); font-size: 28px; line-height: 1.13; }
.event-article p { color: #4f6073; line-height: 1.7; }
.event-timeline { margin: 0; padding: 0; list-style: none; }
.event-timeline li { position: relative; display: grid; grid-template-columns: 65px 1fr; gap: 16px; padding-bottom: 25px; }
.event-timeline li:not(:last-child)::before { content: ''; position: absolute; left: 31px; top: 31px; bottom: 0; width: 2px; background: #dbe3ea; }
.event-timeline time { width: 64px; min-height: 35px; display: grid; place-items: center; border-radius: 10px; background: #edf4fa; color: var(--blue); font-size: 12px; font-weight: 850; }
.event-timeline strong { color: var(--blue); font-size: 16px; }
.event-timeline p { margin: 4px 0 0; font-size: 14px; }
.event-note-card { padding: 20px; display: grid; grid-template-columns: 35px 1fr; gap: 14px; border-radius: 16px; background: #fff5d5; }
.event-note-card > .icon { color: var(--blue); font-size: 27px; }
.event-note-card strong { color: var(--blue); }
.event-note-card p { margin: 4px 0 0; }
.event-sidebar { display: grid; gap: 17px; }
.event-sidebar-card,
.event-organizer-card { padding: 22px; border: 1px solid #e3e8ed; border-radius: 18px; background: #fff; }
.event-sidebar h2 { margin: 0 0 15px; color: var(--blue); font-size: 22px; }
.event-sidebar dl { margin: 0 0 19px; }
.event-sidebar dl > div { padding: 11px 0; border-bottom: 1px solid #e7ebef; }
.event-sidebar dt { color: #748193; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.event-sidebar dd { margin: 3px 0 0; color: var(--blue); font-size: 14px; font-weight: 700; }
.event-organizer-card p { color: var(--muted); font-size: 14px; }
.event-organizer-card a { color: var(--blue); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.event-location-section { padding: 36px 0; display: grid; gap: 22px; align-items: center; }
.event-location-section h2 { margin: 0; font-size: 29px; }
.event-location-section p:not(.eyebrow) { color: var(--muted); }
.event-map-illustration { position: relative; min-height: 250px; overflow: hidden; display: grid; place-items: center; border-radius: 20px; background: #eee9da; }
.event-map-illustration > .icon { position: relative; z-index: 2; color: var(--yellow); font-size: 56px; filter: drop-shadow(0 4px 7px rgba(0,45,94,.2)); }
.event-map-illustration > strong { position: absolute; z-index: 2; top: calc(50% + 41px); color: var(--blue); }
.more-events-section { padding-top: 26px; }
.event-index-grid-small { grid-template-columns: 1fr; }

/* Magazine */
.magazine-page { padding: 34px 0 66px; }
.magazine-feature { position: relative; display: grid; gap: 0; }
.magazine-feature-image { position: relative; height: 420px; overflow: hidden; border-radius: 24px; }
.magazine-feature-image img { height: 100%; object-fit: cover; }
.magazine-feature-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,30,60,.02), rgba(0,30,60,.36)); }
.magazine-feature-copy {
  position: relative;
  z-index: 2;
  margin: -55px 14px 0;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255,250,246,.98);
}
.magazine-feature-copy .lead { margin: 12px 0 20px; font-size: 16px; }
.magazine-feature-story { margin: 16px 14px 0; padding: 21px; display: block; border-radius: 18px; background: var(--blue); color: #fff; }
.magazine-feature-story h2 { margin: 10px 0 8px; color: #fff; font-size: 23px; line-height: 1.14; }
.magazine-feature-story p { margin: 0 0 14px; color: rgba(255,255,255,.75); font-size: 14px; }
.magazine-feature-story > span:last-child { display: inline-flex; align-items: center; gap: 9px; color: var(--yellow); font-size: 12px; font-weight: 800; }
.magazine-categories {
  margin-top: 30px;
  padding-bottom: 5px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.magazine-categories::-webkit-scrollbar { display: none; }
.magazine-grid-section { padding-top: 36px; }
.magazine-grid { display: grid; gap: 17px; }
.magazine-card {
  overflow: hidden;
  border: 1px solid #e3e8ed;
  border-radius: 18px;
  background: #fff;
}
.magazine-card > a { display: block; height: 210px; overflow: hidden; }
.magazine-card img { height: 100%; object-fit: cover; transition: transform .3s ease; }
.magazine-card:hover img { transform: scale(1.025); }
.magazine-card > div { padding: 20px; }
.magazine-card h3 { margin: 10px 0 7px; color: var(--blue); font-size: 20px; line-height: 1.16; }
.magazine-card p { margin: 0; color: var(--muted); font-size: 14px; }
.article-meta { display: block; margin-top: 13px; color: #7b8898; font-size: 11px; }
.magazine-empty { padding: 38px; border-radius: 18px; background: #fff; text-align: center; }
.magazine-empty h3 { color: var(--blue); }
.newsletter-section {
  margin-top: 48px;
  padding: 28px;
  display: grid;
  gap: 22px;
  border-radius: 22px;
  background: var(--beige);
}
.newsletter-section h2 { margin: 0; color: var(--blue); font-size: 28px; }
.newsletter-section p:not(.eyebrow) { margin: 8px 0 0; color: #596a7c; }
.newsletter-section form { display: grid; grid-template-columns: 1fr; gap: 10px; }
.newsletter-section input,
.newsletter-section button { min-height: 50px; border-radius: 12px; font: inherit; }
.newsletter-section input { padding: 0 15px; border: 1px solid #cbd5df; outline: 0; }
.newsletter-section input:focus { border-color: var(--yellow); }
.newsletter-section button { border: 0; background: var(--yellow); color: var(--blue); font-weight: 850; cursor: pointer; }

/* Magazine article */
.article-page { padding: 38px 0 68px; }
.article-header { max-width: 1060px; }
.article-header > .tag { margin-bottom: 14px; }
.article-header h1 { max-width: 950px; }
.article-lead { max-width: 900px; margin: 18px 0 0; color: #536477; font-size: 19px; line-height: 1.55; }
.article-byline { margin-top: 24px; display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.article-byline > div { margin-right: auto; }
.article-byline strong,
.article-byline small { display: block; }
.article-byline strong { color: var(--blue); }
.article-byline small { color: var(--muted); font-size: 12px; }
.article-byline button { min-height: 42px; padding: 0 12px; display: inline-flex; align-items: center; gap: 7px; border: 1px solid #d6dee6; border-radius: 10px; background: #fff; color: var(--blue); font-size: 12px; font-weight: 800; cursor: pointer; }
.article-byline button.is-active { color: var(--yellow); border-color: var(--yellow); }
.article-hero { max-width: 1220px; margin-top: 32px; }
.article-hero img { max-height: 650px; object-fit: cover; border-radius: 24px; }
.article-hero figcaption,
.article-inline-image figcaption { margin-top: 8px; color: #7b8795; font-size: 11px; }
.article-layout { max-width: 1120px; padding-top: 40px; display: grid; gap: 30px; }
.article-content { min-width: 0; }
.article-content p,
.article-content li { color: #3f5268; font-size: 17px; line-height: 1.78; }
.article-intro { color: var(--blue) !important; font-size: 20px !important; font-weight: 650; }
.article-content h2 { margin: 42px 0 14px; color: var(--blue); font-size: 30px; line-height: 1.16; }
.article-callout { margin: 28px 0; padding: 20px; display: grid; grid-template-columns: 35px 1fr; gap: 14px; border-radius: 16px; background: #fff4ce; }
.article-callout > .icon { color: var(--blue); font-size: 27px; }
.article-callout strong { color: var(--blue); }
.article-callout p { margin: 5px 0 0; font-size: 14px; }
.article-checklist { margin: 20px 0; padding: 0; list-style: none; }
.article-checklist li { position: relative; padding: 7px 0 7px 31px; }
.article-checklist li::before { content: '✓'; position: absolute; left: 0; top: 8px; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--blue); font-size: 12px; font-weight: 900; }
.article-inline-image { margin: 32px 0; }
.article-inline-image img { border-radius: 18px; }
.article-content blockquote { margin: 34px 0; padding: 4px 0 4px 23px; border-left: 5px solid var(--yellow); color: var(--blue); font-size: 24px; font-weight: 800; line-height: 1.35; }
.article-sidebar { display: grid; align-content: start; gap: 16px; }
.article-toc,
.article-factbox { padding: 20px; border: 1px solid #e3e8ed; border-radius: 17px; background: #fff; }
.article-toc { display: grid; gap: 9px; }
.article-toc strong { margin-bottom: 4px; color: var(--blue); }
.article-toc a { color: #627286; font-size: 13px; }
.article-factbox dl { margin: 15px 0 19px; }
.article-factbox dl > div { padding: 10px 0; border-bottom: 1px solid #e6eaee; }
.article-factbox dt { color: #7a8796; font-size: 10px; font-weight: 850; text-transform: uppercase; }
.article-factbox dd { margin: 3px 0 0; color: var(--blue); font-size: 14px; font-weight: 750; }
.article-related { padding-top: 54px; }
.magazine-grid-related { grid-template-columns: 1fr; }

/* Legal and contact */
.legal-page,
.contact-page { padding-bottom: 64px; }
.legal-layout { display: grid; gap: 24px; }
.legal-content { padding: 24px; border: 1px solid #e3e8ed; border-radius: 20px; background: #fff; }
.legal-content section + section { margin-top: 31px; padding-top: 27px; border-top: 1px solid #e7ebef; }
.legal-content h2 { margin: 0 0 10px; color: var(--blue); font-size: 23px; }
.legal-content p,
.legal-content address { color: #4d6075; font-style: normal; line-height: 1.7; }
.legal-content a { color: var(--blue); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.legal-sidebar { display: grid; align-content: start; gap: 17px; }
.legal-sidebar > div,
.legal-sidebar nav { padding: 20px; border-radius: 17px; background: #fff; border: 1px solid #e3e8ed; }
.legal-sidebar strong { color: var(--blue); }
.legal-sidebar p { color: var(--muted); font-size: 14px; }
.legal-sidebar nav { display: grid; gap: 9px; }
.legal-sidebar nav a { color: var(--blue); font-weight: 700; }
.contact-options { display: grid; gap: 12px; padding-bottom: 30px; }
.contact-options a { min-height: 86px; padding: 17px; display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 13px; border: 1px solid #e2e7ec; border-radius: 16px; background: #fff; }
.contact-options > a > .icon { color: var(--yellow); font-size: 29px; }
.contact-options strong,
.contact-options small { display: block; }
.contact-options strong { color: var(--blue); }
.contact-options small { margin-top: 3px; color: var(--muted); font-size: 12px; }
.contact-layout { display: grid; gap: 24px; }
.contact-form,
.profile-card,
.entry-form { padding: 24px; border: 1px solid #e3e8ed; border-radius: 20px; background: #fff; }
.form-heading h2 { margin: 0; color: var(--blue); font-size: 28px; }
.form-heading p:not(.eyebrow) { margin: 7px 0 20px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 17px; }
.field { display: grid; gap: 7px; }
.field > span,
.choice-group legend { color: var(--blue); font-size: 13px; font-weight: 800; }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 49px;
  padding: 11px 13px;
  border: 1px solid #ccd6df;
  border-radius: 11px;
  outline: 0;
  background: #fff;
  color: var(--text);
  font: inherit;
}
.field textarea { resize: vertical; line-height: 1.5; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--yellow); }
.field-help { color: #7c8997; font-size: 10px; }
.field-error { display: none; color: #b4233d; font-size: 11px; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #b4233d; }
.field.has-error .field-error,
.check-field.has-error + .field-error { display: block; }
.check-field a { color: var(--blue); text-decoration: underline; }
.form-actions { margin-top: 22px; }
.form-success { margin-top: 22px; padding: 18px; display: grid; grid-template-columns: 31px 1fr; gap: 13px; border-radius: 14px; background: #eaf6e7; color: #285d25; }
.form-success > .icon { font-size: 25px; }
.form-success strong { display: block; }
.form-success p { margin: 4px 0 0; color: #4a6b48; font-size: 13px; }
.contact-sidebar { overflow: hidden; border-radius: 20px; background: var(--blue); color: #fff; }
.contact-sidebar > img { height: 245px; object-fit: cover; }
.contact-sidebar > div { padding: 24px; }
.contact-sidebar h2 { margin: 0; color: #fff; font-size: 27px; }
.contact-sidebar p:not(.eyebrow) { color: rgba(255,255,255,.74); }
.contact-sidebar dl { margin: 22px 0 0; }
.contact-sidebar dl > div { padding: 10px 0; border-top: 1px solid rgba(255,255,255,.15); }
.contact-sidebar dt { color: var(--yellow); font-size: 10px; font-weight: 850; text-transform: uppercase; }
.contact-sidebar dd { margin: 4px 0 0; color: #fff; font-size: 13px; }

/* Location entry */
.entry-page { padding-bottom: 70px; }
.entry-page-hero { max-width: 980px; text-align: center; }
.entry-page-hero .breadcrumb { justify-content: center; }
.entry-page-hero .lead { margin-inline: auto; }
.entry-layout { display: grid; gap: 22px; align-items: start; }
.entry-steps { padding: 21px; border: 1px solid #e3e8ed; border-radius: 18px; background: #fff; }
.entry-progress-label { color: #6c7a8c; font-size: 12px; }
.entry-progress { height: 7px; margin: 10px 0 18px; overflow: hidden; border-radius: 999px; background: #e8edf1; }
.entry-progress span { display: block; width: 25%; height: 100%; border-radius: inherit; background: var(--yellow); transition: width .25s ease; }
.entry-steps ol { margin: 0; padding: 0; display: grid; gap: 8px; list-style: none; }
.entry-steps li { padding: 10px; display: grid; grid-template-columns: 32px 1fr; gap: 11px; align-items: center; border-radius: 12px; color: #758294; }
.entry-steps li > span { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; border: 1px solid #cbd5df; font-size: 12px; font-weight: 850; }
.entry-steps li strong,
.entry-steps li small { display: block; }
.entry-steps li strong { font-size: 13px; }
.entry-steps li small { margin-top: 2px; font-size: 10px; }
.entry-steps li.is-active { background: #edf4fa; color: var(--blue); }
.entry-steps li.is-active > span { border-color: var(--blue); background: var(--blue); color: #fff; }
.entry-steps li.is-complete > span { border-color: var(--yellow); background: var(--yellow); color: var(--blue); }
.review-notice { margin-top: 20px; padding: 15px; display: grid; grid-template-columns: 25px 1fr; gap: 11px; border-radius: 13px; background: var(--surface-warm); }
.review-notice > .icon { color: var(--yellow); font-size: 22px; }
.review-notice strong { color: var(--blue); font-size: 12px; }
.review-notice p { margin: 4px 0 0; color: var(--muted); font-size: 10px; }
.entry-form { padding: 22px; }
.entry-step-heading { margin-bottom: 24px; display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: start; }
.entry-step-heading > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; background: var(--blue); color: #fff; font-size: 13px; font-weight: 900; }
.entry-step-heading h2 { margin: 0; color: var(--blue); font-size: 26px; }
.entry-step-heading p:not(.eyebrow) { margin: 6px 0 0; color: var(--muted); font-size: 13px; }
.entry-map-picker { position: relative; min-height: 220px; overflow: hidden; width: 100%; display: grid; place-items: center; border: 1px solid #ccd6df; border-radius: 14px; background: #eee9da; color: var(--blue); cursor: pointer; }
.entry-map-picker > .icon { position: relative; z-index: 2; color: var(--yellow); font-size: 48px; }
.entry-map-picker strong,
.entry-map-picker small { position: relative; z-index: 2; display: block; }
.entry-map-picker strong { margin-top: -48px; }
.entry-map-picker small { margin-top: -74px; color: #657386; font-size: 10px; }
.choice-group { margin: 0 0 26px; padding: 0; border: 0; }
.choice-group legend { margin-bottom: 12px; }
.upload-field { position: relative; min-height: 230px; overflow: hidden; border: 1px dashed #9fb0c1; border-radius: 15px; background: #f9fbfc; cursor: pointer; }
.upload-field > input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.upload-placeholder { min-height: 230px; padding: 25px; display: grid; place-items: center; align-content: center; gap: 6px; color: var(--blue); text-align: center; }
.upload-placeholder .icon { color: var(--yellow); font-size: 39px; }
.upload-placeholder small { color: var(--muted); font-size: 10px; }
.upload-field > img { height: 260px; object-fit: cover; }
.entry-preview-card { margin-top: 24px; overflow: hidden; display: grid; grid-template-columns: 42% 1fr; border: 1px solid #e2e7ec; border-radius: 16px; background: #fff; }
.entry-preview-card > img { height: 100%; object-fit: cover; }
.entry-preview-card > div { padding: 17px; }
.entry-preview-card h3 { margin: 10px 0 6px; color: var(--blue); font-size: 18px; }
.entry-preview-card p { margin: 0; color: var(--muted); font-size: 12px; }
.entry-actions { margin-top: 25px; display: flex; flex-wrap: wrap; gap: 9px; justify-content: flex-end; }
.entry-actions [data-save-draft] { margin-right: auto; }
.entry-success a { display: inline-block; margin-top: 8px; color: #285d25; font-weight: 800; text-decoration: underline; }

/* Account pages */
.account-page { padding-bottom: 68px; }
.account-hero { margin-top: 28px; padding: 29px; display: grid; gap: 20px; border-radius: 22px; background: var(--blue); color: #fff; }
.account-hero h1 { color: #fff; }
.account-hero p { max-width: 720px; margin: 10px 0 0; color: rgba(255,255,255,.75); }
.account-stats { margin-top: 18px; display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.account-stats a { min-height: 100px; padding: 18px; display: grid; align-content: center; border: 1px solid #e2e7ec; border-radius: 16px; background: #fff; }
.account-stats strong { color: var(--blue); font-size: 27px; }
.account-stats span { color: var(--muted); font-size: 11px; }
.account-grid { padding-top: 40px; display: grid; gap: 24px; }
.account-featured { grid-template-columns: 1fr; }
.account-side { display: grid; align-content: start; gap: 16px; }
.account-side section { padding: 21px; border: 1px solid #e2e7ec; border-radius: 17px; background: #fff; }
.account-side h2 { margin: 0; color: var(--blue); font-size: 22px; }
.account-side p:not(.eyebrow) { color: var(--muted); font-size: 13px; }
.account-side section > a { color: var(--blue); font-weight: 800; }
.account-side nav { display: grid; }
.account-side nav a { padding: 11px 0; border-bottom: 1px solid #e7ebef; color: var(--blue); font-weight: 700; }
.profile-settings { display: grid; gap: 18px; }
.profile-card { }
.profile-settings-head { margin-bottom: 22px; display: flex; align-items: center; gap: 15px; }
.profile-settings-head h2,
.profile-card > h2 { margin: 0; color: var(--blue); font-size: 24px; }
.profile-settings-head p { margin: 4px 0 0; color: var(--muted); font-size: 12px; }
.profile-settings-avatar { width: 62px; height: 62px; flex-basis: 62px; font-size: 17px; }
.profile-choice-grid { margin-top: 15px; }
.range-field { margin-top: 24px; }
.range-field input { padding: 0; accent-color: var(--blue); }
.profile-form-actions { display: flex; justify-content: flex-end; }
.wishlist-section { padding-top: 20px; }
.wishlist-tabs,
.submission-tabs { padding-bottom: 15px; display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.wishlist-tabs::-webkit-scrollbar,
.submission-tabs::-webkit-scrollbar { display: none; }
.wishlist-tabs button span,
.submission-tabs button span { margin-left: 5px; opacity: .72; }
.wishlist-grid { padding-top: 8px; }
.submissions-section { padding-top: 18px; }
.submission-list { display: grid; gap: 13px; }
.submission-list article { padding: 12px; display: grid; grid-template-columns: 82px 1fr; gap: 13px; align-items: center; border: 1px solid #e2e7ec; border-radius: 16px; background: #fff; }
.submission-list article > img { width: 82px; height: 82px; object-fit: cover; border-radius: 12px; }
.submission-list h2 { margin: 6px 0 3px; color: var(--blue); font-size: 16px; }
.submission-list p { margin: 0; color: var(--muted); font-size: 10px; }
.submission-list article > a,
.submission-list article > button { grid-column: 1 / -1; min-height: 39px; display: grid; place-items: center; border: 1px solid #d5dee6; border-radius: 10px; background: #fff; color: var(--blue); font-size: 12px; font-weight: 800; cursor: pointer; }
.status-pill { display: inline-flex; padding: 4px 8px; border-radius: 999px; font-size: 9px; font-weight: 850; text-transform: uppercase; }
.status-published { background: #e6f3df; color: #3a752d; }
.status-review { background: #fff1c3; color: #785800; }
.status-draft { background: #e7edf3; color: #5a697a; }

@media (max-width: 420px) {
  .header-inner { width: calc(100% - 28px); gap: 7px; }
  .brand img { width: 150px; }
  .mobile-header-actions { gap: 6px; }
  .mobile-avatar-button { width: 34px; height: 34px; }
  .icon-button { padding: 5px; }
  .icon-button .icon { font-size: 25px; }
  .entry-preview-card { grid-template-columns: 36% 1fr; }
  .entry-preview-card > div { padding: 13px; }
  .entry-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .entry-actions [data-save-draft] { margin-right: 0; }
  .entry-actions .primary-button:last-child { grid-column: 1 / -1; }
}

@media (min-width: 700px) {
  .contact-options { grid-template-columns: repeat(3,1fr); }
  .form-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .field-full { grid-column: 1 / -1; }
  .newsletter-section { grid-template-columns: 1fr minmax(360px,.8fr); align-items: center; }
  .newsletter-section form { grid-template-columns: 1fr auto; }
  .magazine-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .event-index-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .event-index-grid-small { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .account-stats { grid-template-columns: repeat(4,1fr); }
  .submission-list article { grid-template-columns: 100px 1fr auto; padding: 14px; }
  .submission-list article > img { width: 100px; height: 88px; }
  .submission-list article > a,
  .submission-list article > button { grid-column: auto; min-width: 130px; padding: 0 13px; }
  .choice-grid-wide { grid-template-columns: repeat(3,minmax(0,1fr)); }
}

@media (min-width: 980px) {
  .legal-layout { grid-template-columns: minmax(0,1fr) 310px; align-items: start; }
  .legal-sidebar { position: sticky; top: 112px; }
  .contact-layout { grid-template-columns: minmax(0,1.15fr) minmax(340px,.65fr); align-items: start; }
  .contact-sidebar { position: sticky; top: 112px; }
  .entry-layout { grid-template-columns: 285px minmax(0,1fr); }
  .entry-steps { position: sticky; top: 112px; }
  .article-layout { grid-template-columns: minmax(0,1fr) 270px; }
  .article-sidebar { position: sticky; top: 112px; }
  .account-grid { grid-template-columns: minmax(0,1fr) 300px; }
  .account-side { position: sticky; top: 112px; }
}

@media (min-width: 1180px) {
  .mobile-avatar-button { display: none; }
  .profile-drawer { width: min(420px, 34vw); }
  .listing-hero {
    width: min(calc(100% - 56px), var(--page-max));
    margin-inline: auto;
    padding: 58px 0 48px;
    grid-template-columns: minmax(0,.92fr) minmax(520px,1.08fr);
    align-items: center;
  }
  .listing-hero h1 { font-size: 52px; }
  .listing-hero-copy .lead { font-size: 18px; }
  .featured-event-hero { min-height: 500px; }
  .featured-event-hero > div { left: 30px; right: 30px; bottom: 30px; }
  .featured-event-hero h2 { font-size: 37px; }
  .event-list-section { padding-top: 26px; }
  .event-index-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
  .event-index-card { display: block; min-height: 0; }
  .event-index-image { height: 210px; }
  .event-index-body { padding: 22px; }
  .event-index-body h3 { font-size: 22px; }
  .event-index-body > p { font-size: 14px; }
  .event-index-meta { font-size: 12px; }
  .event-submit-cta { padding: 37px 42px; grid-template-columns: 1fr auto; align-items: center; }
  .event-submit-cta h2 { font-size: 36px; }

  .event-detail-summary { margin-top: -38px; padding: 24px 28px; grid-template-columns: repeat(3,minmax(0,1fr)) auto; align-items: center; }
  .event-detail-layout { padding-top: 58px; grid-template-columns: minmax(0,1fr) 340px; align-items: start; }
  .event-sidebar { position: sticky; top: 112px; }
  .event-location-section { grid-template-columns: .75fr 1.25fr; padding: 58px 0; }
  .event-index-grid-small { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .event-index-grid-small .event-index-card { display: grid; grid-template-columns: 40% 1fr; }
  .event-index-grid-small .event-index-image { height: auto; }

  .magazine-page { padding-top: 46px; }
  .magazine-feature { grid-template-columns: minmax(0,1.2fr) minmax(420px,.8fr); align-items: end; }
  .magazine-feature-image { grid-column: 1 / -1; grid-row: 1; height: 650px; }
  .magazine-feature-copy { grid-column: 1; grid-row: 1; align-self: end; margin: 0 0 45px 45px; max-width: 660px; padding: 38px; }
  .magazine-feature-copy h1 { font-size: 54px; }
  .magazine-feature-story { grid-column: 2; grid-row: 1; align-self: end; margin: 0 45px 45px 20px; padding: 30px; }
  .magazine-feature-story h2 { font-size: 29px; }
  .magazine-categories { margin-top: 45px; justify-content: center; }
  .magazine-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
  .magazine-card-large { grid-column: span 2; display: grid; grid-template-columns: 52% 1fr; }
  .magazine-card-large > a { height: auto; min-height: 330px; }
  .magazine-card-large > div { align-self: center; padding: 34px; }
  .magazine-card h3 { font-size: 23px; }
  .newsletter-section { padding: 38px 42px; }
  .newsletter-section h2 { font-size: 35px; }

  .article-header { padding-top: 36px; }
  .article-header h1 { font-size: 57px; }
  .article-lead { font-size: 21px; }
  .article-hero { margin-top: 42px; }
  .magazine-grid-related { grid-template-columns: repeat(2,minmax(0,1fr)); }

  .simple-page-hero { padding-top: 58px; padding-bottom: 45px; }
  .simple-page-hero h1 { font-size: 50px; }
  .legal-content { padding: 38px; }
  .contact-form { padding: 36px; }
  .entry-form { padding: 34px; }
  .entry-step-heading h2 { font-size: 31px; }
  .choice-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .choice-grid-wide { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .account-hero { margin-top: 40px; padding: 42px; grid-template-columns: 1fr auto; align-items: center; }
  .account-hero h1 { font-size: 48px; }
  .account-stats { margin-top: 22px; gap: 16px; }
  .account-stats a { min-height: 124px; padding: 22px; }
  .account-stats strong { font-size: 35px; }
  .account-stats span { font-size: 13px; }
  .wishlist-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}


/* ========================================================================
   Version 1.3 – Schriften, schattenfreies UI und einheitliche Suche
   ======================================================================== */
:root {
  --font-ui: "Jost", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display: "OFN Heading", "Jost", ui-sans-serif, system-ui, sans-serif;
  --shadow: none;
  --shadow-soft: none;
}

body.ofn-typography,
body.ofn-typography button,
body.ofn-typography input,
body.ofn-typography select,
body.ofn-typography textarea {
  font-family: var(--font-ui);
}
body.ofn-typography em,
body.ofn-typography i,
body.ofn-typography cite {
  font-family: var(--font-ui);
  font-style: italic;
}
body.ofn-typography h1,
body.ofn-typography h2 {
  font-family: var(--font-display) !important;
  font-style: normal;
  font-weight: 400 !important;
  font-synthesis: none;
  letter-spacing: 0 !important;
}

/* Die Oberfläche arbeitet bewusst nur mit Flächen und Konturen. */
body.ofn-typography *,
body.ofn-typography *::before,
body.ofn-typography *::after {
  box-shadow: none !important;
}
body.ofn-typography :focus-visible {
  outline: 3px solid rgba(250, 185, 0, .52);
  outline-offset: 3px;
}
body.ofn-typography .field input:focus,
body.ofn-typography .field select:focus,
body.ofn-typography .field textarea:focus,
body.ofn-typography .newsletter-section input:focus {
  border-color: var(--yellow);
  outline: 1px solid var(--yellow);
  outline-offset: 0;
}

/* ========================================================================
   Version 1.3.1 – reparierte Entdecken-Panels und aktive Bedienelemente
   ======================================================================== */
.discover-controls button {
  position: relative;
}

.control-count {
  min-width: 21px;
  height: 21px;
  padding: 0 6px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}
.control-count[hidden] { display: none !important; }



/* ========================================================================
   Version 1.4 – Detailseiten, Bewertungen, Kommentare und Medien-Lightbox
   ======================================================================== */

/* The planning card stays in its grid cell and no longer overlaps reviews. */
@media (min-width: 1180px) {
  .detail-stack > :nth-child(3),
  .detail-stack > .planning-card {
    position: static;
    top: auto;
    align-self: start;
  }
}

/* Clickable media */
[data-lightbox-item] { cursor: zoom-in; }
img[data-lightbox-item]:focus-visible { outline: 3px solid rgba(250,185,0,.65); outline-offset: -4px; }
.gallery-image { pointer-events: none; }
.gallery-image.active { pointer-events: auto; }
.article-video-card { margin: 30px 0; }
.article-video-card > button {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #071a2e;
  cursor: pointer;
}
.article-video-card img { height: min(52vw, 430px); object-fit: cover; opacity: .76; }
.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  transform: translate(-50%,-50%);
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(0,45,94,.82);
  color: #fff;
  font-size: 24px;
}
.video-label { position: absolute; left: 18px; bottom: 16px; color: #fff; font-weight: 750; }

body.lightbox-open,
body.share-open { overflow: hidden; }
.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 320;
  padding: 18px;
  display: grid;
  place-items: center;
  color: var(--blue);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility 0s linear .22s;
}
.media-lightbox.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
.media-lightbox[hidden] { display: none !important; }
.media-lightbox-backdrop { position: absolute; inset: 0; background: rgba(0,31,66,.92); backdrop-filter: blur(5px); }
.media-lightbox-dialog {
  position: relative;
  width: min(1440px,100%);
  height: min(920px,calc(100dvh - 36px));
  display: grid;
  grid-template-rows: auto minmax(0,1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 22px;
  background: var(--bg);
  transform: translateY(12px) scale(.985);
  transition: transform .24s cubic-bezier(.22,.78,.22,1);
}
.media-lightbox.is-open .media-lightbox-dialog { transform: translateY(0) scale(1); }
.media-lightbox-toolbar {
  min-width: 0;
  min-height: 68px;
  padding: 10px 14px 10px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.media-lightbox-brand { min-width: 0; display: grid; gap: 1px; }
.media-lightbox-brand .eyebrow { margin: 0; color: #9a7100; font-size: 9px; }
.media-lightbox-brand strong { overflow: hidden; color: var(--blue); font-size: 15px; text-overflow: ellipsis; white-space: nowrap; }
.media-lightbox-help { margin-left: auto; color: var(--muted); font-size: 11px; }
.media-lightbox-actions { display: flex; align-items: center; gap: 7px; }
.media-lightbox-button {
  width: 42px;
  height: 42px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid #d6dee6;
  border-radius: 999px;
  background: var(--bg);
  color: var(--blue);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}
.media-lightbox-button:hover { border-color: var(--yellow); background: #fff7d7; }
.media-lightbox-button:active { transform: scale(.95); }
.media-lightbox-button:disabled { opacity: .34; cursor: default; transform: none; }
.media-lightbox-button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.media-lightbox-button .icon-shrink { fill: currentColor; stroke: none; }
.media-lightbox-close { border-color: #d6dee6; background: #fff; color: var(--blue); }
.media-lightbox-close:hover { border-color: var(--yellow); background: #fff9e8; color: var(--blue); }
.media-lightbox-stage { position: relative; min-height: 0; overflow: hidden; background: #001f43; touch-action: none; user-select: none; }
.media-lightbox-viewport { position: absolute; inset: 0; overflow: hidden; }
.media-lightbox-slide { position: absolute; inset: 0; display: grid; place-items: center; will-change: transform; }
.media-lightbox-slide[hidden] { display: none !important; }
.media-lightbox-image {
  max-width: calc(100% - 44px);
  max-height: calc(100% - 44px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  transform-origin: center;
  will-change: transform;
  cursor: zoom-in;
  -webkit-user-drag: none;
}
.media-lightbox-stage.is-zoomed .media-lightbox-image { cursor: grab; }
.media-lightbox-image.is-dragging { cursor: grabbing; }
.media-lightbox-video { width: min(1180px,calc(100% - 52px)); max-height: calc(100% - 52px); border-radius: 12px; background: #000; }
.media-lightbox-nav {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 52px;
  height: 52px;
  padding: 0;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  background: var(--bg);
  color: var(--blue);
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}
.media-lightbox-nav:hover { background: var(--yellow); transform: translateY(-50%); }
.media-lightbox-nav svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 2.25; }
.media-lightbox-prev { left: 18px; }
.media-lightbox-next { right: 18px; }
.media-lightbox-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 6;
  width: 38px;
  height: 38px;
  margin: -19px 0 0 -19px;
  border: 3px solid rgba(255,255,255,.25);
  border-top-color: var(--yellow);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  animation: ofn-lb-spin .8s linear infinite;
}
.media-lightbox-stage.is-loading .media-lightbox-loader { opacity: 1; }
@keyframes ofn-lb-spin { to { transform: rotate(360deg); } }
.media-lightbox-footer {
  min-width: 0;
  padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: minmax(220px,.75fr) minmax(0,1.25fr);
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--line);
  background: #fff;
}
.media-lightbox-caption-block { min-width: 0; display: grid; gap: 3px; }
.media-lightbox-counter { color: #9a7100; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.media-lightbox-caption { overflow: hidden; color: var(--blue); font-size: 13px; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.media-lightbox-thumbs { min-width: 0; display: flex; justify-content: flex-end; gap: 8px; overflow-x: auto; scrollbar-width: thin; }
.media-lightbox-thumb {
  position: relative;
  width: 62px;
  height: 46px;
  flex: 0 0 62px;
  padding: 2px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 9px;
  background: var(--bg);
  cursor: pointer;
}
.media-lightbox-thumb img { width: 100%; height: 100%; border-radius: 6px; object-fit: cover; opacity: .72; }
.media-lightbox-thumb.is-active { border-color: var(--yellow); }
.media-lightbox-thumb.is-active img { opacity: 1; }
.media-lightbox-video-badge { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 15px; background: rgba(0,45,94,.34); }
.media-lightbox.is-video .media-lightbox-zoom-control { display: none; }
.media-lightbox:fullscreen { padding: 0; }
.media-lightbox:fullscreen .media-lightbox-dialog { width: 100%; height: 100%; border: 0; border-radius: 0; }


/* Comments */
.comments-section { padding-top: 52px; padding-bottom: 52px; }
.comments-heading { margin-bottom: 24px; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.comments-heading h2 { margin: 0; font-size: 34px; }
.comments-heading > div > p:last-child { margin: 8px 0 0; color: var(--muted); }
.comment-count { min-width: 30px; height: 30px; padding: 0 8px; display: inline-grid; place-items: center; border-radius: 999px; background: var(--beige); font-family: var(--font-ui); font-size: 13px; vertical-align: middle; }
.comments-layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(330px,.62fr); gap: 24px; align-items: start; }
.comment-list { display: grid; gap: 12px; }
.comment-card { padding: 20px; display: grid; grid-template-columns: 46px minmax(0,1fr); gap: 14px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.comment-avatar { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--beige); color: var(--blue); font-weight: 850; }
.comment-card header { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.comment-card header strong { color: var(--blue); }
.comment-card time { color: var(--muted); font-size: 11px; }
.comment-card p { margin: 8px 0 10px; color: #506176; }
.comment-card button { padding: 0; border: 0; background: transparent; color: var(--blue); font-size: 12px; font-weight: 750; cursor: pointer; }
.comment-form { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface-warm); }
.comment-form h2 { margin: 0; font-size: 27px; }
.comment-form > p { margin: 7px 0 18px; color: var(--muted); font-size: 13px; }
.comment-form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.comment-form .field { margin-bottom: 13px; }
.comment-form .primary-button { width: 100%; }

/* Reviews page */
.reviews-page { padding: 36px 0 70px; background: var(--surface-warm); }
.reviews-page-hero { display: grid; gap: 20px; }
.reviews-place-card { min-height: 250px; display: grid; grid-template-columns: minmax(260px,.75fr) minmax(0,1.25fr); overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.reviews-place-card > img { height: 100%; object-fit: cover; }
.reviews-place-card > div { padding: 30px; align-self: center; }
.reviews-place-card h1 { margin: 12px 0 9px; font-size: clamp(34px,4.1vw,50px); line-height: 1.08; }
.reviews-place-card p { display: flex; align-items: center; gap: 7px; color: var(--muted); }
.reviews-place-card a { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 750; }
.reviews-place-card a .icon { font-size: 12px; }
.reviews-overview { padding: 24px 28px; display: grid; grid-template-columns: 160px minmax(0,1fr) auto; gap: 30px; align-items: center; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.reviews-score strong { display: block; color: var(--blue); font-family: var(--font-display); font-size: 56px; line-height: 1; }
.reviews-score .stars { display: block; margin: 8px 0 2px; font-size: 22px; }
.reviews-score small { color: var(--muted); }
.rating-bars { display: grid; gap: 7px; }
.rating-bars > div { display: grid; grid-template-columns: 64px minmax(80px,1fr) 34px; gap: 9px; align-items: center; font-size: 12px; }
.rating-bars i { height: 8px; overflow: hidden; border-radius: 99px; background: #edf0f2; }
.rating-bars b { display: block; height: 100%; border-radius: inherit; background: var(--yellow); }
.rating-bars strong { text-align: right; color: var(--muted); }
.reviews-toolbar { padding-top: 34px; padding-bottom: 20px; display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.reviews-toolbar h2 { margin: 0; font-size: 34px; }
.reviews-toolbar p { margin: 6px 0 0; color: var(--muted); }
.reviews-toolbar-actions { display: flex; align-items: end; gap: 14px; }
.review-filter-buttons { display: flex; flex-wrap: wrap; gap: 7px; }
.review-sort { display: grid; gap: 4px; color: var(--muted); font-size: 11px; }
.review-sort select { min-height: 42px; padding: 0 34px 0 12px; border: 1px solid #cfd8e1; border-radius: 10px; background: #fff; color: var(--blue); }
.reviews-page-layout { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 24px; align-items: start; }
.full-review-list { display: grid; gap: 12px; }
.full-review-card { padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.full-review-card header { display: flex; gap: 12px; align-items: center; }
.full-review-card header > div { display: grid; grid-template-columns: 1fr auto; gap: 2px 12px; min-width: 0; flex: 1; }
.full-review-card header strong { color: var(--blue); }
.full-review-card header .stars { justify-self: end; font-size: 18px; line-height: 1; letter-spacing: .075em; }
.full-review-card header small { grid-column: 1 / -1; color: var(--muted); }
.full-review-card h3 { margin: 15px 0 7px; color: var(--blue); font-size: 19px; }
.full-review-card > p { margin: 0; color: #506176; }
.full-review-card footer { margin-top: 15px; padding-top: 12px; display: flex; align-items: center; gap: 16px; border-top: 1px solid #e8ecef; }
.review-report-button {
  min-height: 42px;
  padding: 0 4px;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-weight: 750;
  cursor: pointer;
}
.review-report-button:hover { color: #8d6800; text-decoration: underline; }
.review-compose { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.review-compose h2 { margin: 0; font-size: 29px; }
.review-compose > p { margin: 7px 0 20px; color: var(--muted); }
.review-compose .field { margin-bottom: 13px; }
.review-stars { margin: 0 0 17px; padding: 0; border: 0; }
.review-stars legend { margin-bottom: 8px; color: var(--blue); font-weight: 750; }
.review-stars > div { display: flex; flex-direction: row-reverse; justify-content: flex-end; }
.review-stars label { cursor: pointer; }
.review-stars input { position: absolute; opacity: 0; }
.review-stars span { padding-right: 4px; color: #d8dde2; font-size: 31px; line-height: 1; }
.review-stars label:hover span,
.review-stars label:hover ~ label span,
.review-stars input:checked ~ span,
.review-stars label:has(input:checked) span,
.review-stars label:has(input:checked) ~ label span { color: var(--yellow); }
.reviews-empty { padding: 40px 24px; border: 1px dashed #cfd8e1; border-radius: 16px; text-align: center; }

@media (max-width: 900px) {
  .comments-layout,
  .reviews-page-layout { grid-template-columns: 1fr; }
  .reviews-overview { grid-template-columns: 130px 1fr; }
  .reviews-overview .primary-button { grid-column: 1 / -1; }
  .reviews-toolbar { align-items: stretch; flex-direction: column; }
  .reviews-toolbar-actions { align-items: stretch; flex-direction: column; }
}

@media (max-width: 700px) {
  .article-video-card img { height: 220px; }
  .comments-section { padding-top: 36px; padding-bottom: 36px; }
  .comments-heading { align-items: stretch; flex-direction: column; }
  .comments-heading h2 { font-size: 29px; }
  .comment-form-grid { grid-template-columns: 1fr; }
  .comment-form { padding: 19px; }
  .reviews-page { padding-top: 20px; }
  .reviews-place-card { display: block; }
  .reviews-place-card > img { height: 210px; }
  .reviews-place-card > div { padding: 20px; }
  .reviews-place-card h1 { font-size: 32px; }
  .reviews-overview { padding: 20px; grid-template-columns: 1fr; gap: 20px; }
  .reviews-score { display: grid; grid-template-columns: auto 1fr; gap: 2px 14px; align-items: center; }
  .reviews-score strong { grid-row: 1 / span 2; font-size: 52px; }
  .reviews-score .stars { margin: 0; }
  .reviews-toolbar h2 { font-size: 29px; }
  .review-filter-buttons { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
  .review-filter-buttons button { white-space: nowrap; }
  .full-review-card { padding: 18px; }
  .full-review-card header .stars,
  .review-head .stars { font-size: 17px; }
  .review-compose { padding: 20px; }
}

/* Typografiepräzisierung: Nur H1 und H2 verwenden die Display-Schrift. */
body.ofn-typography h3,
body.ofn-typography h4,
body.ofn-typography h5,
body.ofn-typography h6,
body.ofn-typography .accordion-head,
body.ofn-typography .event-card time strong,
body.ofn-typography .rating-summary > strong,
body.ofn-typography .reviews-score strong {
  font-family: var(--font-ui) !important;
}


/* ========================================================================
   Version 1.5 – professionelle Lightbox, Auswahl-Pills, Teilen und Hilfreich
   ======================================================================== */

/* Share modal */
.share-modal {
  position: fixed;
  inset: 0;
  z-index: 310;
  padding: 20px;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility 0s linear .22s;
}
.share-modal.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
.share-modal[hidden] { display: none !important; }
.share-modal-backdrop { position: absolute; inset: 0; background: rgba(0,31,66,.78); backdrop-filter: blur(4px); }
.share-dialog {
  position: relative;
  width: min(620px,100%);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--bg);
  transform: translateY(12px) scale(.985);
  transition: transform .24s cubic-bezier(.22,.78,.22,1);
}
.share-modal.is-open .share-dialog { transform: translateY(0) scale(1); }
.share-dialog-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.share-dialog-head .eyebrow { margin: 0 0 4px; }
.share-dialog-head h2 { margin: 0; font-size: 30px; }
.share-close { position: static; flex: 0 0 auto; }
.share-preview {
  margin-top: 18px;
  padding: 14px;
  display: grid;
  grid-template-columns: 42px minmax(0,1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid #e0d7cf;
  border-radius: 14px;
  background: var(--beige);
}
.share-preview-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--blue); }
.share-preview-icon .icon { font-size: 18px; }
.share-preview strong,
.share-preview small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.share-preview strong { color: var(--blue); }
.share-preview small { margin-top: 3px; color: var(--muted); font-size: 11px; }
.share-network-grid { margin-top: 18px; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; }
.share-network {
  min-height: 96px;
  padding: 12px 8px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px solid #d6dee6;
  border-radius: 14px;
  background: #fff;
  color: var(--blue);
  text-align: center;
  text-decoration: none;
  transition: border-color .18s ease, background .18s ease;
}
.share-network:hover { border-color: var(--yellow); background: #fff9e8; }
.share-network > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: #fff; }
.share-network .icon { width: 19px; height: 19px; fill: currentColor; }
.share-network strong { font-size: 12px; }
.share-facebook > span { background: #1877f2; }
.share-x > span { background: #111; }
.share-pocket > span { background: #ef4056; }
.share-whatsapp > span { background: #25d366; }
.share-copy-block { margin-top: 18px; }
.share-copy-block > label { display: block; margin-bottom: 7px; color: var(--blue); font-size: 12px; font-weight: 750; }
.share-copy-row { display: grid; grid-template-columns: minmax(0,1fr) auto; border: 1px solid #cfd8e1; border-radius: 13px; overflow: hidden; background: #fff; }
.share-copy-row input { min-width: 0; min-height: 48px; padding: 0 13px; border: 0; background: transparent; color: var(--muted); }
.share-copy-row button {
  min-height: 48px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-left: 1px solid #cfd8e1;
  background: var(--yellow);
  color: var(--blue);
  font-weight: 800;
  cursor: pointer;
}
.share-copy-row button.is-copied { background: var(--blue); color: #fff; }
.share-copy-row .icon { font-size: 16px; }
.share-copy-block > small { min-height: 18px; margin-top: 5px; display: block; color: #476459; font-size: 11px; }

@media (max-width: 700px) {
  .media-lightbox { padding: 0; }
  .media-lightbox-dialog { width: 100%; height: 100dvh; border: 0; border-radius: 0; }
  .media-lightbox-toolbar { min-height: 60px; padding: 8px 9px 8px 14px; gap: 8px; }
  .media-lightbox-brand strong { font-size: 13px; }
  .media-lightbox-help { display: none; }
  .media-lightbox-actions { margin-left: auto; gap: 4px; }
  .media-lightbox-button { width: 38px; height: 38px; }
  .media-lightbox-image { max-width: calc(100% - 18px); max-height: calc(100% - 18px); border-radius: 8px; }
  .media-lightbox-video { width: calc(100% - 18px); max-height: calc(100% - 18px); border-radius: 8px; }
  .media-lightbox-nav { width: 44px; height: 44px; opacity: .92; }
  .media-lightbox-prev { left: 7px; }
  .media-lightbox-next { right: 7px; }
  .media-lightbox-footer { padding: 9px 12px calc(9px + env(safe-area-inset-bottom)); grid-template-columns: 1fr; gap: 8px; }
  .media-lightbox-caption { font-size: 12px; }
  .media-lightbox-thumbs { justify-content: flex-start; }
  .media-lightbox-thumb { width: 54px; height: 40px; flex-basis: 54px; }
  .share-modal { padding: 0; align-items: end; }
  .share-dialog { width: 100%; padding: 22px 18px calc(20px + env(safe-area-inset-bottom)); border-width: 1px 0 0; border-radius: 20px 20px 0 0; transform: translateY(100%); }
  .share-modal.is-open .share-dialog { transform: translateY(0); }
  .share-dialog-head h2 { font-size: 28px; }
  .share-network-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .share-network { min-height: 82px; }
  .share-copy-row { grid-template-columns: 1fr; }
  .share-copy-row button { justify-content: center; border-top: 1px solid #cfd8e1; border-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .media-lightbox,
  .media-lightbox-dialog,
  .share-modal,
  .share-dialog,
  .helpful-button { transition: none !important; }
}
