/* Indien Reiseleiter — Combined theme stylesheet */
:root {
  --brand: #e4572e;
  --brand-deep: #c4471f;
  --brand-soft: #fff1eb;
  --ink: #141210;
  --ink-soft: #3d3834;
  --muted: #6b645e;
  --line: #e8e0d8;
  --paper: #faf7f3;
  --paper-warm: #f3ebe3;
  --navy: #1a2433;
  --navy-soft: #243044;
  --white: #ffffff;
  --radius: 4px;
  --ok: #2d6a4f;
  --shadow: 0 18px 50px rgba(20, 18, 16, 0.12);
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --container: 1400px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--brand-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--brand);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 550;
  line-height: 1.2;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 243, 0.92);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(20, 18, 16, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
}

.logo img {
  height: 48px;
  width: auto;
}

.nav-desktop {
  display: none;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  text-transform: uppercase;
}

.nav-desktop a:hover,
.nav-desktop a.is-current {
  color: var(--brand);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  background: var(--brand);
  color: var(--white) !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: .5rem 1rem;
  border-radius: 0;
  transition: background 0.25s, transform 0.25s;
  position: fixed;
  top: 50%;
  left: 15px;
  transform-origin: 0 50%;
  transform: rotate(-90deg) translate(-50%, 50%);
  animation-name: shakeMe;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes shakeMe {
  2%, 18% {
    transform: rotate(-90deg) translate(-50%, 50%);
  }
  4%, 16% {
    transform: rotate(-90deg) translate(-40%, 50%);
  }
  6%, 10%, 14% {
    transform: rotate(-90deg) translate(-50%, 50%);
  }
  8%, 12% {
    transform: rotate(-90deg) translate(-40%, 50%);
  }
  18.1% {
    transform: rotate(-90deg) translate(-50%, 50%);
  }
}

.header-cta:hover {
  background: var(--brand-deep);
}

.menu-toggle {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.35rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--brand);
  color: var(--white) !important;
}

.btn--primary:hover {
  background: var(--brand-deep);
}

.btn--ghost {
  background: transparent;
  color: var(--white) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--ink) !important;
  border: 1.5px solid var(--line);
}

.btn--outline:hover {
  border-color: var(--brand);
  color: var(--brand) !important;
}

.btn--block {
  width: 100%;
}

.btn--sm {
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
}

/* —— Full-bleed home hero —— */
.home-hero {
  position: relative;
  min-height: min(92vh, 780px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.home-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroDrift 20s var(--ease) infinite alternate;
}

@keyframes heroDrift {
  from {
    transform: scale(1.05) translate(0, 0);
  }
  to {
    transform: scale(1.12) translate(-1.2%, -0.8%);
  }
}

.home-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 18, 16, 0.2) 0%, rgba(20, 18, 16, 0.45) 40%, rgba(20, 18, 16, 0.9) 100%),
    linear-gradient(90deg, rgba(196, 71, 31, 0.35), transparent 50%);
}

.home-hero__content {
  padding: 7rem 0 3.25rem;
  width: 100%;
  position: absolute;
  inset: 0;
  > .container {
      @media (min-width: 1100px) {
          padding-left: 40px;
      }
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-hero__copy {
  margin-bottom: 1.75rem;
}

.home-hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--white);
}

.home-hero__brand span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.55rem;
}

.home-hero h1 {
  color: var(--white);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 0.85rem;
  opacity: 0.95;
}

.home-hero__lead {
  font-size: 1.08rem;
  opacity: 0.9;
  max-width: 55ch;
  margin-bottom: 0;
}

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

/* Hero trip planner form */
.hero-trip-form {
  width: 100%;
  max-width: 30rem;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(20, 18, 16, 0.28);
  animation: riseIn 1.05s var(--ease) 0.12s both;
}

.hero-trip-form form > p {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
  br {
    display: none;
  }
}

.hero-trip-form__field {
  display: block;
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.hero-trip-form__field select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b645e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding: 1rem 2.5rem 1rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-soft);
  cursor: pointer;
  outline: none;
}

.hero-trip-form__field select:focus {
  background-color: var(--brand-soft);
}

.hero-trip-form__field select:invalid,
.hero-trip-form__field select option[value=""] {
  color: var(--muted);
}

.hero-trip-form__field select option {
  color: var(--ink-soft);
}

.hero-trip-form__submit {
  border: 0;
  background: var(--brand);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1.05rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s var(--ease);
  white-space: nowrap;
}

.hero-trip-form__submit:hover {
  background: var(--brand-deep);
}

@media (min-width: 800px) {
  .hero-trip-form form > p {
    grid-template-columns: 1.5fr 0.5fr;
    align-items: stretch;
  }

  .hero-trip-form__field {
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }

  .hero-trip-form__field select {
    height: 100%;
    min-height: 3.6rem;
    padding: 1.05rem 2.5rem 1.05rem 1.25rem;
  }

  .hero-trip-form__submit {
    padding: 0 1.75rem;
  }
}

/* Section primitives */
.section {
  padding: 4.5rem 0;
}

.section--warm {
  background: var(--paper-warm);
}

.section--warm {
  .reasons {
    .reason::before {
      font-size: 1.6rem;
    }
  }
}

.section--navy {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.65rem;
}

.section--navy .section-label {
  color: #ffb089;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.section--navy .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

/* Intro */
.intro-block {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .intro-block {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
  }
}

.intro-block__visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.intro-block__visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.by-piyush .intro-block__visual {
  img {
    height: 370px;
    min-height: 0;   
  }
}

.intro-block__accent {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 20%;
  padding: 1.25rem 1.35rem;
  background: var(--brand);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.35;
}

/* Reasons */
.reasons {
  counter-reset: reason;
  display: grid;
  gap: 0;
}

.reason {
  display: grid;
  gap: 0.75rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  counter-increment: reason;
}

@media (min-width: 700px) {
  .reason {
    grid-template-columns: 4.5rem 1fr;
    gap: 1.5rem;
    align-items: start;
  }
}

.reason::before {
  content: counter(reason, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--brand);
  line-height: 1;
}

.reason h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.reason p {
  margin: 0;
  max-width: 62ch;
}

/* Expert band */
.expert {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .expert {
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;
  }
}

.expert__mark {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  flex-shrink: 0;
}

.expert h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.4rem;
}

.expert p {
  margin: 0;
  max-width: 50ch;
}

.expert p + p {
  margin-top: 0.65rem;
}

/* Tours */
.tour-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.filter-btn {
  padding: 0.55rem 1rem;
  border: 1px solid var(--line);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.2s;
}

.filter-btn.is-active,
.filter-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.tours-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .tours-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tour-tile {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none !important;
  color: inherit;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.tour-tile:hover {
  border-color: rgba(228, 87, 46, 0.45);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: inherit;
}

.tour-tile__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy);
}

.tour-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.tour-tile:hover .tour-tile__media img {
  transform: scale(1.06);
}

.tour-tile__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.2rem 1.25rem 1.35rem;
  flex: 1;
}

.tour-tile__meta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}

.tour-tile h2,
.tour-tile h3 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--ink);
}

.tour-tile__route {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-tile__price {
  margin-top: auto;
  padding-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 550;
}

.tour-tile__price span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}

.tour-tile.is-hidden {
  display: none;
}

/* Regions */
.regions {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 700px) {
  .regions {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .regions {
    grid-template-columns: repeat(4, 1fr);
  }
}

.region {
  padding: 1.35rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 2px solid var(--brand);
  text-decoration: none !important;
  color: inherit;
  transition: background 0.25s, transform 0.25s var(--ease);
}

.region:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  color: inherit;
}

.region h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.region p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.75;
}

/* Trust + guest testimonials */
.trust-guests {
  background: var(--white);
  padding-block: 4.5rem;
}

.trust-guests__grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 960px) {
  .trust-guests__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    flex-direction: row;
  }

  .trust-panel {
    padding-right: 3rem;
    border-right: 1px solid var(--line);
    width: 40%;
  }

  .guests-panel {
    padding-left: 3rem;
    flex-direction: column;
    width: 60%;
  }
}

.trust-panel__title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  color: #3d140b;
  line-height: 1.25;
  margin: 0 0 1rem;
  max-width: 18ch;
}

.trust-panel__text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 1.75rem;
  max-width: 42ch;
}

.trust-badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 1rem;
  align-items: center;
}

.trust-badges li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.5rem;
}

.trust-badges img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 4.75rem;
  object-fit: contain;
}

.guests-panel__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  color: var(--ink);
  margin: 0 0 1.25rem;
}

.guests-slider {
  margin-bottom: 1.75rem;
  min-height: 11rem;
}

.guests-slider .slick-list,
.guests-slider .slick-track {
  height: auto !important;
}

.guest-slide {
  outline: none;
}

.guest-slide__quote {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.guest-slide__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.guest-slide__avatar {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--brand);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.guest-slide__author strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.guest-slide__stars {
  color: #d4a017;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.guests-panel__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.btn--trust {
  background: var(--brand);
  color: var(--white) !important;
  border: none;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.85rem 1.35rem;
}

.btn--trust:hover {
  background: #2a0d07;
  color: var(--white) !important;
}

.guests-nav {
  display: flex;
  gap: 0.65rem;
}

.guests-nav__btn {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1.5px solid #c5beb6;
  background: transparent;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.guests-nav__btn:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(61, 20, 11, 0.04);
}

@media (max-width: 959px) {
  .trust-panel__title {
    max-width: none;
  }

  .trust-badges {
    gap: 1rem 0.75rem;
  }

  .trust-badges img {
    max-height: 4rem;
  }
}

@media (max-width: 520px) {
  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .guests-panel__foot {
    flex-wrap: wrap;
  }
}

/* Inquiry — full booking form */
.inquiry-band {
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(228, 87, 46, 0.08), transparent 55%),
    linear-gradient(180deg, var(--paper-warm) 0%, var(--paper) 100%);
  color: var(--ink-soft);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.inquiry-band::before {
  display: none;
}

.inquiry-band .container {
  position: relative;
  display: block;
  max-width: min(100% - 2.5rem, 920px);
}

.inquiry-band__head {
  text-align: center;
  margin-bottom: 2rem;
}

.inquiry-band__head .section-label {
  margin-bottom: 0.55rem;
}

.inquiry-band h2 {
  color: var(--ink);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}

.inquiry-band__head p {
  margin: 0 auto;
  max-width: 46ch;
  color: var(--muted);
  opacity: 1;
}

.inquiry-form-wrap form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(20, 18, 16, 0.06);
}

.inquiry-form-wrap form > p{
  display: grid;
  grid-template-columns: 1fr;
}

.inquiry-form-wrap form > p br {
  display: none;
}

@media (min-width: 720px) {
  .inquiry-form-wrap form > p {
    grid-template-columns: 1fr 1fr;
    padding: 2rem 2.1rem 2.15rem;
    padding-bottom: 0;
  }
}

.inquiry-form-wrap form label {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  opacity: 1;
  line-height: 1.4;
  > span:not(.req) {
    width: 100%;
  }
}

.inquiry-form-wrap form .req {
  color: var(--brand);
  font-weight: 700;
}

.inquiry-form-wrap form .field--full {
  grid-column: 1 / -1;
}

.inquiry-form-wrap form input,
.inquiry-form-wrap form select,
.inquiry-form-wrap form textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid #cfc7bf;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.98rem;
  border-radius: 2px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.inquiry-form-wrap form input:focus,
.inquiry-form-wrap form select:focus,
.inquiry-form-wrap form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(228, 87, 46, 0.15);
}

.inquiry-form-wrap form input::placeholder,
.inquiry-form-wrap form textarea::placeholder {
  color: #9a928a;
}

.inquiry-form-wrap form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23141210' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 10px;
  padding-right: 2.2rem;
  cursor: pointer;
}

.inquiry-form-wrap form select option {
  color: var(--ink);
}

.inquiry-form-wrap form textarea {
  min-height: 140px;
  resize: vertical;
}

.inquiry-form__foot {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.35rem;
  padding-top: 0.35rem;
  padding-inline: 2.1rem;
  padding-bottom: 2.1rem;
}

.inquiry-form__trust {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  max-width: 36ch;
}

.inquiry-form__trust strong {
  color: var(--ink);
  font-weight: 600;
}

.inquiry-form-wrap form .btn {
  min-width: 11rem;
}

/* Footer */
.site-footer {
  background: #100e0c;
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 2rem;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffb089;
}

.footer-brand img {
  height: 42px;
  margin-bottom: 0.85rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.85rem;
}


/* —— Category / list page —— */
.page-hero {
  position: relative;
  min-height: min(58vh, 520px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 22s var(--ease) infinite alternate;
}

.page-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 18, 16, 0.25) 0%, rgba(20, 18, 16, 0.55) 45%, rgba(20, 18, 16, 0.92) 100%),
    linear-gradient(90deg, rgba(196, 71, 31, 0.28), transparent 55%);
}

.page-hero__content {
  padding: 4.5rem 0 3rem;
  animation: riseIn 0.9s var(--ease) both;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0.85;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

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

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.55rem;
  opacity: 0.55;
}

.page-hero__brand {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin: 0 0 0.75rem;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

.page-hero__lead {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 42ch;
  margin-bottom: 1.5rem;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.region img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  margin-bottom: 0.85rem;
}

.reasons-prose {
  display: grid;
  gap: 1.75rem;
  margin-top: 2rem;
  .reason-block {
    display: grid;
    gap: 2.5rem;
    align-items: center;
    padding: 2rem !important;
    background-color: var(--white);
  }
}

.reason-block {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.reason-block:first-child {
  border-top: none;
  padding-top: 0;
}

.reason-block__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 0.55rem;
}

.reason-block h2,
.reason-block h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  margin-bottom: 0.55rem;
}

.reason-block h4 {
  font-size: 1.05rem;
  margin: 1rem 0 0;
  color: var(--brand-deep);
}

.reason-block p {
  max-width: 68ch;
  margin-bottom: 0.75rem;
}

.reason-block p:last-child {
  margin-bottom: 0;
}

.reason-block a {
  font-weight: 600;
}

.slick-list {
  width: 100%;
}


@media (min-width: 900px) {
  .reasons-prose {
    .reason-block {
      grid-template-columns: 1.1fr 0.9fr;
    }
  }
  .section--warm {
    .reasons {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }
  }
}

/* ========== Tour Detail Page ========== */
/* —— Hero split: facts left + gallery right —— */
.hero-split {
  padding: 2rem 0 2.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  z-index: 2;
  position: relative;
}

.hero-split__grid {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 960px) {
  .hero-split__grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 2.75rem;
    min-height: min(72vh, 620px);
  }
}

.hero-split__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-split__eyebrow {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.hero-split__eyebrow span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.4rem;
}

.hero-split__info h1 {
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
  max-width: 16ch;
}

.hero-split__lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 38ch;
  margin-bottom: 1.5rem;
}

.hero-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0 0 1.75rem;
}

.hero-fact {
  margin: 0;
  padding: 1rem 1.05rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.hero-fact:hover {
  border-left-color: var(--brand-deep);
}

.hero-fact dt {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.hero-fact dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 550;
  color: var(--ink);
  line-height: 1.2;
}

.hero-fact dd span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
}

.hero-split__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Gallery slider */
.hero-split__gallery {
  min-height: 320px;
  animation: riseIn 0.9s var(--ease) 0.1s both;
}

@media (min-width: 960px) {
  .hero-split__gallery {
    min-height: 0;
  }
}

.gallery-slider {
  position: relative;
  height: 86%;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.gallery-slider__viewport {
  position: relative;
  flex: 1;
  min-height: 320px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow);
}

@media (min-width: 960px) {
  .gallery-slider__viewport {
    min-height: 100%;
  }
}

.gallery-slider__track {
  position: absolute;
  inset: 0;
}

.gallery-slider__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity 0.55s var(--ease), transform 0.7s var(--ease), visibility 0.55s;
  cursor: zoom-in;
}

.gallery-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 1;
}

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

.gallery-slider__slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1.25rem 1.15rem;
  background: linear-gradient(transparent, rgba(20, 18, 16, 0.78));
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.gallery-slider__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.gallery-slider__btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  &[data-gallery-prev] {
    left: 10px;
  }
  &[data-gallery-next] {
    right: 10px;
  }
}

.gallery-slider__btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.gallery-slider__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  flex: 1;
}

.gallery-slider__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.gallery-slider__dot.is-active {
  background: var(--brand);
  transform: scale(1.25);
}

.gallery-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  padding-top: 0.15rem;
}

.gallery-action {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.gallery-action:hover,
.gallery-action[aria-expanded="true"] {
  border-color: var(--brand);
  color: var(--brand-deep);
  background: var(--brand-soft);
}

.gallery-action svg {
  flex-shrink: 0;
}

.gallery-share {
  position: relative;
}

.gallery-share__menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  z-index: 20;
  min-width: 160px;
  display: grid;
  gap: 0.15rem;
  padding: 0.45rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gallery-share__menu[hidden] {
  display: none;
}

.gallery-share__menu a,
.gallery-share__menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.65rem 0.8rem;
  border: none;
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.gallery-share__menu a:hover,
.gallery-share__menu button:hover {
  background: var(--brand-soft);
  color: var(--brand-deep);
}

.gallery-actions__feedback {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ok);
  min-height: 1.2em;
}

/* Gallery fullscreen lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  background: rgba(14, 16, 20, 0.92);
  cursor: pointer;
}

.gallery-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1100px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.75rem 0.5rem;
  align-items: center;
  animation: lightboxIn 0.35s var(--ease) both;
}

@keyframes lightboxIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.gallery-lightbox__figure {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  position: relative;
  max-height: min(82vh, 860px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-lightbox__figure img {
  max-width: 100%;
  max-height: min(76vh, 800px);
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox__figure figcaption {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02em;
}

.gallery-lightbox__close {
  position: absolute;
  top: -0.35rem;
  right: 0;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.gallery-lightbox__close:hover {
  background: var(--brand);
  border-color: var(--brand);
}

.gallery-lightbox__nav {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  align-self: center;
}

.gallery-lightbox__nav:hover {
  background: var(--brand);
  border-color: var(--brand);
}

.gallery-lightbox__nav--prev {
  grid-column: 1;
  grid-row: 1;
}

.gallery-lightbox__nav--next {
  grid-column: 3;
  grid-row: 1;
}

.gallery-lightbox__counter {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  font-weight: 500;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .gallery-lightbox {
    padding: 0.75rem;
  }

  .gallery-lightbox__dialog {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto auto;
    width: 100%;
  }

  .gallery-lightbox__figure {
    grid-column: 1;
    grid-row: 1;
  }

  .gallery-lightbox__nav--prev,
  .gallery-lightbox__nav--next {
    position: absolute;
    top: 42%;
    grid-column: auto;
    grid-row: auto;
    z-index: 2;
  }

  .gallery-lightbox__nav--prev {
    left: 0.35rem;
  }

  .gallery-lightbox__nav--next {
    right: 0.35rem;
  }

  .gallery-lightbox__close {
    top: 0.15rem;
    right: 0.15rem;
  }

  .gallery-lightbox__counter {
    grid-column: 1;
  }
}

/* —— Sticky section nav —— */
.section-nav {
  position: sticky;
  top: 72px;
  z-index: 1;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.section-nav__list {
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  list-style: none;
  margin: 0;
  padding: 0;
  scrollbar-width: none;
}

.section-nav__list::-webkit-scrollbar {
  display: none;
}

.section-nav a {
  display: block;
  padding: 0.95rem 1rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.section-nav a:hover,
.section-nav a.is-active {
  color: var(--brand);
  border-color: var(--brand);
}

/* —— Main layout —— */
.tour-layout {
  padding: 2.75rem 0 4rem;
}

.tour-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 980px) {
  .tour-grid {
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 3rem;
  }
}

.tour-main > section {
  scroll-margin-top: 140px;
  margin-bottom: 3.25rem;
  animation: fadeUp 0.7s var(--ease) both;
	&#stimmen {
		margin-bottom: 0;
	}
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.65rem;
}

.section-title {
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}

/* Intro */
.intro-prose {
  font-size: 1.08rem;
  text-align: justify;
}

.intro-prose strong {
  color: var(--ink);
  font-weight: 600;
}

/* Route ribbon */
.route-ribbon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.15rem;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(135deg, var(--brand-soft), var(--paper-warm));
  border-left: 3px solid var(--brand);
  margin: 1.75rem 0;
}

.route-ribbon__stop {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.92rem;
}

.route-ribbon__arrow {
  color: var(--brand);
  opacity: 0.7;
  margin: 0 0.35rem;
  font-size: 0.85rem;
}

/* Vehicle note */
.vehicle-note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.vehicle-note__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-deep);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.vehicle-note strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.vehicle-note p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Highlights */
.highlights {
  display: grid;
  gap: 0;
  counter-reset: hl;
}

.highlight {
  display: grid;
  margin-bottom: .9rem;
}

@media (min-width: 640px) {
  .highlight {
    grid-template-columns: 22px 1fr;
  }
}

.highlight::before {
  content: ".";
  line-height: 10px;
  font-size: 30px;
  color: var(--brand);
}

.highlight h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.highlight p {
  margin-bottom: 0.5rem;
}

.highlight__perk {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--brand-deep);
  background: var(--brand-soft);
  padding: 0.35rem 0.7rem;
  border-radius: 2px;
}

/* Itinerary accordion */
.itinerary-toolbar {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-direction: column;
}

.link-btn {
  background: none;
  border: none;
  color: var(--brand-deep);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid var(--brand-deep);
  padding: 10px;
  border-radius: 3px;
}

.day {
  border: 1px solid var(--line);
  background: var(--white);
  margin-bottom: 0.65rem;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.day.is-open {
  border-color: rgba(228, 87, 46, 0.35);
  box-shadow: 0 10px 28px rgba(20, 18, 16, 0.06);
}

.day__toggle {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  text-align: left;
  padding: 1.1rem 1.2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  color: var(--ink);
}

.day__badge {
  font-size: 0.72rem;
  display: block;
  font-weight: 300;
}

.day__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 550;
}

.day__chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--ease), background 0.25s;
  margin-left: auto;
}

.day.is-open .day__chevron {
  transform: rotate(180deg);
  background: var(--brand-soft);
  border-color: transparent;
}

.day__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}

.day.is-open .day__body {
  grid-template-rows: 1fr;
}

.day__body-inner {
  overflow: hidden;
}

.day__content {
  padding: 0 1.2rem 1.35rem;
  color: var(--ink-soft);
  border-top: 1px solid transparent;
}

.day.is-open .day__content {
  border-top-color: var(--line);
  padding-top: 1.15rem;
  .section {
    padding: 0;
  }
}

.tour-plan-description {
    blockquote {
        border: 1px solid rgba(228, 87, 46, 0.35);
        margin-inline: 0;
        padding: 20px;
        border-radius: 5px;
    }
}

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

.day__place {
  font-size: 0.92rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--line);
}

/* Hotels */
.hotel-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.hotel-tab {
  padding: 0.65rem 1.05rem;
  border: 1px solid var(--line);
  background: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.hotel-tab.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.hotel-panel {
  display: none;
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.hotel-panel.is-active {
  display: block;
  animation: fadeUp 0.4s var(--ease);
}

.hotel-panel p {
  margin-bottom: 0.75rem;
}

.hotel-panel a {
  font-weight: 600;
}

/* Pricing */
.price-cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .price-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  transition: border-color 0.25s, transform 0.25s var(--ease);
  &:first-child {
      .star-rating::before {
          content: "\2605\2605\2605";
          color: var(--brand);
      }
  }
  &:nth-child(2) {
      .star-rating::before {
          content: "\2605\2605\2605\2605";
          color: var(--brand);
      }
  }
  &:nth-child(3) {
      .star-rating::before {
          content: "\2605\2605\2605\2605\2605";
          color: var(--brand);
      }
  }
}

.price-card:hover {
  border-color: rgba(228, 87, 46, 0.45);
  transform: translateY(-3px);
}

.price-card--featured {
  border-color: var(--brand);
  background: linear-gradient(180deg, var(--brand-soft), var(--white) 40%);
}

.price-card__tag {
  position: absolute;
  top: 0;
  right: 1rem;
  transform: translateY(-50%);
  background: var(--brand);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
}

.price-card__tier {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.price-card__period {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

.price-card__amount {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ink);
  line-height: 1;
}

.price-card__amount small {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.price-card .btn {
  margin-top: auto;
	background: #f4ebe4;
	  --line: #c8c0b8;
}

/* Includes */
.split-lists {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .split-lists {
    grid-template-columns: 1fr 1fr;
  }
}

.list-block {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  img {
    display: none;
  }
}

.list-block--in {
  border-top: 3px solid var(--ok);
}

.list-block--out {
  border-top: 3px solid #9a3412;
}

.list-block h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.checklist ul {
  list-style: none;
  margin: 0;
  padding: 0;
  img {
    display: none;
  }
}

.checklist li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.7rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  list-style: none;
}

.checklist li:last-child {
  border-bottom: none;
}

.checklist--in li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--ok);
  border-bottom: 2px solid var(--ok);
  transform: rotate(-45deg);
}

.checklist--out li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.95rem;
  width: 12px;
  height: 2px;
  background: #9a3412;
}

/* Notes */
.notes {
  background: var(--paper-warm);
  padding: 1.5rem;
  border: 1px solid var(--line);
}

.notes ul {
  margin: 0;
  padding-left: 1.15rem;
}

.notes li {
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

.notes li:last-child {
  margin-bottom: 0;
}

/* Why us */
.why-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 600px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-item {
  padding: 1.1rem;
  background: var(--white);
  border-bottom: 2px solid var(--brand);
}

.why-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.why-item span {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 180px 180px;
  gap: 0.65rem;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.gallery-grid figure:first-child {
  grid-row: 1 / 3;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-grid figure:hover img {
  transform: scale(1.06);
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 140px 140px;
  }
  .gallery-grid figure:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

/* Testimonials */
.reviews {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .reviews {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tour detail reviews slider — 1 slide mobile / 2 slides desktop */
.reviews-slider {
  --reviews-gap: 1rem;
  --reviews-per-view: 1;
  margin-top: 0.25rem;
}

@media (min-width: 800px) {
  .reviews-slider {
    --reviews-per-view: 2;
  }
}

.reviews-slider__viewport {
  overflow: hidden;
  width: 100%;
  @media (max-width: 767px) {
  	max-width: calc(100vw - 2.5rem);
  }
}

.reviews-slider__track {
  display: flex;
  gap: var(--reviews-gap);
  transition: transform 0.45s var(--ease);
  will-change: transform;
}

.reviews-slider__slide {
  box-sizing: border-box;
  flex: 0 0 calc(
    (100% - (var(--reviews-per-view) - 1) * var(--reviews-gap)) /
      var(--reviews-per-view)
  );
  min-width: 0;
  max-width: calc(
    (100% - (var(--reviews-per-view) - 1) * var(--reviews-gap)) /
      var(--reviews-per-view)
  );
  display: flex;
  flex-direction: column;
  height: auto;
}

.reviews-slider__slide .review__author {
  margin-top: auto;
  padding-top: 1rem;
}

.reviews-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.15rem;
}

.reviews-slider__btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s, border-color 0.2s, color 0.2s, opacity 0.2s;
}

.reviews-slider__btn:hover:not(:disabled) {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.reviews-slider__btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.reviews-slider__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  min-height: 12px;
}

.reviews-slider__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.reviews-slider__dot.is-active {
  background: var(--brand);
  transform: scale(1.25);
}

.review {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.4rem;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.review.is-hidden {
  display: none;
}

.review__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.65rem;
}

.review__stars {
  color: var(--brand);
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
}

.review__top .review__stars {
  margin-bottom: 0;
}

.review__type {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.review h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.review p {
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reviews--page {
  margin-top: 1.75rem;
  gap: 1.25rem;
}

.reviews--page .review {
  display: flex;
  flex-direction: column;
  padding: 1.65rem 1.5rem 1.5rem;
  height: 100%;
}

.reviews--page .review p {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
  flex: 1;
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.reviews--page .review h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.3rem);
  letter-spacing: -0.02em;
}

.review__author {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

.review__author span {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

.review__author a {
  color: inherit;
  text-decoration: none;
}

.review__author a:hover {
  color: var(--brand);
  text-decoration: underline;
}

/* Testimonials page — platforms + CTA */
.platform-links {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

@media (min-width: 700px) {
  .platform-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

.platform-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none !important;
  color: inherit;
  transition: border-color 0.25s, transform 0.3s var(--ease), box-shadow 0.3s;
}

a.platform-link:hover {
  border-color: rgba(228, 87, 46, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(20, 18, 16, 0.08);
  color: inherit;
}

.platform-link__logo {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
}

.platform-link__logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.platform-link__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.platform-link__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 550;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.platform-link__desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.platform-link__arrow {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--brand);
  transition: transform 0.25s var(--ease);
}

a.platform-link:hover .platform-link__arrow {
  transform: translateX(4px);
}

.testimonials-cta {
  position: relative;
  overflow: hidden;
}

.testimonials-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(228, 87, 46, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 70% at 100% 100%, rgba(255, 255, 255, 0.06), transparent 50%);
  pointer-events: none;
}

.testimonials-cta__inner {
  position: relative;
  display: grid;
  gap: 1.75rem;
  align-items: end;
}

@media (min-width: 800px) {
  .testimonials-cta__inner {
    grid-template-columns: 1.4fr auto;
    gap: 2.5rem;
  }
}

.testimonials-cta__copy .section-title {
  max-width: 22ch;
}

.testimonials-cta__copy .section-lead {
  margin-bottom: 0;
  max-width: 42ch;
}

.testimonials-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Map placeholder */
.map-box {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(228, 87, 46, 0.12), transparent),
    var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}

.map-box p {
  margin: 0.5rem 0 0;
  opacity: 0.75;
  font-size: 0.95rem;
}

/* —— Sticky booking panel —— */
.booking-panel {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  .tour-image {
    margin-top: -67px;
    iframe {
      border: 0;
      width: 100%;
    }
  }
}

@media (min-width: 980px) {
  .booking-panel {
    position: sticky;
    top: 140px;
    overflow: auto;
    max-height: calc(100vh - 155px);
  }
}

.booking-panel__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

.booking-panel h2 {
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
}

.booking-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.booking-stat {
  padding: 0.85rem;
  background: var(--paper);
  border: 1px solid var(--line);
}

.booking-stat span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.booking-stat strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 550;
}

.booking-panel__actions {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}

.booking-panel__fine {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.contact-mini {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.contact-mini strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.contact-mini a {
  display: block;
  margin-bottom: 0.2rem;
  text-decoration: none;
  color: var(--ink-soft);
}

.contact-mini a:hover {
  color: var(--brand);
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

.trust-pills span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.55rem;
  background: var(--brand-soft);
  color: var(--brand-deep);
}

/* Mobile booking bar */
.mobile-book {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.15rem;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(20, 18, 16, 0.1);
}

.mobile-book__price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
}

.mobile-book__price small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}

.mobile-book {
	display: none;
}

body {
  padding-bottom: 76px;
}

@media (min-width: 980px) {
  body {
    padding-bottom: 0;
  }
}



/* Home hero slider */
.home-hero-slider { position: relative; }
.home-hero-slide { display: none; position: absolute; inset: 0; height: 100%;}
.home-hero-slide.is-active { display: block; position: relative; }
.home-hero-slider__dots {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .5rem; z-index: 5;
}
.home-hero-slider__dot {
  width: 10px; height: 10px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.45); cursor: pointer; padding: 0;
}
.home-hero-slider__dot.is-active { background: #fff; }

/* Hotel list tables generated from ACF */
.hotel-list-table { width: 100%; }
.hotel-panel[hidden], .hotel-table-panel[hidden] { display: none !important; }

/* Social icons in footer */
.footer-social { display: flex; gap: .75rem; margin-top: 1rem; list-style: none; padding: 0; }
.footer-social a { display: inline-flex; }
.footer-social img { width: 24px; height: 24px; object-fit: contain; }

.footer-address-item { display: flex; gap: .75rem; }
.footer-address-item img { width: 22px; height: 22px; flex-shrink: 0; margin-top: .15rem; }
.footer-address-item h4 { margin: 0 0 .2rem; font-size: 1rem; font-family: var(--font-body); }

.nav-desktop .current-menu-item > a,
.nav-desktop .current_page_item > a { color: var(--brand);}

/* Custom logo */
.logo .custom-logo-link { display: inline-block; line-height: 0; }
.logo .custom-logo { height: 80px; width: auto; }

/* Mobile nav */
@media (max-width: 899px) {
  body.nav-open .nav-desktop {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.25rem 1.5rem 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow);
    z-index: 50;
    border-top: 1px solid var(--line);
  }
  .site-header__inner { position: relative; }
}

/* Guests slider without Slick */
.guest-slide { display: none; }
.guest-slide.is-active { display: block; }

/* Inquiry form wrap for shortcode output */
.inquiry-form-wrap form > p {
  display: grid;
  gap: 1rem;
}

.menu-item {
	position: relative;
}
.sub-menu {
	position: absolute;
	right: 0;
	top: 100%;
	background: #fff;
	width: 220px;
	padding: 10px;
	list-style: none;
    opacity: 0;
  	visibility: hidden;
}
.menu-item:hover > .sub-menu {
  	visibility: visible;
    opacity: 1;
}
.menu-item-has-children > a {
	position: relative;
    padding-right: 15px;
}

.menu-item-has-children  ul a {
	padding: 5px 15px 5px 10px;
    display: block;
    &:hover {
        background: var(--brand);
        color: var(--white);
    }
}
.menu-item-has-children > a::after {
	content: "";
      height: 5px;
      width: 5px;
      border-right: 1px solid;
      border-bottom: 1px solid;
      transform: rotate(45deg);
      position: absolute;
      top: 7px;
  	right: 0;
}
/* ========== Contact Page ========== */
.contact-hero {
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(228, 87, 46, 0.1), transparent 55%),
    linear-gradient(180deg, var(--paper-warm) 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 0 2.75rem;
}

.contact-hero__inner .breadcrumb {
  margin-bottom: 1.25rem;
}

.single-product .breadcrumb {
	margin-top: 15px;
	li:nth-child(2) a {
		pointer-events: none;
	}
}

.contact-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
  max-width: 18ch;
}

.contact-hero__lead {
  margin: 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-page {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.contact-page__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .contact-page__grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.75fr);
    gap: 3rem;
  }
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(20, 18, 16, 0.06);
  padding: 1.5rem 1.35rem 1.75rem;
}

@media (min-width: 720px) {
  .contact-form-card {
    padding: 2rem 2.1rem 2.15rem;
  }
}

.contact-form-card form,
.contact-form-card .wpcf7-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  margin: 0;
}

@media (min-width: 720px) {
  .contact-form-card form,
  .contact-form-card .wpcf7-form {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-card .wpcf7-form > p:has(textarea),
  .contact-form-card .wpcf7-form > p:has(.wpcf7-acceptance),
  .contact-form-card .wpcf7-form > p:has(input[type="submit"]),
  .contact-form-card .field--full {
    grid-column: 1 / -1;
  }
}

.contact-form-card label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

.contact-form-card input[type="text"],
.contact-form-card input[type="email"],
.contact-form-card input[type="tel"],
.contact-form-card textarea,
.contact-form-card select {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid #cfc7bf;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.98rem;
  border-radius: 2px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(228, 87, 46, 0.15);
}

.contact-form-card textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form-card input[type="submit"],
.contact-form-card .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11rem;
  padding: 0.85rem 1.4rem;
  border: 0;
  background: var(--brand);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form-card input[type="submit"]:hover,
.contact-form-card .wpcf7-submit:hover {
  background: var(--brand-deep);
}

.contact-aside__title {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  margin: 0 0 1.35rem;
}

.contact-channels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.contact-channel {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.15rem;
  background: var(--paper-warm);
  border: 1px solid var(--line);
}

.contact-channel__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
}

.contact-channel__icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.contact-channel__body {
  min-width: 0;
}

.contact-channel__title {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
  font-family: var(--font-body);
}

.contact-channel__value {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.98rem;
  line-height: 1.5;
  word-break: break-word;
}

a.contact-channel__value:hover {
  color: var(--brand);
}


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

.breadcrumb a:hover {
  color: var(--brand-deep);
}

.info-popup__toggle {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--brand);
}
.info-popup__toggle-text {
  display: flex;
  gap: 5px;
}
.info-popup__content {
  position: fixed;
  inset: 0;
  z-index: 10;
  background: rgba(0,0,0,.4);
  height: 100%;
  width: 100%;
  padding: 3rem;
  justify-content: center;
  z-index: 999;
  display: none;
  overflow: auto;
  &.is-open {
    display: flex;
    justify-content: center;
  }
  .split-lists {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin-inline: auto;
  }
}

.popup__content-open {
  .site-header {
    z-index: 9;
  }
}

.tour-table {
  border-collapse: collapse;
  width: 100%;
	position: relative;
  margin-top: -25px;
  td, th {
    padding: .5rem;
    text-align: left;
  }
  th {
    background: #eee;
    &:first-child {
        width: 25%;
    }
    &:nth-child(2) {
        width: 15%;
        text-align: center;
    }
    &:nth-child(3) {
        width: 60%;
    }
  }
  td {
    padding-block: 3px;
    border-bottom: 1px solid #eee;
    &:nth-child(2) {
        text-align: center;
    }
  }
}

/* ========== Kleingruppenreisen ========== */
.kg-facts {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

@media (min-width: 700px) {
  .kg-facts {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.kg-fact {
  padding: 1.15rem 0 0;
  border-top: 2px solid var(--brand);
}

.kg-fact__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 550;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.kg-fact__label {
  display: block;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
}

.kg-intro-body {
  max-width: 62ch;
  color: var(--ink-soft);
}

.kg-intro-body p:last-child {
  margin-bottom: 0;
}

.kg-note {
  margin: 1.5rem 0 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 52ch;
}

.kg-note::before {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: var(--ok);
  vertical-align: 0.05em;
}

.kg-trips {
  display: grid;
  gap: 1.75rem;
}

.kg-trip {
  display: grid;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.3s var(--ease);
}

.kg-trip:hover {
  border-color: rgba(228, 87, 46, 0.35);
  box-shadow: var(--shadow);
}

@media (min-width: 860px) {
  .kg-trip {
    grid-template-columns: minmax(200px, 0.72fr) minmax(0, 1.4fr);
  }
}

.kg-trip__media {
  min-height: 200px;
  background: var(--navy);
}

.kg-trip__media img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}

@media (min-width: 860px) {
  .kg-trip__media img {
    min-height: 100%;
  }
}

.kg-trip__body {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: 1.4rem 1.35rem 1.5rem;
}

.kg-trip__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.45rem;
}

.kg-trip__title {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  margin: 0 0 0.55rem;
}

.kg-trip__route {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

.kg-departures {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.kg-departure {
  display: grid;
  gap: 0.55rem;
  padding: 0.75rem 0.85rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
}

.kg-departure--limited {
  border-left-color: #c47a1f;
}

.kg-departure--full {
  border-left-color: var(--muted);
  opacity: 0.78;
}

.kg-departure__main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 1rem;
}

.kg-departure__dates {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}

.kg-departure__status {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.kg-departure--limited .kg-departure__status {
  color: #9a5e10;
}

.kg-departure--full .kg-departure__status {
  color: var(--muted);
}

.kg-departure__occupancy {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
}

.kg-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(107, 100, 94, 0.45);
}

.kg-dot.is-booked {
  background: var(--ok);
  border-color: var(--ok);
}

.kg-trip__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin-top: auto;
  padding-top: 0.35rem;
}

.kg-trip__price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 550;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.kg-trip__price span {
  display: inline-block;
  margin-left: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}

.kg-stats {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .kg-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.kg-stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 550;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.kg-stat__label {
  display: block;
  font-size: 0.95rem;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  .kg-trip,
  .kg-trip:hover {
    transition: none;
    box-shadow: none;
  }
}

/* —— Privatreise mit Chauffeur —— */
.ch-intro {
  max-width: 52rem;
}

.ch-intro__body {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.ch-intro__body p {
  margin-bottom: 1.15rem;
}

.ch-intro__body p:last-child {
  margin-bottom: 0;
}

.ch-intro__body strong {
  color: var(--ink);
  font-weight: 600;
}

.ch-fleet {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.ch-booking .contact-form-card .wpcf7-form {
  label {
    display: block;
  }
  > p {
    display: grid;
    gap: 2rem;
    > br {
      display: none;
    }
  }
}

@media (min-width: 720px) {
  .ch-booking .contact-form-card .wpcf7-form {
    grid-template-columns: 1fr;
  }
  .ch-booking .contact-form-card .wpcf7-form > p {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 640px) {
  .ch-fleet {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ch-fleet {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.ch-vehicle {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.ch-vehicle:hover {
  border-color: rgba(228, 87, 46, 0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.ch-vehicle__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--paper-warm);
}

.ch-vehicle__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.ch-vehicle:hover .ch-vehicle__media img {
  transform: scale(1.04);
}

.ch-vehicle__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 1.35rem 1.4rem;
  flex: 1;
}

.ch-vehicle__title {
  font-size: 1.25rem;
  margin: 0;
  letter-spacing: -0.02em;
}

.ch-vehicle__specs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.ch-vehicle__specs li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.ch-vehicle__specs li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.ch-vehicle__spec-label {
  color: var(--muted);
}

.ch-vehicle__spec-value {
  color: var(--ink);
  font-weight: 550;
  text-align: right;
}

.ch-vehicle__book {
  margin-top: auto;
  align-self: flex-start;
}

.ch-booking {
  scroll-margin-top: 5.5rem;
}

.ch-booking__header {
  max-width: 40rem;
  margin-bottom: 1.75rem;
  margin-inline: auto;
  text-align: center;
}

.ch-booking__form {
  max-width: 52rem;
  margin-inline: auto;
}

.ch-booking .contact-form-card {
  animation: riseIn 0.8s var(--ease) both;
}

@media (prefers-reduced-motion: reduce) {
  .ch-vehicle,
  .ch-vehicle:hover,
  .ch-vehicle__media img,
  .ch-vehicle:hover .ch-vehicle__media img {
    transition: none;
    transform: none;
    box-shadow: none;
  }
}


@media screen and (max-width: 767px) {
	 .sub-menu {
		display: none;
		 position: relative;
		 top: 0;
		 width: 100%;
		 opacity: 1;
  		visibility: visible;
	}
	.sub-menu.active {
		display: block;
	}
	.menu-item-has-children > a {
		display: block;
		&::after {
			display: none;
		}
	}
	.menu-dropdown {
		position: absolute;
		right: 0;
		top: 0px;
		height: 24px;
		width: 24px;
		&:after {
			content: "";
			  height: 9px;
			  width: 9px;
			  border-right: 1px solid;
			  border-bottom: 1px solid;
			  transform: rotate(45deg);
			  position: absolute;
			  top: 8px;
			  right: 10px;
		}
	}
	.menu-item-has-children.active .menu-dropdown {
		&:after {
			transform: rotate(-45deg);
		}
	}
}
.day__body {
	.section {
		padding: 0;
	}
}

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

#backToTop:hover {
    background: var(--brand-deep);
    transform: translateY(0) scale(1.08);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vehicle-note__icon {
	display: none;
}
.hotel-list-table {
	margin-top: 0;
}

@media screen and (max-width: 767px) {
	.inquiry-form-wrap form {
		padding: 10px;
	}
	.header-cta {
		transform: translateX(-50%) !important;
		bottom: 10px;
		top: auto;
		left: 50%;
	}
	#highlights .highlight {
		grid-template-columns: 22px 1fr;
	}
	.hotel-list-table {
		margin-top: 0;
	}
}

@media only print {
	.qlwapp__container.qlwapp__container--bottom-left,
	.header-cta,
	.site-header__inner > nav,
	.mobile-book,
	.booking-panel .tour-image,
	#anfrage,
	.gallery-slider__controls,
	.menu-toggle,
	.info-popup__toggle-text,
	.gallery-actions,
	.section-nav,
	.itinerary-toolbar .link-btn,
	.hotel-tabs,
	.price-card .btn {
		display: none !important;
	}
	.day__body {
		grid-template-rows: 1fr;
	}
	.hotel-panel {
		display: block !important;
	}
}

/* ========== Über uns / About ========== */
.ab-welcome {

}

.ab-prose {
	color: var(--ink-soft);
}

.ab-prose p:last-child {
	margin-bottom: 0;
}

.ab-note {
	margin: 2rem 0 0;
	padding: 1rem 0 0;
	border-top: 1px solid var(--line);
	font-size: 0.95rem;
	color: var(--muted);
	max-width: 68ch;
	line-height: 1.6;
}

.ab-pillars {
	display: grid;
	gap: 0;
	margin-top: 0.5rem;
}

@media (min-width: 900px) {
	.ab-pillars {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
		margin-top: 1.5rem;
	}
}

.ab-pillar {
	padding: 1.75rem 0;
	border-top: 2px solid var(--brand);
}

@media (min-width: 900px) {
	.ab-pillar {
		padding: 1.5rem 0 0;
	}
}

.ab-pillar__num {
	display: block;
	font-family: var(--font-display);
	font-size: 1.75rem;
	color: var(--brand);
	line-height: 1;
	margin-bottom: 0.85rem;
}

.ab-pillar__title {
	font-size: clamp(1.15rem, 2vw, 1.35rem);
	margin-bottom: 0.75rem;
	letter-spacing: -0.01em;
}

.ab-pillar__text {
	margin: 0;
	color: var(--ink-soft);
	max-width: 42ch;
}

.ab-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0;
	counter-reset: none;
}

@media (min-width: 900px) {
	.ab-steps {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	}
}

.ab-step {
	display: grid;
	grid-template-columns: 3rem 1fr;
	gap: 1rem;
	align-items: start;
	padding: 1.75rem 0;
	border-bottom: 1px solid var(--line);
}

.ab-step:last-child {
	border-bottom: none;
}

@media (min-width: 900px) {
	.ab-step {
		grid-template-columns: 1fr;
		gap: 1.15rem;
		padding: 0;
		border-bottom: none;
		border-top: 2px solid var(--brand);
		padding-top: 1.5rem;
	}
}

.ab-step__num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	font-family: var(--font-display);
	font-size: 1.35rem;
	color: var(--white);
	background: var(--brand);
	line-height: 1;
}

@media (min-width: 900px) {
	.ab-step__num {
		width: 3rem;
		height: 3rem;
		font-size: 1.5rem;
	}
}

.ab-step__eyebrow {
	display: block;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--brand);
	margin-bottom: 0.4rem;
}

.ab-step__title {
	font-size: clamp(1.1rem, 2vw, 1.3rem);
	margin-bottom: 0.55rem;
	letter-spacing: -0.01em;
}

.ab-step__body p {
	margin: 0 0 0.85rem;
	color: var(--ink-soft);
	max-width: 42ch;
}

.ab-step__body p:last-child {
	margin-bottom: 0;
}

.ab-step__link {
	display: inline-block;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--brand-deep);
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.ab-step__link:hover {
	color: var(--brand);
}
.gray-star {
    color: gray;
}

.single-product .hide-on-product-detail,
.hidden-field {
    display: none;
}

.cf7-cf-turnstile {
    padding-left: 2.1rem;
    + p {
        display: none !important;
    }
}

@media (max-width: 767px) {
	.tour-aside {
    	order: -1;
    }
    .tour-aside .hotel-table-panel {
        display: none;
    }
    .booking-panel .tour-image iframe {
        margin-bottom: -25px;
    }
    .logo .custom-logo {
        height: 30px;
    }
    .home-hero {
         min-height: 500px;
    }
}


.whatsapp-button {
    position: fixed;
    right: 24px;
    bottom: 96px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    border-radius: 50%;

    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);

    z-index: 9999;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.whatsapp-button:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: #fff;
}

@media (max-width: 767px) {
    .whatsapp-button {
        width: 52px;
        height: 52px;
        right: 16px;
        bottom: 96px;
    }

    .whatsapp-icon {
        width: 29px;
        height: 29px;
    }
}