/* ========== Base ========== */
:root{
  --bg: #f4f4f4;
  --panel: #ffffff;
  --text: #1f1f1f;
  --muted: #666666;

  --accent: #ef6a00;
  --accent-dark: #c55200;

  --tab: #cfcfcf;
  --tabText: #2a2a2a;
  --tabActive: #ef6a00;
  --tabActiveText: #ffffff;

  --border: #d7d7d7;
  --shadow: 0 10px 30px rgba(0,0,0,.08);

  --btn: #ef6a00;
  --btnText: #ffffff;

  --radius: 4px;
  --max: 1180px;
  --tap: 44px;

  /* Hero Positionierung Desktop */
  --hero-text-left: 6%;
  --hero-text-top: 16%;
  --hero-text-width: 42%;

  --hero-cta-right: 6%;
  --hero-cta-bottom: 8%;

  /* Hero Positionierung Mobile */
  --hero-mobile-text-left: 5%;
  --hero-mobile-text-top: 20%;
  --hero-mobile-text-width: 90%;

  --hero-mobile-cta-left: 5%;
  --hero-mobile-cta-bottom: 6%;
  --hero-mobile-cta-width: 90%;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
}

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

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  background: #000;
  color: #fff;
  padding: 10px 12px;
  z-index: 9999;
}
.skip-link:focus{ left: 10px; }

.small{
  color: var(--muted);
  font-size: .95rem;
}

/* ========== Header / Nav ========== */
.site-header{
  position: relative;
  background: var(--accent);
  border-bottom: 1px solid rgba(0,0,0,.10);
  z-index: 40;
  box-shadow: 0 4px 16px rgba(0,0,0,.10);
}

.header-inner{
  position: relative;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  letter-spacing: .2px;
  position: relative;
  z-index: 3;
}

.brand--full{
  min-width: 0;
}

.brand-logo{
  width: 76px;
  height: auto;
  display: block;
  flex: 0 0 76px;
}

.brand-text{
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2vw, 2.25rem);
  line-height: 1;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.brand-text--sr{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.site-main{
  padding: 22px 0 44px;
}

.site-main--home{
  padding-top: 0;
}

.site-nav{
  display: block;
  position: relative;
  z-index: 6;
}

.nav-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--tap);
  padding: 0 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  border: 1px solid transparent;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  font-size: .85rem;
}

.nav-link:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
}

.nav-link.is-active{
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.22);
}

.nav-toggle{
  display: none;
  width: var(--tap);
  height: var(--tap);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
  position: relative;
  z-index: 7;
}

.nav-toggle:active{
  transform: translateY(1px);
}

.nav-toggle-bars{
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after{
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #fff;
}

.nav-toggle-bars::before{ top: -6px; }
.nav-toggle-bars::after{ top: 6px; }

@media (max-width: 820px){
  .header-inner{
    min-height: 82px;
  }

  .brand{
    gap: 12px;
  }

  .brand-logo{
    width: 58px;
    flex-basis: 58px;
  }

  .brand-text{
    font-size: clamp(1.1rem, 4.8vw, 1.5rem);
    white-space: normal;
    line-height: 1.05;
  }

  .nav-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .site-nav{
    position: fixed;
    inset: 0;
    display: none;
    padding: 0;
    background: rgba(0,0,0,.25);
  }

  .site-nav.is-open{
    display: block;
  }

  .site-nav .nav-list{
    position: absolute;
    top: 72px;
    right: 12px;
    left: 12px;
    display: grid;
    gap: 10px;
    padding: 14px;
    border-radius: var(--radius);
    background: var(--panel);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .site-nav .nav-link{
    justify-content: center;
    height: 48px;
    color: var(--text);
  }

  .site-nav .nav-link.is-active{
    background: rgba(239,106,0,.12);
    border-color: rgba(239,106,0,.24);
    color: #8d3b00;
  }

  body.menu-open{
    overflow: hidden;
    touch-action: none;
  }
}

/* ========== Startseite Hero ========== */
.home-hero{
  position: relative;
  min-height: calc(100vh - 88px);
  background-image: url("../img/startseite.jpg"); 
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.home-hero__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.44) 0%, rgba(0,0,0,.18) 34%, rgba(0,0,0,.10) 62%, rgba(0,0,0,.22) 100%),
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.18) 100%);
}

.home-hero__stage{
  position: relative;
  min-height: calc(100vh - 88px);
  z-index: 2;
}

.home-hero__text{
  position: absolute;
  left: var(--hero-text-left);
  top: var(--hero-text-top);
  width: var(--hero-text-width);
  color: #fff;
  padding: 22px 24px;
  background: linear-gradient(135deg, rgba(0,0,0,.32), rgba(0,0,0,.10));
  border-left: 4px solid var(--accent);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.home-hero__title{
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: .98;
  font-weight: 700;
  text-shadow: 0 5px 20px rgba(0,0,0,.28);
}

.home-hero__lead{
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  max-width: 42ch;
  color: rgba(255,255,255,.95);
  text-shadow: 0 2px 10px rgba(0,0,0,.24);
}

.home-hero__cta{
  position: absolute;
  right: var(--hero-cta-right);
  bottom: var(--hero-cta-bottom);
}

.home-hero__btn{
  min-width: 220px;
  height: 52px;
  font-size: .92rem;
  background: var(--accent);
  border-color: var(--accent-dark);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}

@media (max-width: 820px){
  .home-hero{
    min-height: calc(100vh - 82px);
    background-position: center center;
  }

  .home-hero__stage{
    min-height: calc(100vh - 82px);
  }

  .home-hero__text{
    left: var(--hero-mobile-text-left);
    top: var(--hero-mobile-text-top);
    width: var(--hero-mobile-text-width);
    padding: 18px;
    background: linear-gradient(135deg, rgba(0,0,0,.28), rgba(0,0,0,.12));
  }

  .home-hero__title{
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .home-hero__cta{
    left: var(--hero-mobile-cta-left);
    right: auto;
    bottom: var(--hero-mobile-cta-bottom);
    width: var(--hero-mobile-cta-width);
  }

  .home-hero__btn{
    width: 100%;
    min-width: 0;
  }
}

/* ========== Startseite Editorial / Touren / CTA ========== */
.home-intro--editorial{
  padding: 56px 0 28px;
}

.home-intro__editorial{
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 0 8px;
}

.home-intro__eyebrow,
.section-head__eyebrow,
.home-cta-final__eyebrow{
  margin: 0 0 12px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-intro__title,
.section-head__title,
.home-cta-final__box h2{
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
  color: var(--text);
}

.home-intro__lead{
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.home-intro__facts{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 860px;
  margin: 30px auto 0;
  text-align: left;
}

.home-intro__fact{
  padding: 18px 20px 18px 22px;
  background: linear-gradient(180deg, #fff 0%, #faf7f3 100%);
  border: 1px solid rgba(0,0,0,.08);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
}

.home-intro__fact strong{
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1rem;
}

.home-intro__fact span{
  display: block;
  color: var(--muted);
  line-height: 1.6;
  font-size: .96rem;
}

.home-next-tour,
.home-why,
.home-featured-tours,
.home-cta-final{
  padding: 32px 0;
}

.section-head{
  margin-bottom: 20px;
}

.section-head__title{
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

/* Nächste Tour */
.home-next-tour--editorial{
  padding-top: 24px;
}

.next-tour-feature{
  display: grid;
  grid-template-columns: minmax(360px, 48%) minmax(0, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(0,0,0,.08);
}

.next-tour-feature__media{
  min-height: 100%;
  background: #ddd;
}

.next-tour-feature__media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.next-tour-feature__content{
  padding: 34px 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.next-tour-feature__title{
  margin: 10px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
  line-height: 1.06;
  color: var(--text);
}

.next-tour-feature__title span{
  display: block;
  margin-top: 6px;
  color: var(--accent);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .55em;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.next-tour-feature__lead{
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.next-tour-feature__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.next-tour-feature__grid div{
  padding: 14px 16px;
  background: #f8f5f1;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 8px;
}

.next-tour-feature__grid strong{
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: .9rem;
}

.next-tour-feature__grid span{
  display: block;
  color: var(--muted);
  line-height: 1.5;
}

.next-tour-feature__text{
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
}

.next-tour-feature__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Warum mit uns */
.why-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.why-card{
  background: linear-gradient(180deg, #ffffff 0%, #faf7f3 100%);
  border: 1px solid rgba(0,0,0,.07);
  border-top: 4px solid var(--accent);
  border-radius: 8px;
  padding: 22px 18px;
  box-shadow: 0 10px 22px rgba(0,0,0,.05);
}

.why-card h3{
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  line-height: 1.15;
  color: var(--text);
}

.why-card p{
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: .97rem;
}

/* Ausgewählte Touren */
.tour-teaser-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.tour-teaser-card{
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0,0,0,.06);
}

.tour-teaser-card__image{
  display: block;
  aspect-ratio: 16 / 10;
  background: #ddd;
  overflow: hidden;
}

.tour-teaser-card__image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.tour-teaser-card:hover .tour-teaser-card__image img{
  transform: scale(1.04);
}

.tour-teaser-card__body{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 18px 18px;
  flex: 1;
}

.tour-teaser-card__title{
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.1;
  color: var(--text);
}

.tour-teaser-card__title span{
  display: block;
  margin-top: 6px;
  color: var(--accent);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .62em;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.tour-teaser-card__meta,
.tour-teaser-card__dates{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: .96rem;
}

.tour-teaser-card .btn{
  margin-top: auto;
  align-self: flex-start;
}

/* Final CTA */
.home-cta-final{
  padding-top: 40px;
  padding-bottom: 56px;
}

.home-cta-final__box{
  text-align: center;
  background: linear-gradient(180deg, #fffaf4 0%, #f7f1ea 100%);
  border: 1px solid rgba(239,106,0,.16);
  border-radius: 10px;
  box-shadow: 0 16px 32px rgba(0,0,0,.06);
  padding: 40px 24px;
}

.home-cta-final__box p{
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.home-cta-final__box > p:last-of-type{
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.home-cta-final__actions{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* ========== Footer ========== */
.site-footer{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  color: #d8d8d8;
  background: #2b2b2b;
}

.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-branding{
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo{
  width: 72px;
  height: auto;
  opacity: .22;
  filter: grayscale(100%) contrast(1.05);
}

.footer-copy{
  color: #d8d8d8;
}

.footer-nav a{
  color: #c9c9c9;
  text-decoration: none;
  margin-left: 14px;
}

.footer-nav a:hover{
  color: #ffffff;
}

@media (max-width: 820px){
  .footer-inner{
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav a{
    margin-left: 0;
    margin-right: 14px;
  }
}

/* ========== Touren: Titel + Tabs ========== */
.page-title{
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--accent);
  text-align: center;
  margin: 18px 0 12px;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  text-transform: uppercase;
}

.tabs{
  margin: 10px auto 18px;
}

.tabs__scroller{
  display: flex;
  gap: 10px;
  justify-content: stretch;
  flex-wrap: nowrap;
}

.tab{
  appearance: none;
  border: 1px solid var(--border);
  background: var(--tab);
  color: var(--tabText);
  padding: 12px 10px;
  min-width: 0;
  flex: 1 1 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  border-radius: 0;
  white-space: nowrap;
}

.tab:hover{
  filter: brightness(0.98);
}

.tab.is-active{
  background: var(--tabActive);
  color: var(--tabActiveText);
  border-color: var(--accent-dark);
}

@media (max-width: 1100px){
  .tabs__scroller{
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }

  .tab{
    flex: 0 0 auto;
    min-width: 120px;
  }
}

.tabpanel{ display: none; }
.tabpanel.is-active{ display: block; }

.empty-hint{
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 18px;
  color: var(--muted);
}

/* ========== Legende ========== */
.legend{
  margin: 0 0 22px;
}

.legend-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.legend-section-title{
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .4px;
}

.legend-item{
  margin-bottom: 8px;
  color: var(--muted);
}

.legend-item strong{
  color: var(--text);
  display: inline-block;
  min-width: 88px;
}

.legend-more{
  margin-top: 14px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.legend-more summary{
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.legend-more summary::after{
  content: " +";
}

.legend-more[open] summary::after{
  content: " –";
}

.legend-more__content{
  margin-top: 12px;
  color: var(--muted);
}

.legend-more__content p{
  margin: 0 0 10px;
}

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

/* ========== Tourliste ========== */
.tourlist{
  display: grid;
  gap: 18px;
}

.tourmeta{
  display: grid;
  gap: 6px;
  margin: 2px 0 4px;
  color: var(--muted);
}

/* ========== Tour Card ========== */
.tourcard{
  background: var(--panel);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  min-height: 360px;
}

.tourcard__media{
  background: #ddd;
  overflow: hidden;
}

.tourcard__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tourcard__body{
  padding: 26px 26px 22px;
  border-left: 1px solid var(--border);
  display: grid;
  align-content: start;
  gap: 10px;
}

.tourcard__title{
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
}

.tourcard__subtitle{
  font-weight: 700;
  margin-top: -6px;
}

.stars{
  color: #c28a00;
  letter-spacing: 3px;
  font-size: 1.1rem;
  margin: 4px 0 6px;
}

.section-label{
  margin-top: 6px;
  font-weight: 700;
  font-size: 1.25rem;
}

.pricegrid{
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.priceblock__title{
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.priceblock__values{
  display: grid;
  gap: 3px;
  color: var(--muted);
}

/* ========== Buttons ========== */
.btn{
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  background: var(--btn);
  color: var(--btnText);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .4px;
  font-weight: 700;
  border: 1px solid var(--accent-dark);
  width: fit-content;
  border-radius: 0;
}

.btn:hover{
  filter: brightness(1.03);
}

.btn--ghost{
  background: #fff;
  color: var(--btn);
  border-color: var(--border);
}

.btn--ghost:hover,
.btn--ghost:focus{
  background: rgba(0,0,0,.04);
  color: var(--text);
}

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

  .tourcard__body{
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .btn{
    width: 100%;
  }
}

/* ========== Tour Detail ========== */
.detail{
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 22px;
}

.detail-hero{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  border: 1px solid var(--border);
  background: #fff;
}

.detail-hero__img{
  min-height: 320px;
  background: #ddd;
}

.detail-hero__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero__body{
  padding: 20px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.badges{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge{
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f3f3f3;
  font-weight: 700;
  font-size: .85rem;
}

.detail-title{
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.1;
}

.detail-subtitle{
  margin-top: -6px;
  font-weight: 700;
}

.detail-kv{
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.detail-grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}

.card{
  border: 1px solid var(--border);
  background: #fff;
  padding: 16px;
}

.card h3{
  margin: 0 0 10px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--accent);
}

.list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.cta{
  display: grid;
  gap: 10px;
}

.cta .btn{
  width: 100%;
}

.smallprint{
  color: var(--muted);
  font-size: .95rem;
}

@media (max-width: 980px){
  .detail-hero{
    grid-template-columns: 1fr;
  }

  .detail-grid{
    grid-template-columns: 1fr;
  }
}

/* ========== Legal ========== */
.legal-page{
  padding: 24px;
}

.legal-page__header{
  margin-bottom: 22px;
}

.legal-page__intro{
  color: var(--muted);
  max-width: 72ch;
}

.legal-section{
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.legal-section:first-of-type{
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-section p{
  margin: 0 0 12px;
}

.legal-note{
  background: #fafafa;
  padding: 18px;
  border: 1px solid var(--border);
}

.legal-contact-grid{
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

/* ========== Kontakt ========== */
.contact-grid{
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 18px;
}

.contact-form{
  display: grid;
  gap: 14px;
}

.form-row{
  display: grid;
  gap: 6px;
}

.form-row label{
  font-weight: 700;
}

.form-row input,
.form-row textarea{
  width: 100%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
  border-radius: 0;
}

.form-row textarea{
  resize: vertical;
  min-height: 180px;
}

.form-notice{
  margin-bottom: 14px;
  padding: 14px 16px;
  border: 1px solid var(--border);
}

.form-notice--success{
  background: #f6fbf6;
}

.form-notice--error{
  background: #fff7f7;
}

.hp-field{
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

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

@media (max-width: 980px){
  .next-tour-feature{
    grid-template-columns: 1fr;
  }

  .next-tour-feature__media{
    min-height: 280px;
  }
}

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

@media (max-width: 820px){
  .home-intro--editorial{
    padding: 40px 0 18px;
  }

  .home-next-tour,
  .home-why,
  .home-featured-tours,
  .home-cta-final{
    padding: 24px 0;
  }

  .home-intro__facts,
  .next-tour-feature__grid,
  .why-grid,
  .tour-teaser-grid{
    grid-template-columns: 1fr;
  }

  .next-tour-feature__content{
    padding: 22px 18px 20px;
  }

  .next-tour-feature__media{
    min-height: 220px;
  }

  .home-cta-final{
    padding-bottom: 40px;
  }

  .home-cta-final__box{
    padding: 30px 18px;
  }
}

.checkbox-row{
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  cursor: pointer;
  line-height: 1.6;
}

.checkbox-row input[type="checkbox"]{
  margin-top: 3px;
  width: 18px;
  height: 18px;
}



/* ========== Tourseite: Buchungsbuttons in Preisbox ========== */
.priceblock{
  padding: 14px 0 16px;
  border-top: 1px solid var(--border);
}
.priceblock:first-of-type{
  border-top: 0;
  padding-top: 6px;
}
.priceblock__title{
  font-weight: 700;
  margin-bottom: 8px;
}
.priceblock__values{
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--text);
}
.priceblock__booking{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  font-size: .92rem;
}

/* ========== Buchungsformular ========== */
.booking-page{
  padding: 34px 0 56px;
}

.booking-shell{
  display: grid;
  gap: 24px;
}

.booking-hero{
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 22px;
  align-items: stretch;
}

.booking-tourcard,
.booking-pricecard,
.booking-form,
.booking-success,
.booking-error{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.booking-tourcard{
  overflow: hidden;
}

.booking-tourcard__media{
  aspect-ratio: 16 / 8;
  background: #ddd;
}
.booking-tourcard__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-tourcard__body{
  padding: 20px;
}

.booking-kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
}

.booking-tourtitle{
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.08;
}

.booking-subtitle{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1.04rem;
}

.booking-meta{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}
.booking-meta div{
  padding: 12px 14px;
  border-radius: 8px;
  background: #faf7f3;
  border: 1px solid rgba(0,0,0,.06);
}
.booking-meta strong{
  display: block;
  margin-bottom: 4px;
  font-size: .82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.booking-pricecard{
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.booking-pricecard__label{
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.booking-pricecard__price{
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  font-weight: 800;
  color: var(--text);
}

.booking-pricecard__deposit{
  padding: 16px;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff7ef 0%, #fff1e3 100%);
  border: 1px solid rgba(239,106,0,.22);
}
.booking-pricecard__deposit strong{
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.booking-pricecard__deposit-value{
  font-size: 1.6rem;
  font-weight: 800;
  color: #8d3b00;
}

.booking-pricecard__note{
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
}

.booking-form{
  padding: 24px;
}

.booking-form__intro{
  margin: 0 0 22px;
  color: var(--muted);
}

.booking-section{
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.booking-section:first-of-type{
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.booking-section h2{
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.15;
}
.booking-section__lead{
  margin: 0 0 16px;
  color: var(--muted);
}

.booking-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}
.booking-grid--single{
  grid-template-columns: 1fr;
}
.booking-grid--triple{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-field{
  display: grid;
  gap: 7px;
}
.form-field label{
  font-weight: 700;
  font-size: .95rem;
}
.form-field input,
.form-field textarea,
.form-field select{
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  font: inherit;
  color: var(--text);
  background: #fff;
}
.form-field textarea{
  min-height: 120px;
  resize: vertical;
}
.form-field input[readonly]{
  background: #f7f7f7;
}
.form-help{
  color: var(--muted);
  font-size: .86rem;
}

.booking-options{
  display: grid;
  gap: 12px;
}

.checklist{
  display: grid;
  gap: 12px;
  margin-top: 12px;
}
.check{
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 8px;
  background: #fbfbfb;
}
.check input{
  margin-top: 2px;
}
.check--soft{
  background: #f8fafb;
}
.check__hint{
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.45;
}

.confirm-box{
  margin-top: 10px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(239,106,0,.22);
  border-radius: 10px;
  background: linear-gradient(180deg, #fffaf5 0%, #fff4e9 100%);
}
.confirm-box p{
  margin: 0;
  line-height: 1.65;
}
.confirm-box strong{
  color: #8d3b00;
}

.booking-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
}
.booking-actions .btn{
  min-width: 210px;
}
.booking-actions__hint{
  color: var(--muted);
  font-size: .9rem;
}

.booking-success,
.booking-error{
  padding: 24px;
}
.booking-success h1,
.booking-error h1{
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
}
.booking-summary{
  display: grid;
  gap: 8px;
  margin: 18px 0;
}
.booking-summary div{
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fafafa;
}

@media (max-width: 980px){
  .booking-hero{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px){
  .booking-page{
    padding-top: 22px;
  }

  .booking-form{
    padding: 18px;
  }

  .booking-grid,
  .booking-grid--triple,
  .booking-meta{
    grid-template-columns: 1fr;
  }

  .booking-actions .btn{
    width: 100%;
    min-width: 0;
  }
}
