/*
 * Deichagenten – zentrale Gestaltung
 * Firmenfarben: Petrol #2E5863, Bronze #A38168
 */

:root {
  --petrol: #2e5863;
  --petrol-dark: #203f47;
  --petrol-soft: rgba(46, 88, 99, 0.10);
  --bronze: #a38168;
  --bronze-soft: rgba(163, 129, 104, 0.14);
  --cream: #fffaf3;
  --sand: #f4eadb;
  --white: #ffffff;
  --ink: #1f2f33;
  --muted: #607174;
  --line: #dfd1bd;
  --shadow: 0 18px 42px rgba(46, 88, 99, 0.12);
  --shadow-soft: 0 12px 30px rgba(46, 88, 99, 0.08);
  --radius: 24px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: var(--petrol);
  font-weight: 700;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

h1,
h2,
h3 {
  color: var(--petrol-dark);
  line-height: 1.15;
}

p:first-child {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

/* Barrierefreiheit */
.skip {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip:focus {
  left: 20px;
  top: 20px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

/* Header und Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 116px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 4px solid var(--petrol);
  box-shadow: 0 8px 24px rgba(46, 88, 99, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--content-width);
  min-height: 116px;
  margin: 0 auto;
  padding: 4px 22px;
}

.brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  min-width: 146px;
  text-decoration: none;
}

.brand:hover,
.brand:focus-visible {
  text-decoration: none;
}

.brand img {
  width: auto;
  height: 108px;
  max-height: 108px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  color: var(--petrol);
  font-size: 1.06rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  color: var(--bronze);
}

.nav-cta {
  padding: 9px 16px;
  border: 2px solid var(--petrol);
  border-radius: 999px;
  background: var(--white);
  color: var(--petrol);
  box-shadow: 0 6px 14px rgba(46, 88, 99, 0.10);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.nav-cta[aria-current="page"] {
  background: var(--petrol);
  color: var(--white);
  text-decoration: none;
}

.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  color: var(--petrol);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

/* Allgemeine Layouts */
.hero,
.section,
.split,
.breadcrumb {
  max-width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 42px;
  align-items: center;
  padding: 72px 22px 42px;
  background:
    radial-gradient(circle at top right, var(--bronze-soft), transparent 34%),
    linear-gradient(135deg, var(--petrol-soft), var(--white) 58%);
}

.hero-single {
  grid-template-columns: minmax(0, 1fr);
}

.hero-single .hero-content {
  max-width: 820px;
}

.hero h1 {
  margin: 0 0 22px;
  color: var(--petrol-dark);
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 720px;
  color: #385153;
  font-size: 1.25rem;
}

.hero-visual,
.hero-card,
.phone-card,
.content-card,
.legal-card,
.notice,
.filter-note,
.access-form,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-visual {
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.hero-card {
  display: grid;
  min-height: 260px;
  padding: 34px;
  place-content: center;
  background: linear-gradient(135deg, var(--white), #f6ead6);
}

.hero-card strong {
  color: var(--petrol);
  font-size: 2rem;
}

.section,
.split {
  padding: 58px 22px;
}

.section-head {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-head h1,
.section h2,
.split h2 {
  margin: 0 0 16px;
  color: var(--petrol-dark);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-head h1 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--bronze);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.soft {
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(244, 234, 219, 0.72), rgba(244, 234, 219, 0.24));
}

.split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 42px;
  align-items: center;
}

.breadcrumb {
  padding: 18px 22px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.btn:hover,
.btn:focus-visible {
  text-decoration: none;
}

.btn-primary {
  border-color: var(--petrol);
  background: var(--petrol);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  border-color: var(--bronze);
  background: var(--bronze);
  color: var(--white);
}

.btn-secondary {
  border-color: var(--bronze);
  background: transparent;
  color: var(--petrol);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--bronze-soft);
  color: var(--petrol);
}

.cta-row,
.about-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

/* Karten und Raster */
.card-grid,
.info-grid,
.comparison,
.booking-steps,
.tour-facts {
  display: grid;
  gap: 22px;
  align-items: stretch;
}

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.three,
.info-grid,
.comparison {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid > .card,
.card-grid > .tour-card,
.info-grid > article,
.comparison > div,
.booking-steps > div {
  height: 100%;
}

.card,
.tour-card,
.info-grid article,
.comparison div,
.booking-steps div {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.card {
  border-top: 4px solid transparent;
}

.card:hover {
  border-top-color: var(--bronze);
}

.card h2,
.card h3,
.tour-card h2 {
  margin-top: 0;
  color: var(--petrol-dark);
  line-height: 1.15;
}

.card > a:last-child,
.tour-card > a:last-child {
  align-self: flex-start;
  margin-top: auto;
}

.card.accent {
  border-top-color: var(--petrol);
  background: linear-gradient(135deg, var(--petrol-soft), var(--bronze-soft));
}

.badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 5px 10px;
  border: 1px solid rgba(163, 129, 104, 0.35);
  border-radius: 999px;
  background: var(--bronze-soft);
  color: var(--petrol);
  font-size: 0.78rem;
  font-weight: 900;
}

.badge.muted {
  border-color: rgba(46, 88, 99, 0.18);
  background: rgba(46, 88, 99, 0.08);
}

.muted-card {
  opacity: 0.92;
}

/* Touren und Informationen */
.filter-note,
.notice {
  margin-bottom: 24px;
  padding: 18px 22px;
}

.tour-card dl {
  display: grid;
  gap: 8px;
  margin: 20px 0;
}

.tour-card dl div,
.tour-facts div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.tour-card dt,
.tour-facts span {
  color: var(--muted);
  font-weight: 700;
}

.tour-facts {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  margin-bottom: 24px;
}

.tour-facts div {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.tour-facts strong {
  display: block;
  color: var(--petrol);
  font-size: 1.1rem;
}

.content-card,
.legal-card {
  padding: 30px;
}

.checklist {
  padding-left: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  margin: 12px 0;
  padding-left: 30px;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--bronze);
  font-weight: 900;
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.image-stack img {
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.booking-steps {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  margin-bottom: 24px;
}

.booking-steps span {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--petrol);
  color: var(--white);
  font-weight: 900;
  place-items: center;
}


/* Produktseite: Die Kollmeraner Schmuggler */
.tour-product-intro {
  padding-bottom: 30px;
}

.tour-product-heading {
  max-width: 900px;
}

.tour-product-heading h1 {
  margin: 0;
  color: var(--petrol-dark);
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.tour-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.tour-title-row h1 {
  min-width: 0;
}

.tour-title-cta {
  flex: 0 0 auto;
  white-space: nowrap;
}

.tour-product-header {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tour-story-card {
  max-width: 900px;
  margin: 28px auto 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--bronze);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  font-size: 1.08rem;
}

.tour-story-card p:first-child {
  margin-top: 0;
  color: var(--petrol-dark);
  font-size: 1.25rem;
}

.tour-story-card p:last-child {
  margin-bottom: 0;
}

.tour-story-question {
  color: var(--petrol);
  font-size: 1.2rem;
  font-weight: 900;
}

.character-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.character-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.character-card a {
  display: block;
}

.character-card img {
  width: 100%;
  aspect-ratio: 842 / 1264;
  object-fit: cover;
  transition: transform 180ms ease;
}

.character-card a:hover img,
.character-card a:focus-visible img {
  transform: scale(1.015);
}

.character-card figcaption {
  padding: 12px 14px 14px;
  color: var(--petrol-dark);
  font-weight: 900;
  text-align: center;
}

.tour-hint-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.tour-hint-card {
  height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--bronze);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.tour-hint-card h3 {
  margin: 0 0 10px;
  color: var(--petrol-dark);
  line-height: 1.2;
}

.tour-hint-card p {
  margin-bottom: 0;
}

/* Erlebnisstile und Tourenprofile */
.tour-style-title {
  margin: 0 0 10px;
  color: var(--bronze);
  font-size: 1.08rem;
  font-weight: 900;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.experience-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--petrol);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.experience-card-family,
.tour-choice-family {
  border-top-color: var(--bronze);
}

.experience-card h3,
.tour-experience-panel h3 {
  margin: 0 0 12px;
  color: var(--petrol-dark);
  font-size: 1.45rem;
}

.experience-points {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.experience-points li {
  position: relative;
  padding-left: 26px;
}

.experience-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--bronze);
  font-weight: 900;
}

.experience-points.compact {
  margin-top: 12px;
}

.experience-profile {
  margin: 4px 0 24px;
  padding: 20px;
  border: 1px solid rgba(46, 88, 99, 0.14);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--petrol-soft), rgba(255, 255, 255, 0.86));
}

.experience-profile h3 {
  margin: 0 0 14px;
  font-size: 1.1rem;
}

.profile-item + .profile-item {
  margin-top: 11px;
}

.profile-label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 5px;
  font-size: 0.92rem;
}

.profile-label span {
  color: var(--muted);
  font-weight: 700;
}

.profile-label strong {
  color: var(--petrol);
  font-size: 0.9rem;
}

.profile-track {
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: rgba(46, 88, 99, 0.12);
}

.profile-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--petrol), var(--bronze));
}

.profile-fill.level-1 { width: 20%; }
.profile-fill.level-2 { width: 40%; }
.profile-fill.level-3 { width: 60%; }
.profile-fill.level-4 { width: 80%; }
.profile-fill.level-5 { width: 100%; }

.experience-card > .btn {
  align-self: flex-start;
  margin-top: auto;
}

.tour-choice {
  border-top-width: 5px;
  border-top-color: var(--petrol);
}

.tour-choice > .btn {
  align-self: flex-start;
  margin-top: auto;
}

.tour-experience-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: start;
  margin: 28px 0 34px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--bronze-soft), var(--white) 68%);
}

.tour-experience-panel .experience-profile {
  margin: 0;
}

/* FAQ und Formulare */
.faq {
  display: grid;
  gap: 14px;
}

.faq details {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.faq summary {
  color: var(--petrol);
  font-weight: 900;
  cursor: pointer;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
}

.contact-form,
.access-form {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.contact-form label,
.access-form label {
  display: grid;
  gap: 7px;
  color: var(--petrol-dark);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffaf6;
}

.form-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Smartphone-Abbildung */
.phone-card {
  overflow: hidden;
  padding: 16px;
}

.phone-card img {
  max-height: 560px;
  margin: auto;
  border-radius: 18px;
}

/* Marken- und Über-uns-Bereiche */
.brand-story {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white), rgba(46, 88, 99, 0.06));
}

.brand-story::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(180deg, var(--petrol), var(--bronze));
}

.brand-story .section-head,
.brand-story .story-text {
  max-width: 920px;
}

.brand-story .story-text {
  margin: 0 auto;
  padding: 28px;
  border: 1px solid rgba(46, 88, 99, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.brand-story .story-text p {
  margin: 0 0 16px;
}

.about-section {
  background:
    radial-gradient(circle at top left, var(--bronze-soft), transparent 34%),
    linear-gradient(180deg, var(--white), rgba(46, 88, 99, 0.05));
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 34px;
  align-items: start;
}

.about-copy {
  padding: 30px;
  border: 1px solid rgba(46, 88, 99, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.90);
  box-shadow: var(--shadow-soft);
}

.about-copy h3 {
  margin-top: 26px;
  color: var(--petrol);
}

.about-copy h3:first-child {
  margin-top: 0;
}

.about-copy p {
  margin: 0 0 16px;
}

.about-thanks {
  color: var(--bronze);
  font-weight: 800;
}

.about-side {
  display: grid;
  gap: 18px;
}

.about-photo-card {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(46, 88, 99, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.about-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  object-fit: cover;
}

.about-photo-card.shirley-card .about-photo {
  aspect-ratio: 1 / 1;
}

.about-photo-card figcaption {
  margin: 12px 4px 2px;
  color: var(--petrol);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

/* Ablauf-Teaser auf der Startseite */
.process-teaser-section {
  background:
    radial-gradient(circle at top left, rgba(163, 129, 104, 0.15), transparent 34%),
    linear-gradient(180deg, var(--white), rgba(46, 88, 99, 0.045));
}

.process-teaser-section .about-layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
}

.process-teaser-section .about-side,
.process-teaser-section .about-copy {
  height: 100%;
}

.process-teaser-section .about-side {
  display: flex;
}

.process-teaser-section .about-side > .about-copy {
  width: 100%;
}

.process-teaser-section .about-copy {
  display: flex;
  flex-direction: column;
}

.process-teaser-section .about-link-row {
  margin-top: auto;
  padding-top: 22px;
}

.process-teaser-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-teaser-list li {
  padding: 14px 16px;
  border: 1px solid rgba(46, 88, 99, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  color: #32464c;
}

.process-teaser-list strong {
  color: var(--petrol);
}

/* Ausführlicher Ablauf */
.process-page {
  min-height: 60vh;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.steps span {
  display: block;
  color: var(--muted);
}

.steps.process-steps {
  counter-reset: deich-step;
  margin: 0;
}

.steps.process-steps li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  box-shadow: 0 10px 24px rgba(46, 88, 99, 0.07);
  counter-increment: deich-step;
}

.steps.process-steps li::before {
  content: counter(deich-step);
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--petrol);
  color: var(--white);
  font-weight: 800;
  place-items: center;
}

.steps.process-steps strong {
  display: block;
  margin-bottom: 4px;
  color: var(--petrol);
}

.process-note {
  margin: 0 0 24px;
  padding: 16px 20px;
  border-left: 4px solid var(--bronze);
  border-radius: 14px;
  background: var(--bronze-soft);
  color: #32464c;
}

/* Geschichtenentwicklung */
.storymaking-section {
  background:
    radial-gradient(circle at bottom right, var(--bronze-soft), transparent 34%),
    linear-gradient(180deg, rgba(46, 88, 99, 0.04), var(--white));
}

.storymaking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.storymaking-main,
.storymaking-side-card {
  border: 1px solid rgba(46, 88, 99, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.storymaking-main {
  padding: 30px;
}

.storymaking-main h3,
.storymaking-side-card h3 {
  margin-top: 0;
  color: var(--petrol);
}

.storymaking-main h3:not(:first-child) {
  margin-top: 30px;
}

.storymaking-main p,
.storymaking-side-card p {
  margin: 0 0 16px;
}

.storymaking-questions {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.storymaking-questions li {
  position: relative;
  padding: 13px 16px 13px 42px;
  border-radius: 16px;
  background: var(--petrol-soft);
  color: #32464c;
}

.storymaking-questions li::before {
  content: "?";
  position: absolute;
  left: 14px;
  top: 12px;
  display: grid;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bronze);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  place-items: center;
}

.storymaking-side {
  display: grid;
  gap: 18px;
}

.storymaking-side-card {
  padding: 24px;
}

.storymaking-side-card.ki {
  border-top: 5px solid var(--petrol);
}

.storymaking-side-card.feedback {
  border-top: 5px solid var(--bronze);
}

.storymaking-list {
  margin: 14px 0 18px;
  padding-left: 20px;
}

.storymaking-list li {
  margin-bottom: 10px;
}

.storymaking-highlight {
  display: block;
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--bronze-soft);
  color: #32464c;
  font-weight: 700;
}

/* Audio im Hero */
.hero-visual.audio-hero {
  position: relative;
  overflow: visible;
  margin-bottom: 138px;
}

.audio-hero img {
  cursor: pointer;
}

.audio-hero img:hover {
  filter: drop-shadow(0 14px 28px rgba(46, 88, 99, 0.18));
}

.audio-controls {
  position: absolute;
  top: calc(100% + 34px);
  left: 50%;
  z-index: 5;
  display: flex;
  width: min(320px, 92vw);
  transform: translateX(-50%);
}

.audio-play {
  --audio-progress: 0%;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 13px 22px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: rgba(46, 88, 99, 0.92);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(31, 47, 51, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.audio-play::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: var(--audio-progress);
  background: var(--bronze);
  transition: width 0.16s linear;
}

.audio-play:hover,
.audio-play:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(31, 47, 51, 0.26);
}

.play-icon {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--petrol);
  font-size: 16px;
  line-height: 1;
  place-items: center;
}

.audio-hero.is-playing .play-icon {
  color: var(--bronze);
}

/* Footer */
.site-footer {
  margin-top: 50px;
  background: var(--petrol);
  color: #e2ecea;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 36px 56px;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 38px 22px;
}

.footer-navigation,
.footer-legal {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 26px;
  min-width: 0;
  align-content: start;
}

.footer-navigation p,
.footer-legal p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #eaded5;
}


.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: #c8d8d5;
}


/* Sprungziel im Über-uns-Bereich unter dem fixierten Header vollständig anzeigen */
#geschichtenentwicklung {
  scroll-margin-top: 148px;
}

/* Responsive Darstellung */
@media (max-width: 1080px) {
  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: 0.98rem;
  }
}

@media (max-width: 900px) {
  #geschichtenentwicklung {
    scroll-margin-top: 112px;
  }

  .site-header,
  .header-inner {
    min-height: 92px;
  }

  .header-inner {
    padding: 3px 18px;
  }

  .brand {
    min-width: 118px;
  }

  .brand img {
    height: 84px;
    max-height: 84px;
  }

  .hamburger {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 18px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-soft);
  }

  .nav a {
    padding: 8px 10px;
    font-size: 1rem;
  }

  .nav-cta {
    text-align: center;
  }

  .menu-toggle:checked ~ .nav {
    display: flex;
  }

  .hero,
  .split,
  .contact-grid,
  .about-layout,
  .storymaking-layout,
  .experience-grid,
  .tour-experience-panel {
    grid-template-columns: 1fr;
  }

  .process-teaser-section .about-layout {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .info-grid,
  .comparison,
  .booking-steps,
  .tour-facts {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .footer-bottom {
    grid-column: 1;
  }
}

@media (max-width: 720px) {
  .card-grid.two {
    grid-template-columns: 1fr;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .hero-visual.audio-hero {
    margin-bottom: 126px;
  }

  .audio-controls {
    top: calc(100% + 28px);
  }
}

@media (max-width: 980px) {
  .character-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .tour-hint-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .character-grid {
    grid-template-columns: 1fr;
  }

  .tour-story-card {
    padding: 22px;
  }
}

@media (max-width: 520px) {
  .header-inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero,
  .section,
  .split {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .cta-row .btn,
  .about-link-row .btn {
    width: 100%;
  }

  .about-copy,
  .storymaking-main,
  .storymaking-side-card,
  .content-card,
  .legal-card {
    padding: 22px;
  }

  .tour-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .tour-title-cta {
    width: 100%;
  }

}

/* FAQ-Seite mit thematischen Gruppen */
.faq-page {
  display: grid;
  gap: 42px;
}

.faq-group {
  min-width: 0;
}

.faq-group-head {
  max-width: 780px;
  margin-bottom: 18px;
}

.faq-group-head h2,
.faq-cta h2 {
  margin: 0;
  color: var(--petrol-dark);
  font-size: clamp(1.65rem, 2.6vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.faq details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.faq summary {
  padding-right: 34px;
  list-style: none;
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  top: -2px;
  right: 0;
  color: var(--bronze);
  font-size: 1.45rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "–";
}

.faq-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--petrol-soft), var(--white) 72%);
  box-shadow: var(--shadow-soft);
}

.faq-cta p {
  max-width: 690px;
  margin-bottom: 0;
}

.faq-cta .cta-row {
  flex: 0 0 auto;
  margin-top: 0;
}

@media (max-width: 760px) {
  .faq-page {
    gap: 34px;
  }

  .faq-cta {
    display: block;
  }

  .faq-cta .cta-row {
    margin-top: 22px;
  }
}


/* Tourenübersicht: einfache Hero-Darstellung ohne Infokarte und Bildheader der Tourkarte */
.hero.hero-simple {
  grid-template-columns: 1fr;
  padding-bottom: 32px;
}

.hero.hero-simple .hero-content {
  max-width: 820px;
}

.tour-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(46, 88, 99, 0.10);
  margin: 4px 0 18px;
}


/* Kompakter Footer ohne Logo und Zwischenüberschriften */
@media (max-width: 720px) {
  .footer-navigation,
  .footer-legal {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* Offline-Seite der Tour-PWA */
.offline-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, var(--bronze-soft), transparent 38%),
    linear-gradient(155deg, var(--petrol-soft), var(--cream) 58%);
}

.offline-main {
  display: grid;
  min-height: 100vh;
  padding: 28px 18px;
  place-items: center;
}

.offline-card {
  width: min(100%, 620px);
  padding: clamp(28px, 7vw, 52px);
  border: 1px solid var(--line);
  border-top: 6px solid var(--petrol);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.offline-card h1 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 10vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.offline-lead {
  color: #385153;
  font-size: 1.15rem;
}

.offline-note {
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 4px solid var(--bronze);
  border-radius: 14px;
  background: var(--bronze-soft);
  color: var(--petrol-dark);
}

.offline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.offline-actions .btn {
  cursor: pointer;
}

.offline-actions .btn:focus-visible {
  outline: 4px solid rgba(163, 129, 104, 0.55);
  outline-offset: 3px;
}

@media (max-width: 520px) {
  .offline-main {
    align-items: stretch;
    padding: 16px;
  }

  .offline-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 32px);
    padding: 28px 22px;
  }

  .offline-actions {
    flex-direction: column;
  }

  .offline-actions .btn {
    width: 100%;
  }
}

/* Rein lokale technische Demo-Tour */
.demo-tour-page {
  --demo-bronze-text: #6f5140;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, var(--bronze-soft), transparent 34%),
    linear-gradient(180deg, var(--petrol-soft), var(--cream) 36%);
}

.demo-tour-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-bottom: 4px solid var(--petrol);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.demo-tour-brand {
  flex: 0 0 auto;
}

.demo-tour-brand img {
  width: 74px;
  height: 52px;
  object-fit: contain;
}

.demo-tour-header .eyebrow {
  margin-bottom: 2px;
}

.demo-tour-page .eyebrow {
  color: var(--demo-bronze-text);
}

.demo-tour-header-title {
  overflow-wrap: anywhere;
  color: var(--petrol-dark);
  font-weight: 900;
  line-height: 1.2;
}

.demo-tour-main {
  width: min(100%, 780px);
  min-width: 0;
  margin: 0 auto;
  padding: 24px 16px 48px;
}

.demo-tour-view[hidden] {
  display: none;
}

.demo-tour-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--petrol);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.demo-tour-start-card,
.demo-tour-finish-card {
  margin-top: 24px;
}

.demo-tour-card h1,
.demo-tour-progress-header h1 {
  overflow-wrap: anywhere;
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 11vw, 4rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.demo-tour-lead,
.demo-tour-station-intro {
  color: #385153;
  font-size: 1.12rem;
}

.demo-tour-facts {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.demo-tour-facts li {
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--petrol-soft);
  color: var(--petrol-dark);
  font-weight: 800;
}

.demo-tour-save-actions {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.demo-tour-save-actions[hidden] {
  display: none;
}

.demo-tour-save-actions .btn {
  width: 100%;
}

.demo-tour-save-actions .btn[hidden] {
  display: none;
}

.demo-tour-save-message {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.demo-tour-save-message.is-warning {
  padding: 12px 14px;
  border-left: 4px solid var(--bronze);
  border-radius: 12px;
  background: var(--bronze-soft);
  color: var(--petrol-dark);
}

.demo-tour-progress-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
}

.demo-tour-progress-text {
  flex: 0 0 auto;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 800;
}

.demo-tour-progress {
  overflow: hidden;
  height: 10px;
  margin: 0 0 22px;
  border-radius: 999px;
  background: rgba(46, 88, 99, 0.16);
}

.demo-tour-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--petrol), var(--bronze));
  transition: width 180ms ease;
}

.demo-tour-progress[aria-valuenow="1"] span {
  width: 33.333%;
}

.demo-tour-progress[aria-valuenow="2"] span {
  width: 66.666%;
}

.demo-tour-progress[aria-valuenow="3"] span {
  width: 100%;
}

.demo-tour-page .btn {
  min-height: 48px;
  padding-block: 12px;
  white-space: normal;
}

.demo-tour-page .btn-primary:hover {
  border-color: var(--petrol-dark);
  background: var(--petrol-dark);
}

.demo-tour-page .btn-secondary:hover {
  border-color: var(--petrol);
  background: var(--petrol-soft);
  color: var(--petrol-dark);
}

.demo-tour-audio,
.demo-tour-task,
.demo-tour-hints {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.demo-tour-audio h2,
.demo-tour-task h2,
.demo-tour-hints h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.demo-tour-audio {
  display: grid;
  gap: 14px;
}

.demo-tour-audio .btn {
  justify-self: start;
}

.demo-tour-task form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.demo-tour-task input[type="text"] {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  font-size: max(1rem, 16px);
}

.demo-tour-task label,
.demo-tour-task legend {
  color: var(--petrol-dark);
  font-weight: 800;
}

.demo-tour-task fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.demo-tour-task legend {
  margin-bottom: 8px;
}

.demo-tour-option {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: #fffaf6;
  cursor: pointer;
}

.demo-tour-option:has(input:checked) {
  border-color: var(--petrol);
  background: var(--petrol-soft);
}

.demo-tour-option input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--petrol);
}

.demo-tour-feedback {
  min-height: 28px;
  margin-top: 16px;
  padding: 0;
  font-weight: 800;
}

.demo-tour-feedback.is-success,
.demo-tour-feedback.is-error {
  padding: 13px 15px;
  border-radius: 14px;
}

.demo-tour-feedback.is-success {
  border-left: 5px solid #2e6346;
  background: rgba(46, 99, 70, 0.12);
  color: #24563b;
}

.demo-tour-feedback.is-error {
  border-left: 5px solid #a35e4a;
  background: rgba(163, 94, 74, 0.14);
  color: #743b2b;
}

.demo-tour-feedback.is-success::before {
  content: "✓ ";
}

.demo-tour-feedback.is-error::before {
  content: "! ";
}

.demo-tour-hint-actions,
.demo-tour-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.demo-tour-hint-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 24px;
}

.demo-tour-hint-list li {
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--bronze-soft);
  color: var(--petrol-dark);
}

.demo-tour-navigation {
  justify-content: space-between;
  margin-top: 20px;
}

.demo-tour-page button:focus-visible,
.demo-tour-page input:focus-visible,
.demo-tour-page a:focus-visible {
  outline: 3px solid var(--petrol-dark);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--white);
}

.demo-tour-page button:disabled {
  cursor: not-allowed;
  border-style: dashed;
  opacity: 0.62;
}

@media (min-width: 700px) {
  .demo-tour-main {
    padding-top: 42px;
  }

  .demo-tour-card {
    padding: 38px;
  }

  .demo-tour-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .demo-tour-audio {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .demo-tour-audio .form-hint {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .demo-tour-progress-header {
    display: block;
  }

  .demo-tour-progress-text {
    margin: 0 0 12px;
  }

  .demo-tour-card {
    padding: 24px 20px;
  }

  .demo-tour-hint-actions,
  .demo-tour-navigation {
    flex-direction: column;
  }

  .demo-tour-hint-actions .btn,
  .demo-tour-navigation .btn,
  .demo-tour-start-card > .btn,
  .demo-tour-finish-card > .btn {
    width: 100%;
  }

  .demo-tour-navigation {
    flex-direction: column-reverse;
  }
}

@media (max-width: 340px) {
  .demo-tour-header {
    gap: 10px;
    padding-inline: 12px;
  }

  .demo-tour-brand img {
    width: 62px;
    height: 44px;
  }

  .demo-tour-main {
    padding-inline: 10px;
  }

  .demo-tour-card {
    padding: 22px 16px;
  }

  .demo-tour-card h1,
  .demo-tour-progress-header h1 {
    font-size: clamp(2rem, 10vw, 2.5rem);
  }
}

@media (orientation: landscape) and (max-height: 520px) {
  .demo-tour-main {
    padding-top: 14px;
  }

  .demo-tour-start-card,
  .demo-tour-finish-card {
    margin-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .demo-tour-page *,
  .demo-tour-page *::before,
  .demo-tour-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Tour-PWA: Kollmeraner Schmuggler junior */
.tour-start-logo {
  width: min(220px, 70vw);
  height: auto;
  margin-bottom: 18px;
}

.tour-download-panel {
  margin: 24px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--petrol-soft);
}

.tour-download-panel h2 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.tour-download-panel progress {
  width: 100%;
  height: 18px;
  margin: 14px 0 6px;
  accent-color: var(--petrol);
}

.tour-media-figure {
  margin: 0;
}

.tour-media-figure img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.tour-media-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.tour-route-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 24px;
}

.tour-route-list li {
  padding: 13px 14px;
  border-radius: 14px;
  background: var(--bronze-soft);
  color: var(--petrol-dark);
}

.tour-audio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

#answer-form,
#arrival-form {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

#answer-form[hidden],
#arrival-form[hidden] {
  display: none;
}

#answer-input:disabled,
#arrival-input:disabled {
  border-color: var(--petrol);
  background: var(--petrol-soft);
  color: var(--petrol-dark);
}

@media (max-width: 520px) {
  .tour-audio-actions,
  .tour-download-panel .cta-row {
    flex-direction: column;
  }

  .tour-audio-actions .btn,
  .tour-download-panel .btn {
    width: 100%;
  }
}
