:root {
  --ink: #071f35;
  --ink-2: #0c304d;
  --lake: #0a6f94;
  --lake-2: #118db5;
  --aqua: #d8eef5;
  --sand: #eee3cf;
  --ivory: #fbf7ef;
  --paper: #ffffff;
  --gold: #c99839;
  --muted: #5b6b7b;
  --line: rgba(7, 31, 53, .14);
  --glass: rgba(255, 255, 255, .82);
  --dark-glass: rgba(7, 31, 53, .78);
  --shadow: 0 28px 70px rgba(7, 31, 53, .18);
  --shadow-soft: 0 16px 36px rgba(7, 31, 53, .11);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1360px;
  --header: 82px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f7f1e5 0%, #fff 42%, #f6f2ea 100%);
  line-height: 1.65;
  min-width: 320px
}

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

a {
  color: inherit
}

button,
input,
select,
textarea {
  font: inherit
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 12px;
  z-index: 999
}

.skip-link:focus {
  left: 12px
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header);
  background: rgba(251, 247, 239, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line)
}

.header-inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -.035em
}

.logo-text {
  font-size: clamp(1.05rem, 1.4vw, 1.34rem)
}

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

.nav a {
  text-decoration: none;
  font-weight: 800;
  color: var(--ink);
  border-radius: 999px;
  padding: 11px 13px;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease)
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  background: rgba(10, 111, 148, .12);
  color: var(--lake);
  transform: translateY(-1px)
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px
}

.header-phone {
  text-decoration: none;
  font-weight: 800;
  color: var(--ink)
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: var(--ink);
  color: white;
  cursor: pointer
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px auto;
  transition: .25s var(--ease)
}

.menu-button[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.menu-button[aria-expanded=true] span:nth-child(2) {
  opacity: 0
}

.menu-button[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background: var(--lake);
  color: white;
  text-decoration: none;
  font-weight: 900;
  padding: 13px 22px;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(10, 111, 148, .24);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease)
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  background: #075f82;
  box-shadow: 0 20px 42px rgba(10, 111, 148, .3)
}

.btn-small {
  min-height: 44px;
  padding: 10px 16px
}

.btn-light {
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .52), 0 14px 28px rgba(7, 31, 53, .12)
}

.btn-light:hover {
  background: #fff;
  color: var(--ink)
}

.btn-gold {
  background: var(--gold);
  color: #172232;
  box-shadow: 0 14px 30px rgba(201, 152, 57, .28)
}

.btn-block {
  width: 100%
}

.btn-muted {
  background: #d9dee5;
  color: #65707c;
  box-shadow: none
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 900
}

.section {
  padding: clamp(70px, 8vw, 118px) 0
}

.section-soft {
  background: linear-gradient(180deg, #f7f1e5, #fff)
}

.section-head {
  display: grid;
  gap: 16px;
  max-width: 850px;
  margin-bottom: 34px
}

.section-head.center {
  text-align: center;
  margin-inline: auto
}

.lead,
.section-head p {
  font-size: clamp(1.05rem, 1.55vw, 1.24rem);
  color: #385065
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -.05em
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 6vw, 6.4rem)
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.25rem, 4.1vw, 4.25rem)
}

h3 {
  font-size: clamp(1.22rem, 2vw, 1.72rem)
}

p {
  margin: 0
}

.hero-home {
  position: relative;
  min-height: calc(100svh - var(--header));
  display: flex;
  align-items: center;
  padding: clamp(58px, 8vw, 105px) 0
}

.page-bg-hero::before,
.page-hero::before,
.index-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2
}

.page-bg-hero::before {
  background-image: linear-gradient(90deg, rgba(7, 31, 53, .82), rgba(7, 31, 53, .58), rgba(7, 31, 53, .28)), url("../img/hero-index.webp")
}

.hero-home::after,
.page-hero::after,
.index-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none
}

.hero-home::after {
  background: linear-gradient(180deg, rgba(7, 31, 53, .12), rgba(7, 31, 53, .24))
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 430px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center
}

.hero-card-glass {
  max-width: 850px;
  background: rgba(7, 31, 53, .54);
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 52px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px)
}

.hero-copy h1,
.hero-copy p {
  color: #fff
}

.hero-copy .lead {
  color: rgba(255, 255, 255, .88);
  margin-top: 22px
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px
}

.trust-row span {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800
}

.booking-card {
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .64);
  border-radius: 30px;
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px)
}

.booking-card-compact {
  box-shadow: var(--shadow-soft)
}

.booking-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--ink);
  flex-wrap: wrap
}

.booking-price small {
  color: var(--lake);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em
}

.booking-price strong {
  font-size: 2.2rem;
  letter-spacing: -.05em
}

.booking-price span {
  font-weight: 700;
  color: #263c50
}

.booking-field {
  display: grid;
  gap: 8px;
  margin-bottom: 12px
}

.booking-field label {
  font-weight: 900;
  color: var(--ink);
  font-size: .9rem
}

.control-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: #e8edf2;
  color: var(--ink);
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(7, 31, 53, .05)
}

.control-pill select,
.control-pill input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  min-height: 50px
}

.booking-benefits {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.booking-benefits p {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  row-gap: 4px;
  margin: 0;
  align-items: start;
}

.booking-benefits__icon {
  grid-row: 1 / 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;

  flex-shrink: 0;
}

.booking-benefits__icon img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

.booking-benefits strong {
  color: #0b3147;
  font-size: 0.98rem;
  line-height: 1.3;
}

.booking-benefits small {
  color: rgba(15, 32, 50, 0.68);
  font-size: 0.9rem;
  line-height: 1.45;
}

.index-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 9vw, 132px) 0
}

.index-panel::after {
  background: linear-gradient(90deg, rgba(7, 31, 53, .82), rgba(7, 31, 53, .62))
}

.light-panel::after {
  background: linear-gradient(90deg, rgba(251, 247, 239, .92), rgba(251, 247, 239, .76), rgba(251, 247, 239, .52))
}

.dark-panel h2,
.dark-panel h3,
.dark-panel p,
.dark-panel li {
  color: #fff
}

.dark-panel .eyebrow {
  color: #f2c974
}

.index-panel-overview::before {
  background-image: url("../img/hero-index_2.webp")
}

.index-panel-program::before {
  background-image: url("../img/hero-index_3.webp")
}

.index-panel-gallery::before {
  background-image: url("../img/hero-index_4.webp")
}

.index-panel-excursions::before {
  background-image: url("../img/hero-index_6.webp")
}

.index-panel-reviews::before {
  background-image: url("../img/hero-index_7.webp")
}

.panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center
}

.panel-grid.reverse {
  grid-template-columns: minmax(360px, .85fr) minmax(0, 1fr)
}

.panel-grid.reverse .panel-copy {
  order: 2
}

.panel-copy {
  max-width: 760px
}

.panel-copy p {
  font-size: 1.14rem
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
}

.metric-grid article,
.content-card,
.side-info,
.timeline-card,
.review-card,
.info-card,
.contact-card,
.contact-form,
.table-card,
.updated-card,
.legal-card {
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px)
}

.metric-grid article {
  padding: 24px
}

.metric-grid strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2.45rem;
  color: var(--ink)
}

.metric-grid span {
  font-weight: 800;
  color: #486075
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.timeline-card {
  padding: 26px;
  color: var(--ink)
}

.timeline-card h3,
.timeline-card p {
  color: var(--ink)
}

.timeline-card small {
  display: inline-block;
  margin-top: 16px;
  font-weight: 900;
  color: var(--lake)
}

.day-number {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1
}

.split-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .55fr);
  gap: 24px;
  align-items: stretch
}

.content-card,
.side-info {
  padding: clamp(26px, 4vw, 44px)
}

.content-card h2,
.content-card p,
.content-card li,
.side-info h3,
.side-info p {
  color: var(--ink)
}

.clean-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px
}

.clean-list li {
  position: relative;
  padding-left: 28px
}

.clean-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0c8a61;
  font-weight: 900
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.gallery-tile {
  position: relative;
  display: block;
  border-radius: 26px;
  overflow: hidden;
  min-height: 260px;
  text-decoration: none;
  box-shadow: var(--shadow-soft)
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(7, 31, 53, .72))
}

.gallery-tile span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-weight: 900;
  font-size: 1.25rem
}

.price-board {
  background: rgba(255, 255, 255, .92);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow)
}

.price-board div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  font-weight: 800
}

.price-board div:last-child {
  border-bottom: 0
}

.price-board strong {
  color: var(--lake)
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.review-card {
  padding: 26px
}

.review-card h3,
.review-card p {
  color: var(--ink)
}

.review-card time {
  color: var(--muted);
  font-weight: 800
}

.stars {
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: .08em;
  margin-bottom: 10px
}

.tactile {
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), filter .28s var(--ease)
}

.tactile:hover,
.tactile:focus-within {
  transform: translateY(-6px) scale(1.012);
  box-shadow: 0 32px 80px rgba(7, 31, 53, .22)
}

.page-hero {
  position: relative;
  min-height: 440px;
  padding: clamp(78px, 10vw, 132px) 0;
  display: flex;
  align-items: end;
  overflow: hidden
}

.page-hero::after {
  background: linear-gradient(90deg, rgba(7, 31, 53, .86), rgba(7, 31, 53, .58), rgba(7, 31, 53, .28))
}

.hero-about::before {
  background-image: url("../img/hero-about.webp")
}

.hero-gallery::before {
  background-image: url("../img/allgaeu-landscape.jpg")
}

.hero-interesting::before {
  background-image: url("../img/bodensee-hero.jpg")
}

.hero-excursions::before {
  background-image: url("../img/bodenskoe_ozero_63.jpg")
}

.hero-contact::before {
  background-image: url("../img/bodenskoe_ozero_63.jpg")
}

.hero-legal::before {
  background-image: url("../img/bodenskoe_ozero_1.jpg")
}

.page-hero-card {
  max-width: 900px;
  background: rgba(7, 31, 53, .55);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-xl);
  padding: clamp(26px, 4vw, 46px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px)
}

.page-hero-card h1,
.page-hero-card p {
  color: #fff
}

.page-hero-card p:not(.eyebrow) {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, .86)
}

.split-elegant,
.booking-section,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .75fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start
}

.split-elegant p {
  margin-top: 16px;
  color: #3c5267
}

.image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow)
}

.image-card img {
  width: 100%;
  height: 800px;
  object-fit: cover
}

.card-grid {
  display: grid;
  gap: 20px
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr)
}

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

.info-card {
  padding: 28px
}

.info-card p,
.info-card li {
  color: #3c5267
}

.destination-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line)
}

.destination-card img {
  height: 250px;
  width: 100%;
  object-fit: cover
}

.destination-card div {
  padding: 24px
}

.destination-card p {
  color: #465b6e
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.gallery-card {
  position: relative;
  border: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 310px;
  padding: 0;
  cursor: pointer;
  background: #ddd;
  box-shadow: var(--shadow-soft);
  text-align: left
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 31, 53, .78))
}

.gallery-card span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-weight: 900;
  font-size: 1.15rem
}

.table-card {
  overflow: auto
}

.table-card table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden
}

.table-card th,
.table-card td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left
}

.table-card th {
  background: var(--ink);
  color: #fff
}

.table-card tr:last-child td {
  border-bottom: 0
}

.contact-card,
.contact-form {
  padding: 30px
}

.contact-card p {
  margin-top: 14px;
  color: #40566a
}

.form-grid {
  display: grid;
  gap: 16px
}

.form-grid.two {
  grid-template-columns: repeat(2, 1fr)
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px
}

.field label {
  font-weight: 900
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  padding: 14px 15px;
  outline: none
}

.field textarea {
  resize: vertical
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--lake);
  box-shadow: 0 0 0 4px rgba(10, 111, 148, .12)
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0;
  color: #40566a
}

.consent input {
  margin-top: 6px
}

.form-note {
  font-size: .92rem;
  color: var(--muted);
  margin-top: 12px
}

.booking-summary {
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #e8f4f8, #fff);
  border: 1px solid var(--line);
  margin-bottom: 20px
}

.booking-summary h3 {
  margin-bottom: 10px
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px
}

.summary-grid span {
  display: block;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
  text-transform: uppercase
}

.summary-grid strong {
  display: block;
  color: var(--ink)
}

.legal-section {
  background: #fff
}

.legal-container {
  max-width: 980px
}

.updated-card {
  padding: 18px 22px;
  margin-bottom: 18px;
  background: #f7f1e5
}

.legal-card {
  padding: clamp(24px, 4vw, 42px);
  background: #fff
}

.legal-card h2 {
  font-family: Manrope, sans-serif;
  font-size: 1.55rem;
  letter-spacing: -.03em;
  margin: 26px 0 10px
}

.legal-card h2:first-child {
  margin-top: 0
}

.legal-card p {
  color: #3d5368;
  margin: 10px 0
}

.site-footer {
  background: var(--ink);
  color: #d9e3ec;
  padding: 48px 0 26px
}

.footer-cta {
  margin-bottom: 44px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-xl)
}

.footer-cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 3rem)
}

.footer-cta p {
  color: #d9e3ec
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr 1fr;
  gap: 30px
}

.footer-logo {
  color: #fff
}

.footer-brand p,
.footer-col p {
  color: #bdcbd7
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 9px
}

.footer-col h3 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0
}

.footer-col a {
  color: #d9e3ec;
  text-decoration: none
}

.footer-col a:hover {
  text-decoration: underline
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 34px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: #9eb0bf;
  font-size: .92rem
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px
}

.modal.is-open {
  display: flex
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 31, 53, .68);
  backdrop-filter: blur(5px)
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px
}

.modal-panel-large {
  width: min(100%, 780px)
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #eef2f5;
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer
}

.availability-status {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 20px;
  margin: 18px 0
}

.availability-status.available {
  background: #e9f8f1;
  color: #075f43
}

.availability-status.unavailable {
  background: #fff0ed;
  color: #a43723
}

.availability-status strong {
  font-size: 1.1rem
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px
}

.loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(7, 31, 53, .66);
  display: none;
  align-items: center;
  justify-content: center
}

.loader-overlay.is-visible {
  display: flex
}

.loader-box {
  background: #fff;
  border-radius: 24px;
  padding: 28px 34px;
  display: grid;
  justify-items: center;
  gap: 14px;
  box-shadow: var(--shadow)
}

.loader {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 5px solid #d8e3ea;
  border-top-color: var(--lake);
  animation: spin 1s linear infinite
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.lightbox-panel {
  width: min(100%, 960px);
  background: #101d2a
}

.lightbox-img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 18px
}

.lightbox-caption {
  color: #fff;
  margin-top: 14px;
  font-weight: 800;
  text-align: center
}

@media(max-width:1120px) {
  .header-phone {
    display: none
  }

  .nav {
    position: fixed;
    left: 22px;
    right: 22px;
    top: calc(var(--header) + 12px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(251, 247, 239, .98);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 14px;
    box-shadow: var(--shadow)
  }

  .nav.is-open {
    display: flex
  }

  .menu-button {
    display: block
  }

  .header-actions .btn-small {
    display: none
  }

  .hero-layout,
  .panel-grid,
  .panel-grid.reverse,
  .split-card,
  .split-elegant,
  .booking-section,
  .contact-layout {
    grid-template-columns: 1fr
  }

  .panel-grid.reverse .panel-copy {
    order: 0
  }

  .timeline,
  .review-grid,
  .gallery-strip,
  .card-grid.three,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .hero-card-glass {
    max-width: 100%
  }
}

@media(max-width:720px) {
  .container {
    width: min(100% - 28px, var(--container))
  }

  .hero-home {
    padding: 34px 0 54px
  }

  .hero-card-glass,
  .booking-card,
  .page-hero-card {
    border-radius: 24px
  }

  .trust-row span {
    width: 100%
  }

  .timeline,
  .review-grid,
  .gallery-strip,
  .card-grid.three,
  .card-grid.two,
  .gallery-grid,
  .footer-grid,
  .form-grid.two,
  .metric-grid,
  .summary-grid {
    grid-template-columns: 1fr
  }

  .page-hero {
    min-height: 360px
  }

  .footer-cta {
    align-items: flex-start;
    flex-direction: column
  }

  .gallery-tile,
  .gallery-card {
    min-height: 250px
  }

  .modal {
    padding: 12px
  }

  .modal-panel {
    border-radius: 22px;
    padding: 22px
  }
}
/* new1 */
.panel-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.panel-feature-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.25;
  backdrop-filter: blur(8px);
}

@media (max-width: 640px) {
  .panel-feature-list {
    gap: 8px;
  }

  .panel-feature-list span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
.timeline-label {
  margin: 0 0 10px;
  color: var(--accent, #b18435);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-card p + p {
  margin-top: 14px;
}

.timeline-points {
  display: grid;
  gap: 10px;
  margin: 22px 0 20px;
  padding: 0;
  list-style: none;
}

.timeline-points li {
  position: relative;
  padding-left: 24px;
  color: rgba(15, 32, 50, 0.88);
  line-height: 1.55;
}

.timeline-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b4f71, #b18435);
  box-shadow: 0 0 0 4px rgba(177, 132, 53, 0.12);
}

.program-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  margin-top: 32px;
  padding: 22px 24px;
  border: 1px solid rgba(15, 32, 50, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(239, 245, 247, 0.9)),
    #ffffff;
  box-shadow: 0 16px 38px rgba(15, 32, 50, 0.08);
  color: #102033;
}

.program-note strong {
  color: #0b3147;
  white-space: nowrap;
}

.program-note span {
  color: rgba(15, 32, 50, 0.78);
  line-height: 1.6;
}

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

  .program-note strong {
    white-space: normal;
  }
}
.gallery-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: end;
}

.gallery-head p:last-child {
  max-width: 760px;
  margin: 0;
  color: rgba(15, 32, 50, 0.76);
  line-height: 1.75;
}

.gallery-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 34px 0 28px;
}

.gallery-info-card {
  min-height: 160px;
  padding: 24px;
  border: 1px solid rgba(15, 32, 50, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 245, 247, 0.92)),
    #ffffff;
  box-shadow: 0 16px 40px rgba(15, 32, 50, 0.08);
}

.gallery-info-card strong {
  display: block;
  margin-bottom: 12px;
  color: #0b3147;
  font-size: 1.05rem;
}

.gallery-info-card span {
  display: block;
  color: rgba(15, 32, 50, 0.72);
  line-height: 1.65;
}

.gallery-tile {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 28px;
  color: #ffffff;
  box-shadow: 0 22px 50px rgba(15, 32, 50, 0.18);
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 21, 34, 0.08) 0%, rgba(5, 21, 34, 0.22) 38%, rgba(5, 21, 34, 0.86) 100%);
  z-index: 1;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.gallery-tile:hover img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}

.gallery-tile span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 7px;
}

.gallery-tile span strong {
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.2;
}

.gallery-tile span small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.45;
}

.gallery-bottom-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding: 26px 28px;
  border: 1px solid rgba(15, 32, 50, 0.12);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(11, 79, 113, 0.08), rgba(177, 132, 53, 0.08)),
    #ffffff;
  box-shadow: 0 18px 44px rgba(15, 32, 50, 0.08);
}

.gallery-bottom-note strong {
  display: block;
  margin-bottom: 8px;
  color: #0b3147;
  font-size: 1.1rem;
}

.gallery-bottom-note p {
  max-width: 760px;
  margin: 0;
  color: rgba(15, 32, 50, 0.72);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .gallery-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-intro-grid {
    grid-template-columns: 1fr;
  }

  .gallery-bottom-note {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .gallery-tile,
  .gallery-tile img {
    min-height: 320px;
  }

  .gallery-tile span {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .gallery-bottom-note {
    padding: 22px;
  }

  .gallery-bottom-note .btn {
    width: 100%;
  }
}
.excursion-price-list {
  display: grid;
  gap: 16px;
}

.excursion-price-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  min-height: 112px;
  padding: 22px 24px;
  border: 1px solid rgba(12, 39, 60, 0.12);
  border-radius: 24px;
  color: #102033;
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 248, 0.92)),
    #ffffff;
  box-shadow: 0 16px 42px rgba(12, 39, 60, 0.08);
  overflow: hidden;
  transform: translateY(0) scale(1);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.excursion-price-row::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, #0b4f71, #b18435);
  opacity: 0.95;
}

.excursion-price-row::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(177, 132, 53, 0.16), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(11, 79, 113, 0.13), transparent 36%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.excursion-price-row:hover,
.excursion-price-row:focus-visible {
  transform: translateY(-4px) scale(1.025);
  border-color: rgba(177, 132, 53, 0.42);
  box-shadow: 0 26px 64px rgba(12, 39, 60, 0.17);
  outline: none;
  z-index: 2;
}

.excursion-price-row:hover::after,
.excursion-price-row:focus-visible::after {
  opacity: 1;
}

.excursion-price-row__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
}

.excursion-price-row__eyebrow {
  color: #b18435;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.excursion-price-row__content strong {
  color: #0b3147;
  font-size: clamp(1.15rem, 1vw, 1.45rem);
  line-height: 1.15;
}

.excursion-price-row__content small {
  max-width: 720px;
  color: rgba(15, 32, 50, 0.72);
  font-size: 0.95rem;
  line-height: 1.5;
}

.excursion-price-row__price {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 52px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #0b3147;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(11, 49, 71, 0.18);
}

.excursion-price-row__arrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(177, 132, 53, 0.14);
  color: #0b3147;
  font-size: 1.35rem;
  font-weight: 900;
  transition: transform 0.28s ease, background 0.28s ease;
}

.excursion-price-row:hover .excursion-price-row__arrow,
.excursion-price-row:focus-visible .excursion-price-row__arrow {
  transform: translateX(4px);
  background: rgba(177, 132, 53, 0.24);
}

.excursion-price-row--lindau::before {
  background: linear-gradient(180deg, #0b4f71, #4f9fc5);
}

.excursion-price-row--stgallen::before {
  background: linear-gradient(180deg, #143b58, #7a9f71);
}

.excursion-price-row--bregenz::before {
  background: linear-gradient(180deg, #0b3147, #b18435);
}

.excursion-price-row--mainau::before {
  background: linear-gradient(180deg, #476f4d, #d59b7b);
}

.excursion-price-row--package::before {
  background: linear-gradient(180deg, #0b3147, #b18435, #0b4f71);
}

@media (max-width: 760px) {
  .excursion-price-row {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 22px;
  }

  .excursion-price-row__content {
    grid-column: 1 / -1;
  }

  .excursion-price-row__price {
    justify-self: start;
  }

  .excursion-price-row__arrow {
    justify-self: end;
  }
}
/* Compact desktop version for excursion block */
@media (min-width: 1024px) {
  .index-panel-excursions {
    min-height: auto;
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .index-panel-excursions .panel-grid {
    grid-template-columns: minmax(420px, 0.95fr) minmax(520px, 0.9fr);
    gap: 48px;
    align-items: center;
  }

  .index-panel-excursions .panel-copy {
    max-width: 620px;
  }

  .index-panel-excursions .eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.16em;
  }

  .index-panel-excursions .panel-copy h2 {
    max-width: 620px;
    font-size: clamp(2.35rem, 3.1vw, 4.1rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  .index-panel-excursions .panel-copy p {
    max-width: 620px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .index-panel-excursions .btn {
    min-height: 48px;
    padding: 13px 24px;
    font-size: 0.95rem;
  }

  .excursion-price-list {
    max-width: 540px;
    gap: 10px;
  }

  .excursion-price-row {
    min-height: 86px;
    padding: 15px 18px 15px 22px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 14px;
    border-radius: 20px;
  }

  .excursion-price-row:hover,
  .excursion-price-row:focus-visible {
    transform: translateY(-3px) scale(1.015);
  }

  .excursion-price-row::before {
    width: 5px;
  }

  .excursion-price-row__content {
    gap: 4px;
  }

  .excursion-price-row__eyebrow {
    font-size: 0.67rem;
    letter-spacing: 0.1em;
  }

  .excursion-price-row__content strong {
    font-size: 1.02rem;
    line-height: 1.15;
  }

  .excursion-price-row__content small {
    max-width: 330px;
    font-size: 0.82rem;
    line-height: 1.38;
  }

  .excursion-price-row__price {
    min-width: 68px;
    min-height: 42px;
    padding: 8px 12px;
    font-size: 1rem;
  }

  .excursion-price-row__arrow {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}
.gallery-bottom-note {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.gallery-bottom-note > div {
  max-width: 820px;
}

.gallery-bottom-note .btn {
  margin-top: 22px;
  align-self: center;
}
/* =====================================================
   FIX: compact excursions block on desktop and mobile
   Put this at the very end of styles.css
===================================================== */

.index-panel-excursions {
  padding-top: 72px !important;
  padding-bottom: 72px !important;
  min-height: auto !important;
}

.index-panel-excursions .panel-grid,
.index-panel-excursions .panel-grid.reverse {
  align-items: center !important;
  gap: 42px !important;
}

.index-panel-excursions .panel-copy {
  max-width: 620px !important;
}

.index-panel-excursions .panel-copy .eyebrow {
  margin-bottom: 14px !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.16em !important;
}

.index-panel-excursions .panel-copy h2 {
  max-width: 620px !important;
  margin-bottom: 16px !important;
  font-size: clamp(2.1rem, 3.2vw, 3.9rem) !important;
  line-height: 1 !important;
  letter-spacing: -0.055em !important;
}

.index-panel-excursions .panel-copy p {
  max-width: 580px !important;
  margin-bottom: 20px !important;
  font-size: 1rem !important;
  line-height: 1.55 !important;
}

.index-panel-excursions .panel-copy .btn {
  min-height: 46px !important;
  padding: 12px 24px !important;
  font-size: 0.95rem !important;
}

.index-panel-excursions .excursion-price-list {
  width: 100% !important;
  max-width: 560px !important;
  gap: 10px !important;
}

.index-panel-excursions .excursion-price-row {
  min-height: 82px !important;
  padding: 14px 16px 14px 20px !important;
  grid-template-columns: minmax(0, 1fr) auto auto !important;
  gap: 12px !important;
  border-radius: 18px !important;
}

.index-panel-excursions .excursion-price-row::before {
  width: 5px !important;
}

.index-panel-excursions .excursion-price-row__content {
  gap: 3px !important;
}

.index-panel-excursions .excursion-price-row__eyebrow {
  font-size: 0.66rem !important;
  line-height: 1.2 !important;
  letter-spacing: 0.08em !important;
}

.index-panel-excursions .excursion-price-row__content strong {
  font-size: 1.02rem !important;
  line-height: 1.15 !important;
}

.index-panel-excursions .excursion-price-row__content small {
  max-width: 360px !important;
  font-size: 0.82rem !important;
  line-height: 1.35 !important;
}

.index-panel-excursions .excursion-price-row__price {
  min-width: 66px !important;
  min-height: 40px !important;
  padding: 8px 12px !important;
  font-size: 0.98rem !important;
}

.index-panel-excursions .excursion-price-row__arrow {
  width: 36px !important;
  height: 36px !important;
  font-size: 0.95rem !important;
}

.index-panel-excursions .excursion-price-row:hover,
.index-panel-excursions .excursion-price-row:focus-visible {
  transform: translateY(-3px) scale(1.012) !important;
}


/* Mobile compact version */
@media (max-width: 760px) {
  .index-panel-excursions {
    padding-top: 54px !important;
    padding-bottom: 54px !important;
  }

  .index-panel-excursions .panel-grid,
  .index-panel-excursions .panel-grid.reverse {
    gap: 28px !important;
  }

  .index-panel-excursions .panel-copy {
    max-width: 100% !important;
  }

  .index-panel-excursions .panel-copy h2 {
    font-size: clamp(2rem, 11vw, 2.85rem) !important;
    line-height: 0.98 !important;
    margin-bottom: 14px !important;
  }

  .index-panel-excursions .panel-copy p {
    font-size: 0.96rem !important;
    line-height: 1.55 !important;
    margin-bottom: 18px !important;
  }

  .index-panel-excursions .excursion-price-list {
    max-width: 100% !important;
    gap: 12px !important;
  }

  .index-panel-excursions .excursion-price-row {
    min-height: auto !important;
    padding: 18px 18px 16px !important;
    grid-template-columns: 1fr auto !important;
    gap: 14px !important;
    border-radius: 20px !important;
  }

  .index-panel-excursions .excursion-price-row__content {
    grid-column: 1 / -1 !important;
    gap: 5px !important;
  }

  .index-panel-excursions .excursion-price-row__eyebrow {
    font-size: 0.64rem !important;
  }

  .index-panel-excursions .excursion-price-row__content strong {
    font-size: 1rem !important;
  }

  .index-panel-excursions .excursion-price-row__content small {
    font-size: 0.82rem !important;
    line-height: 1.4 !important;
  }

  .index-panel-excursions .excursion-price-row__price {
    justify-self: start !important;
    min-width: 64px !important;
    min-height: 38px !important;
    font-size: 0.95rem !important;
  }

  .index-panel-excursions .excursion-price-row__arrow {
    justify-self: end !important;
    width: 36px !important;
    height: 36px !important;
  }
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}

.logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* Legal / inner page hero title fix */
.page-hero-card {
  width: min(100%, 860px);
  max-width: 860px;
  padding: clamp(32px, 5vw, 72px);
  overflow: hidden;
}

.page-hero-card h1 {
  max-width: 100%;
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.page-hero-card p:not(.eyebrow) {
  max-width: 720px;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.5;
}
@media (max-width: 640px) {
  .page-hero {
    min-height: auto;
    padding: 110px 0 56px;
  }

  .page-hero-card {
    width: 100%;
    padding: 28px 22px;
    border-radius: 26px;
  }

  .page-hero-card h1 {
    font-size: clamp(2.05rem, 13vw, 3.25rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  .page-hero-card p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.45;
  }
}
.hero-legal {
  min-height: calc(100vh - var(--header-height, 88px));
  min-height: calc(100svh - var(--header-height, 88px));
  min-height: calc(100dvh - var(--header-height, 88px));
  display: flex;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 56px;
  box-sizing: border-box;
}
/* =====================================================
   Compact booking section — final version
===================================================== */

.booking-page-section {
  padding: 72px 0 !important;
  background:
    radial-gradient(circle at 8% 0%, rgba(177, 132, 53, 0.10), transparent 30%),
    linear-gradient(180deg, #f7f4ed 0%, #ffffff 52%, #eef5f7 100%) !important;
}

.booking-section--compact {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 390px !important;
  gap: 42px !important;
  align-items: start !important;
}

/* LEFT TOUR PREVIEW */
.tour-preview-panel {
  min-height: auto !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  background: #ffffff !important;
  border: 1px solid rgba(15, 32, 50, 0.12) !important;
  box-shadow: 0 22px 60px rgba(11, 49, 71, 0.12) !important;
  color: #102033 !important;
}

.tour-preview-empty,
.tour-preview-content {
  min-height: auto !important;
  padding: 34px !important;
}

.tour-preview-empty {
  display: block !important;
  background:
    linear-gradient(135deg, rgba(11, 79, 113, 0.07), rgba(177, 132, 53, 0.08)),
    #ffffff !important;
}

.tour-preview-empty h2,
.tour-preview-content h2 {
  margin: 0 0 22px !important;
  max-width: 850px !important;
  color: #0b2136 !important;
  font-size: clamp(2rem, 3.2vw, 3.8rem) !important;
  line-height: 1 !important;
  letter-spacing: -0.05em !important;
}

.tour-preview-empty p,
.tour-preview-content p {
  max-width: 850px !important;
  color: rgba(15, 32, 50, 0.74) !important;
  font-size: 1rem !important;
  line-height: 1.65 !important;
}

.tour-preview-image {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 0 24px !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  box-shadow: 0 18px 46px rgba(11, 49, 71, 0.14) !important;
}

.tour-preview-image img {
  display: block !important;
  width: 100% !important;
  height: 360px !important;
  min-height: 0 !important;
  object-fit: cover !important;
  transition: transform 0.55s ease, filter 0.55s ease !important;
}

.tour-preview-image:hover img {
  transform: scale(1.035) !important;
  filter: saturate(1.06) contrast(1.03) !important;
}

.tour-preview-meta {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 22px 0 0 !important;
}

.tour-preview-meta span {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 32px !important;
  padding: 7px 11px !important;
  border-radius: 999px !important;
  background: rgba(11, 79, 113, 0.08) !important;
  color: #0b4f71 !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
}

.tour-preview-list {
  display: grid !important;
  gap: 8px !important;
  margin: 22px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.tour-preview-list li {
  position: relative !important;
  padding-left: 22px !important;
  color: rgba(15, 32, 50, 0.76) !important;
  font-size: 0.96rem !important;
  line-height: 1.52 !important;
}

.tour-preview-list li::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.72em !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #b18435 !important;
  box-shadow: 0 0 0 4px rgba(177, 132, 53, 0.13) !important;
}

/* RIGHT FORM — COMPACT */
.booking-card--compact {
  position: sticky !important;
  top: calc(var(--header-height, 86px) + 18px) !important;
  max-width: 390px !important;
  width: 100% !important;
  padding: 22px !important;
  border-radius: 26px !important;
  border: 1px solid rgba(15, 32, 50, 0.12) !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 22px 58px rgba(11, 49, 71, 0.13) !important;
}

.booking-card--compact .booking-price {
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  align-items: baseline !important;
  gap: 4px 8px !important;
  margin: 0 0 18px !important;
  padding: 0 0 16px !important;
  border-bottom: 1px solid rgba(15, 32, 50, 0.1) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.booking-card--compact .booking-price small {
  color: #0e7895 !important;
  font-size: 0.7rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

.booking-card--compact .booking-price strong {
  color: #0b2136 !important;
  font-size: 1.75rem !important;
  line-height: 1 !important;
  letter-spacing: -0.045em !important;
}

.booking-card--compact .booking-price span {
  grid-column: 1 / -1 !important;
  color: rgba(15, 32, 50, 0.66) !important;
  font-size: 0.82rem !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
}

.booking-card--compact .booking-field {
  margin-bottom: 12px !important;
}

.booking-card--compact .booking-field label {
  display: block !important;
  margin-bottom: 6px !important;
  color: #0b2136 !important;
  font-size: 0.78rem !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
}

.booking-card--compact .control-pill {
  min-height: 46px !important;
  padding: 0 12px !important;
  border-radius: 15px !important;
  border: 1px solid rgba(15, 32, 50, 0.1) !important;
  background: #edf3f6 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
}

.booking-card--compact .control-pill span {
  font-size: 0.92rem !important;
}

.booking-card--compact .control-pill select,
.booking-card--compact .control-pill input {
  width: 100% !important;
  min-height: 44px !important;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  color: #102033 !important;
  font-size: 0.9rem !important;
  font-weight: 800 !important;
}

.booking-card--compact .control-pill:focus-within {
  border-color: rgba(14, 120, 149, 0.45) !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(14, 120, 149, 0.12) !important;
}

.booking-card--compact .booking-submit-btn {
  min-height: 48px !important;
  margin-top: 6px !important;
  border-radius: 15px !important;
  font-size: 0.92rem !important;
  font-weight: 900 !important;
  background: linear-gradient(135deg, #0e7895, #0b4f71) !important;
  box-shadow: 0 16px 34px rgba(14, 120, 149, 0.22) !important;
}

.booking-benefits--compact {
  display: grid !important;
  gap: 11px !important;
  margin-top: 18px !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(15, 32, 50, 0.1) !important;
}

.booking-benefits--compact p {
  display: grid !important;
  grid-template-columns: 26px 1fr !important;
  gap: 2px 10px !important;
  margin: 0 !important;
}

.booking-benefits--compact p > span {
  grid-row: 1 / 3 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  background: rgba(0, 129, 112, 0.1) !important;
  color: #008170 !important;
  font-size: 0.8rem !important;
  font-weight: 900 !important;
}

.booking-benefits--compact strong {
  color: #0b2136 !important;
  font-size: 0.83rem !important;
  line-height: 1.25 !important;
}

.booking-benefits--compact small {
  color: rgba(15, 32, 50, 0.62) !important;
  font-size: 0.78rem !important;
  line-height: 1.35 !important;
}

/* RESPONSIVE */
@media (max-width: 1050px) {
  .booking-section--compact {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .booking-card--compact {
    position: relative !important;
    top: auto !important;
    max-width: 560px !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 640px) {
  .booking-page-section {
    padding: 48px 0 !important;
  }

  .tour-preview-empty,
  .tour-preview-content {
    padding: 22px !important;
  }

  .tour-preview-panel {
    border-radius: 22px !important;
  }

  .tour-preview-empty h2,
  .tour-preview-content h2 {
    font-size: clamp(1.9rem, 10vw, 2.7rem) !important;
    line-height: 1.02 !important;
  }

  .tour-preview-image img {
    height: 230px !important;
  }

  .booking-card--compact {
    max-width: 100% !important;
    padding: 18px !important;
    border-radius: 22px !important;
  }

  .booking-card--compact .booking-price strong {
    font-size: 1.55rem !important;
  }
}
/* Legal tables */
.legal-table-wrap {
  width: 100%;
  margin: 24px 0 34px;
  overflow-x: auto;
  border: 1px solid rgba(15, 32, 50, 0.12);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 32, 50, 0.08);
}

.legal-table {
  width: 100%;
  min-width: 780px;
  border-collapse: separate;
  border-spacing: 0;
  color: #102033;
  font-size: 0.95rem;
  line-height: 1.5;
}

.legal-table thead {
  background:
    linear-gradient(135deg, rgba(11, 79, 113, 0.98), rgba(11, 49, 71, 0.98)),
    #0b3147;
}

.legal-table th {
  padding: 18px 20px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}

.legal-table th:first-child {
  border-top-left-radius: 20px;
}

.legal-table th:last-child {
  border-top-right-radius: 20px;
}

.legal-table td {
  padding: 18px 20px;
  vertical-align: top;
  border-bottom: 1px solid rgba(15, 32, 50, 0.09);
  color: rgba(15, 32, 50, 0.76);
  background: rgba(255, 255, 255, 0.96);
}

.legal-table tbody tr:nth-child(even) td {
  background: rgba(239, 246, 248, 0.68);
}

.legal-table tbody tr:hover td {
  background: rgba(177, 132, 53, 0.08);
}

.legal-table tbody tr:last-child td {
  border-bottom: 0;
}

.legal-table td:first-child {
  color: #0b3147;
  font-weight: 800;
}

.legal-table td:nth-child(3) {
  color: #0b4f71;
  font-weight: 800;
}
@media (max-width: 720px) {
  .legal-table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .legal-table {
    min-width: 0;
    border-collapse: collapse;
  }

  .legal-table thead {
    display: none;
  }

  .legal-table,
  .legal-table tbody,
  .legal-table tr,
  .legal-table td {
    display: block;
    width: 100%;
  }

  .legal-table tr {
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid rgba(15, 32, 50, 0.12);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 32, 50, 0.07);
  }

  .legal-table td {
    position: relative;
    padding: 13px 16px 13px 44%;
    min-height: 48px;
    border-bottom: 1px solid rgba(15, 32, 50, 0.08);
    background: #ffffff;
    font-size: 0.9rem;
  }

  .legal-table td:last-child {
    border-bottom: 0;
  }

  .legal-table td::before {
    position: absolute;
    left: 16px;
    top: 13px;
    width: 36%;
    color: #0b3147;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .legal-table td:nth-child(1)::before {
    content: "Name / Bereich";
  }

  .legal-table td:nth-child(2)::before {
    content: "Zweck";
  }

  .legal-table td:nth-child(3)::before {
    content: "Art";
  }

  .legal-table td:nth-child(4)::before {
    content: "Speicherdauer";
  }
}
@media (max-width: 430px) {
  .legal-table td {
    padding: 46px 16px 14px;
  }

  .legal-table td::before {
    width: auto;
    right: 16px;
  }
}
/* =====================================================
   Large Bodensee landmarks section
===================================================== */

.landmark-section {
  position: relative;
  padding: clamp(72px, 8vw, 130px) 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(177, 132, 53, 0.11), transparent 30%),
    radial-gradient(circle at 100% 8%, rgba(11, 79, 113, 0.11), transparent 32%),
    linear-gradient(180deg, #f8f5ee 0%, #ffffff 44%, #eef5f7 100%);
  overflow: hidden;
}

.landmark-head {
  max-width: 980px;
  margin: 0 auto clamp(44px, 6vw, 78px);
  text-align: center;
}

.landmark-head h2 {
  margin: 0 0 18px;
  color: #0b2136;
  font-size: clamp(2.4rem, 5.4vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.landmark-head p:not(.eyebrow) {
  max-width: 860px;
  margin: 0 auto;
  color: rgba(15, 32, 50, 0.74);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.75;
}

.landmark-list {
  display: grid;
  gap: clamp(28px, 4vw, 54px);
}

.landmark-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: center;
  min-height: 520px;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid rgba(15, 32, 50, 0.12);
  border-radius: clamp(28px, 3vw, 42px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 249, 0.94)),
    #ffffff;
  box-shadow: 0 28px 90px rgba(11, 49, 71, 0.11);
  overflow: hidden;
  transform: translateY(0) scale(1);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.landmark-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(177, 132, 53, 0.14), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(11, 79, 113, 0.10), transparent 38%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.landmark-card:hover,
.landmark-card:focus-visible {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(177, 132, 53, 0.32);
  box-shadow: 0 34px 100px rgba(11, 49, 71, 0.16);
  outline: none;
}

.landmark-card:hover::before,
.landmark-card:focus-visible::before {
  opacity: 1;
}

.landmark-card--reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
}

.landmark-card--reverse .landmark-image {
  order: 2;
}

.landmark-card--reverse .landmark-content {
  order: 1;
}

.landmark-image {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 460px;
  border-radius: clamp(22px, 2.4vw, 34px);
  overflow: hidden;
  background: #dce8ec;
  box-shadow: 0 24px 70px rgba(11, 49, 71, 0.16);
}

.landmark-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.landmark-card:hover .landmark-image img,
.landmark-card:focus-visible .landmark-image img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.04);
}

.landmark-content {
  position: relative;
  z-index: 1;
  padding: clamp(8px, 1.5vw, 18px);
}

.landmark-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: #0b3147;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  box-shadow: 0 14px 32px rgba(11, 49, 71, 0.18);
}

.landmark-kicker {
  margin: 0 0 12px;
  color: #b18435;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landmark-content h3 {
  margin: 0 0 20px;
  color: #0b2136;
  font-size: clamp(1.7rem, 2.55vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.landmark-content p {
  margin: 0;
  color: rgba(15, 32, 50, 0.74);
  font-size: clamp(0.98rem, 1vw, 1.08rem);
  line-height: 1.72;
}

.landmark-content p + p {
  margin-top: 14px;
}

.landmark-content ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.landmark-content li {
  position: relative;
  padding-left: 26px;
  color: rgba(15, 32, 50, 0.78);
  font-size: 0.98rem;
  line-height: 1.5;
}

.landmark-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b4f71, #b18435);
  box-shadow: 0 0 0 4px rgba(177, 132, 53, 0.13);
}

/* Tablet */
@media (max-width: 1100px) {
  .landmark-card,
  .landmark-card--reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .landmark-card--reverse .landmark-image,
  .landmark-card--reverse .landmark-content {
    order: initial;
  }

  .landmark-image,
  .landmark-image img {
    min-height: 380px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .landmark-section {
    padding: 56px 0;
  }

  .landmark-head {
    margin-bottom: 34px;
    text-align: left;
  }

  .landmark-head h2 {
    font-size: clamp(2rem, 12vw, 3.4rem);
    line-height: 1;
  }

  .landmark-head p:not(.eyebrow) {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .landmark-list {
    gap: 24px;
  }

  .landmark-card {
    padding: 16px;
    border-radius: 26px;
  }

  .landmark-image,
  .landmark-image img {
    min-height: 245px;
  }

  .landmark-image {
    border-radius: 20px;
  }

  .landmark-content {
    padding: 8px 4px 6px;
  }

  .landmark-number {
    min-width: 50px;
    height: 36px;
    margin-bottom: 14px;
    font-size: 0.82rem;
  }

  .landmark-kicker {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .landmark-content h3 {
    font-size: clamp(1.55rem, 8vw, 2.35rem);
    line-height: 1.05;
    margin-bottom: 14px;
  }

  .landmark-content p {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .landmark-content ul {
    margin-top: 18px;
    gap: 8px;
  }

  .landmark-content li {
    font-size: 0.91rem;
    line-height: 1.45;
  }
}
/* =====================================================
   Clean photo gallery without captions
===================================================== */

.gallery-page-section {
  padding-top: clamp(56px, 7vw, 110px);
  padding-bottom: clamp(70px, 8vw, 130px);
  background:
    radial-gradient(circle at 0% 0%, rgba(177, 132, 53, 0.10), transparent 32%),
    radial-gradient(circle at 100% 10%, rgba(11, 79, 113, 0.10), transparent 34%),
    linear-gradient(180deg, #f8f5ee 0%, #ffffff 52%, #eef5f7 100%);
}

.gallery-grid-clean {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-photo {
  position: relative;
  display: block;
  width: 100%;
  min-height: 280px;
  padding: 0;
  border: 0;
  border-radius: 26px;
  overflow: hidden;
  cursor: pointer;
  background: #dce8ec;
  box-shadow: 0 18px 46px rgba(11, 49, 71, 0.12);
  transform: translateY(0) scale(1);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.gallery-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(5, 21, 34, 0.16) 100%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.gallery-photo img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition:
    transform 0.65s ease,
    filter 0.65s ease;
}

.gallery-photo:hover,
.gallery-photo:focus-visible {
  transform: translateY(-5px) scale(1.018);
  box-shadow: 0 28px 70px rgba(11, 49, 71, 0.18);
  outline: none;
  z-index: 2;
}

.gallery-photo:hover::after,
.gallery-photo:focus-visible::after {
  opacity: 1;
}

.gallery-photo:hover img,
.gallery-photo:focus-visible img {
  transform: scale(1.09);
  filter: saturate(1.08) contrast(1.04);
}

/* Different rhythm for visual variety */
.gallery-photo:nth-child(7n + 1),
.gallery-photo:nth-child(7n + 4) {
  grid-row: span 2;
  min-height: 578px;
}

.gallery-photo:nth-child(7n + 1) img,
.gallery-photo:nth-child(7n + 4) img {
  height: 578px;
}


/* Lightbox */
.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(4, 16, 26, 0.88);
  backdrop-filter: blur(14px);
}

.photo-lightbox.is-open {
  display: flex;
}

.photo-lightbox__dialog {
  position: relative;
  width: min(100%, 1180px);
  max-height: calc(100svh - 56px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: calc(100svh - 56px);
  border-radius: 28px;
  object-fit: contain;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
}

.photo-lightbox__close,
.photo-lightbox__prev,
.photo-lightbox__next {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.photo-lightbox__close:hover,
.photo-lightbox__prev:hover,
.photo-lightbox__next:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: scale(1.06);
}

.photo-lightbox__close {
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  font-size: 1.6rem;
}

.photo-lightbox__prev,
.photo-lightbox__next {
  top: 50%;
  width: 54px;
  height: 54px;
  font-size: 2rem;
  transform: translateY(-50%);
}

.photo-lightbox__prev {
  left: 18px;
}

.photo-lightbox__next {
  right: 18px;
}

.photo-lightbox__prev:hover,
.photo-lightbox__next:hover {
  transform: translateY(-50%) scale(1.06);
}


/* Responsive */
@media (max-width: 1180px) {
  .gallery-grid-clean {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .gallery-grid-clean {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .gallery-photo,
  .gallery-photo:nth-child(7n + 1),
  .gallery-photo:nth-child(7n + 4) {
    min-height: 250px;
    grid-row: auto;
  }

  .gallery-photo img,
  .gallery-photo:nth-child(7n + 1) img,
  .gallery-photo:nth-child(7n + 4) img {
    height: 250px;
  }
}

@media (max-width: 540px) {
  .gallery-grid-clean {
    grid-template-columns: 1fr;
  }

  .gallery-photo,
  .gallery-photo:nth-child(7n + 1),
  .gallery-photo:nth-child(7n + 4) {
    min-height: 260px;
  }

  .gallery-photo img,
  .gallery-photo:nth-child(7n + 1) img,
  .gallery-photo:nth-child(7n + 4) img {
    height: 260px;
  }

  .photo-lightbox {
    padding: 14px;
  }

  .photo-lightbox__image {
    border-radius: 18px;
    max-height: calc(100svh - 28px);
  }

  .photo-lightbox__close {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
  }

  .photo-lightbox__prev,
  .photo-lightbox__next {
    width: 44px;
    height: 44px;
    font-size: 1.55rem;
  }

  .photo-lightbox__prev {
    left: 10px;
  }

  .photo-lightbox__next {
    right: 10px;
  }
}
/* =====================================================
   Recommended tours block
===================================================== */

.recommend-section {
  padding: clamp(64px, 7vw, 110px) 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(177, 132, 53, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f5f8f9 100%);
}

.recommend-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.recommend-head h2 {
  margin: 0 0 14px;
  color: #0b2136;
  font-size: clamp(2rem, 4.2vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.recommend-head p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(15, 32, 50, 0.72);
  font-size: 1rem;
  line-height: 1.65;
}

.recommend-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.recommend-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(15, 32, 50, 0.12);
  border-radius: 18px;
  background: #ffffff;
  color: #0b2136;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(11, 49, 71, 0.08);
  transform: translateY(0) scale(1);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.recommend-card:hover,
.recommend-card:focus-visible {
  transform: translateY(-8px) scale(1.035);
  border-color: rgba(177, 132, 53, 0.34);
  box-shadow: 0 28px 70px rgba(11, 49, 71, 0.18);
  outline: none;
  z-index: 3;
}

.recommend-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #0b3147;
  font-size: 1.55rem;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(11, 49, 71, 0.16);
}

.recommend-card__image {
  position: relative;
  width: 100%;
  height: 190px;
  margin: 0;
  overflow: hidden;
  background: #dce8ec;
}

.recommend-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.58s ease,
    filter 0.58s ease;
}

.recommend-card:hover .recommend-card__image img,
.recommend-card:focus-visible .recommend-card__image img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}

.recommend-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 18px 16px;
}

.recommend-card__body h3 {
  margin: 0 0 12px;
  color: #0b2136;
  font-size: 1.12rem;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.recommend-meta {
  margin: 0;
  color: rgba(15, 32, 50, 0.74);
  font-size: 0.9rem;
  line-height: 1.45;
}

.recommend-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 26px;
}

.recommend-rating {
  display: grid;
  gap: 3px;
}

.recommend-rating strong {
  color: #0b2136;
  font-size: 0.9rem;
  line-height: 1;
}

.recommend-rating span {
  color: rgba(15, 32, 50, 0.58);
  font-size: 0.78rem;
  line-height: 1.2;
}

.recommend-price {
  display: grid;
  justify-items: end;
  gap: 2px;
  text-align: right;
}

.recommend-price span {
  color: rgba(15, 32, 50, 0.62);
  font-size: 0.78rem;
  line-height: 1;
}

.recommend-price strong {
  color: #0b2136;
  font-size: 1.18rem;
  line-height: 1;
  white-space: nowrap;
}

.recommend-card:nth-child(2) .recommend-price strong {
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 1180px) {
  .recommend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recommend-card {
    min-height: 410px;
  }
}

@media (max-width: 640px) {
  .recommend-section {
    padding: 52px 0;
  }

  .recommend-head {
    margin-bottom: 26px;
  }

  .recommend-head h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .recommend-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .recommend-card {
    min-height: auto;
    border-radius: 18px;
  }

  .recommend-card:hover,
  .recommend-card:focus-visible {
    transform: translateY(-4px) scale(1.015);
  }

  .recommend-card__image {
    height: 210px;
  }

  .recommend-card__body {
    padding: 17px;
  }
}