* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 115px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #2d261f;
  background: #f8f2e9;
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
.logo strong {
  font-family: Georgia, "Times New Roman", serif;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 7%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(95, 65, 45, 0.10);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  display: block;
  background: transparent;
}

.logo strong {
  display: block;
  font-size: 18px;
  line-height: 1.05;
}

.logo small {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #5a3522;
  transition: 0.25s;
}

.nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-contact-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: #5a3522;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid #5a3522;
  transition: 0.25s;
}

.header-contact-btn:hover {
  background: #442616;
  border-color: #442616;
  transform: translateY(-2px);
}

/* LANGUAGE DROPDOWN */

.language-dropdown {
  position: relative;
  z-index: 155;
}

.language-dropdown {
  display: none !important;
}

.language-current {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #5a3522;
  border: 2px solid rgba(90, 53, 34, 0.28);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.language-current span {
  font-size: 10px;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 145px;
  padding: 8px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(90, 53, 34, 0.18);
  box-shadow: 0 18px 40px rgba(62, 41, 25, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.2s;
  z-index: 150;
}

.language-menu a {
  display: block;
  padding: 9px 10px;
  border-radius: 10px;
  color: #2d261f;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.language-menu a:hover {
  background: #f5eadc;
  color: #5a3522;
}

.language-dropdown:hover .language-menu,
.language-dropdown:focus-within .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* BUTTONS */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  background: #5a3522;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid #5a3522;
  transition: 0.25s;
}

.btn:hover {
  background: #442616;
  border-color: #442616;
  transform: translateY(-2px);
}

.btn-small {
  padding: 11px 22px;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.85);
}

.btn-outline:hover {
  background: #442616;
  border-color: #442616;
  color: #ffffff;
}

/* HERO */

.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding: 120px 7%;
  background:
    linear-gradient(
      90deg,
      rgba(20, 14, 10, 0.05) 0%,
      rgba(20, 14, 10, 0.04) 35%,
      rgba(20, 14, 10, 0.22) 58%,
      rgba(20, 14, 10, 0.56) 100%
    ),
    url("img/hero.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 620px;
  margin-left: auto;
  padding: 38px;
  border-radius: 22px;
  background: rgba(38, 24, 14, 0.44);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #5a3522;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero .eyebrow {
  color: #ffffff;
}

h1 {
  font-size: clamp(48px, 5vw, 86px);
  line-height: 0.95;
  margin-bottom: 28px;
  font-weight: 500;
}

.hero h1 {
  color: #ffffff;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.35);
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  font-weight: 500;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.hero-content p {
  max-width: 560px;
  font-size: 18px;
  color: #ffffff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.35);
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ALLGEMEIN */

.section {
  padding: 80px 7%;
}

.section-center {
  max-width: 980px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-center p {
  font-size: 15px;
}

/* CHI SIAMO */

.chi-siamo {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  gap: 40px;
  align-items: center;
  background: #fbf7ef;
  padding: 90px 7% 90px 7%;
  position: relative;
  overflow: hidden;
}

.chi-content {
  max-width: 680px;
  position: relative;
  z-index: 4;
}

.chi-content .eyebrow {
  margin-bottom: 18px;
}

.chi-content .eyebrow::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin-top: 14px;
  background: #5a3522;
}

.chi-content h2 {
  font-size: clamp(48px, 5vw, 78px);
  line-height: 0.98;
  margin-bottom: 18px;
}

.english-subline {
  margin: -4px 0 30px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5a3522;
  opacity: 0.82;
}

.chi-info-list {
  display: grid;
  gap: 22px;
  margin-bottom: 28px;
}

.chi-info-map-wrap {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
}

.chi-info-map-wrap .chi-info-list {
  margin-bottom: 0;
}

.chi-map-image img {
  width: 100%;
  height: auto;
  display: block;
}

.chi-map-mobile {
  display: none;
}

.chi-map-desktop {
  display: block;
  width: 230px;
  justify-self: end;
}

.chi-info-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.chi-icon {
  width: 42px;
  flex: 0 0 42px;
  line-height: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.chi-icon img {
  object-fit: contain;
  display: block;
}

.chi-icon-location img {
  width: 40px;
  height: 40px;
  margin-top: -3px;
}

.chi-icon-phone img {
  width: 30px;
  height: 30px;
  margin-top: 2px;
}

.chi-info-row p {
  margin: 0 0 5px;
  font-size: 18px;
  line-height: 1.4;
}

.chi-divider {
  width: 100%;
  max-width: 510px;
  height: 1px;
  margin: 30px 0;
  background: rgba(90, 53, 34, 0.22);
}

.chi-description-wrap {
  display: grid;
  grid-template-columns: 1fr 230px;
  gap: 34px;
  align-items: end;
}

.chi-description {
  display: grid;
  gap: 22px;
  font-size: 16px;
  line-height: 1.58;
}

.chi-description p {
  margin: 0;
  position: relative;
  padding-left: 0;
}

.maps-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 6px;
  border-radius: 12px;
  padding: 15px 28px;
}

.btn-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.chi-image {
  height: 620px;
  position: relative;
  overflow: hidden;
  border-radius: 0 34px 34px 0;
  box-shadow: none;
  margin-right: -7%;
}

.chi-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  border-radius: 0 34px 34px 0;
}

.fade-left::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0;
  background: linear-gradient(
    90deg,
    #fbf7ef 0%,
    rgba(251, 247, 239, 0.92) 7%,
    rgba(251, 247, 239, 0.78) 16%,
    rgba(251, 247, 239, 0.56) 28%,
    rgba(251, 247, 239, 0.34) 42%,
    rgba(251, 247, 239, 0.16) 56%,
    rgba(251, 247, 239, 0.05) 72%,
    rgba(251, 247, 239, 0) 88%
  );
  z-index: 2;
  pointer-events: none;
} 

/* ESCURSIONI */

.escursioni {
  background: #f8f2e9;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  background: #fffaf3;
  border: 1px solid rgba(95, 65, 45, 0.18);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(62, 41, 25, 0.08);
}

.card-image {
  height: 180px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.35s;
}

.card:hover .card-image img {
  transform: scale(1.06);
}

.card-body {
  padding: 22px;
}

.badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #5a3522;
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.card p {
  font-size: 14px;
}

/* TARIFFE */

.tariffe {
  background: #f5eadc;
  padding-top: 70px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.price-box {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 20px;
  background: #fffaf3;
  border: 1px solid rgba(95, 65, 45, 0.22);
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 14px 28px rgba(62, 41, 25, 0.07);
}

.price-box h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.35;
}

.price-box span {
  font-size: 14px;
  color: #6b5b4b;
}

.price-box strong {
  display: block;
  font-size: 32px;
  color: #5a3522;
}

.note {
  margin-top: 24px;
  text-align: center;
  font-weight: 700;
}

/* GIANCARLO */

.giancarlo-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  background: #fffaf3;
}

.giancarlo-image {
  height: 460px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(62, 41, 25, 0.14);
}

.giancarlo-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 28px;
}

.giancarlo-text {
  max-width: 650px;
}

.giancarlo-text p {
  margin-bottom: 18px;
}

.giancarlo-text .btn {
  margin-top: 12px;
}

/* GALLERY */

.gallery {
  background: #fbf7ef;
}

.gallery-grid {
  column-count: 4;
  column-gap: 18px;
}

.gallery-item {
  display: block;
  width: 100%;
  margin-bottom: 18px;
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  break-inside: avoid;
  background: transparent;
  box-shadow: 0 14px 34px rgba(62, 41, 25, 0.11);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.35s;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 92vw;
  max-height: 86vh;
  text-align: center;
}

.lightbox-content img {
  max-width: 92vw;
  max-height: 80vh;
  display: block;
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

#lightbox-counter {
  margin-top: 14px;
  color: #ffffff;
  font-size: 15px;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  z-index: 1000;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  cursor: pointer;
  transition: 0.25s;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  background: #5a3522;
}

.lightbox-close {
  top: 24px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 36px;
  line-height: 1;
}

.lightbox-arrow {
  top: 50%;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  transform: translateY(-50%);
  font-size: 46px;
  line-height: 1;
}

.lightbox-prev {
  left: 28px;
}

.lightbox-next {
  right: 28px;
}


/* SCROLL TO TOP */

.scroll-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 900;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #5a3522;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.25s;
  box-shadow: 0 14px 30px rgba(62, 41, 25, 0.24);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: #442616;
  transform: translateY(-3px);
}

/* FOOTER */

.footer-cta {
  margin: 40px 7%;
  padding: 46px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #5a3522;
  color: white;
  border-radius: 22px;
}


.footer-booking-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 13px 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.92);
  transition: 0.25s;
}

.footer-booking-btn:hover {
  background: #ffffff;
  color: #5a3522;
  transform: translateY(-2px);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 44px 7%;
  background: #ffffff;
  border-top: 1px solid rgba(95, 65, 45, 0.10);
}

/* SOCIAL BUTTONS */

.social-buttons {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #5a3522;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid #5a3522;
  transition: 0.25s;
}

.social-btn:hover {
  background: #442616;
  border-color: #442616;
  transform: translateY(-2px);
}

/* Letzte Preisbox mittig platzieren */
@media (min-width: 1100px) {
  .price-grid .price-box:last-child {
    grid-column: 3 / 4;
  }
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .cards,
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    column-count: 3;
  }
}

@media (max-width: 1100px) {
  section {
    scroll-margin-top: 100px;
  }

    .chi-description-wrap {
    grid-template-columns: 1fr 190px;
    gap: 28px;
  }

  .chi-map-desktop {
    width: 190px;
  }

  .nav {
    display: none;
  }

  .chi-siamo,
  .giancarlo-section {
    grid-template-columns: 1fr;
  }

  .chi-siamo {
    gap: 36px;
    padding: 70px 7%;
  }

  .chi-image {
    height: 460px;
    order: -1;
    border-radius: 28px;
  }

  .chi-image img {
    border-radius: 28px;
  }

  .fade-left::before {
    background: linear-gradient(
      180deg,
      rgba(251, 247, 239, 0) 0%,
      rgba(251, 247, 239, 0.20) 58%,
      #fbf7ef 100%
    );
  }

  .giancarlo-image {
    height: 420px;
  }
}

/* TABLET HERO */

@media (min-width: 601px) and (max-width: 1180px) {
  .hero {
    min-height: auto !important;
    aspect-ratio: 16 / 9 !important;
    padding: 0 6% 45px !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: flex-end !important;
    background:
      linear-gradient(
        90deg,
        rgba(20, 14, 10, 0.02) 0%,
        rgba(20, 14, 10, 0.05) 40%,
        rgba(20, 14, 10, 0.30) 70%,
        rgba(20, 14, 10, 0.50) 100%
      ),
      url("img/hero.jpg") !important;
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: #f8f2e9 !important;
  }

  .hero-content {
    width: 58% !important;
    max-width: 560px !important;
    margin-left: auto !important;
    padding: 28px !important;
    border-radius: 22px !important;
    background: rgba(38, 24, 14, 0.32) !important;
    backdrop-filter: blur(5px) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.14) !important;
    text-align: left !important;
  }

  .hero .eyebrow {
    display: block !important;
    color: #ffffff !important;
    font-size: 12px !important;
  }

  .hero h1 {
    color: #ffffff !important;
    font-size: clamp(36px, 5vw, 52px) !important;
    line-height: 1 !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.72) !important;
  }

  .hero-content p {
    display: none !important;
  }

  .hero-buttons {
    justify-content: flex-start !important;
    gap: 12px !important;
    margin-top: 22px !important;
  }
}

/* MOBILE */

@media (max-width: 600px) {
  section {
    scroll-margin-top: 90px;
  }


  .header {
    padding: 12px 5%;
  }

  .logo-img {
    width: 48px;
    height: 48px;
  }

  .logo strong {
    font-size: 15px;
  }

  .logo small {
    font-size: 9px;
    letter-spacing: 3px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-contact-btn {
    padding: 8px 11px;
    font-size: 12px;
  }

  .language-current {
  padding: 8px 10px;
  font-size: 12px;
}

.language-menu {
  right: 0;
  min-width: 135px;
}

.language-menu a {
  font-size: 12px;
}

  .hero {
    min-height: 640px !important;
    padding: 0 5% 55px !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    background:
      linear-gradient(
        180deg,
        rgba(20, 14, 10, 0.02) 0%,
        rgba(20, 14, 10, 0.08) 42%,
        rgba(20, 14, 10, 0.42) 100%
      ),
      url("img/hero-phone.jpg") !important;
    background-size: cover !important;
    background-position: 30% top !important;
    background-repeat: no-repeat !important;
    background-color: #2d261f !important;
  }

  .hero-content {
    width: 100% !important;
    max-width: 330px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    text-align: center !important;
  }

  .hero .eyebrow {
    display: none !important;
  }

  .hero h1 {
    color: #ffffff !important;
    font-size: 37px !important;
    line-height: 0.95 !important;
    margin-bottom: 0 !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.78) !important;
  }

  .hero-content p {
    display: none !important;
  }

  .hero-buttons {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
    margin-top: 22px !important;
  }

  .hero-buttons .btn {
    padding: 10px 13px !important;
    font-size: 12px !important;
    white-space: nowrap !important;
  }

  .hero-buttons .btn-outline {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.95) !important;
    background: rgba(0, 0, 0, 0.10) !important;
  }

  .section {
    padding: 58px 5%;
  }

  /* CHI SIAMO HANDY */

  .chi-siamo {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 34px !important;
    padding: 58px 5% !important;
    background: #fbf7ef !important;
    overflow: hidden !important;
  }

  .chi-content {
    order: 1 !important;
    width: 100% !important;
    max-width: none !important;
    position: relative !important;
    z-index: 4 !important;
  }

  .chi-content h2 {
    font-size: 42px !important;
    line-height: 0.98 !important;
  }

  .english-subline {
    font-size: 12px !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 24px !important;
  }

  .chi-info-row p,
  .chi-description {
    font-size: 15px !important;
  }

    .chi-description-wrap {
    display: block !important;
  }

  .chi-map-desktop {
    display: none !important;
  }

  .chi-info-map-wrap {
    display: grid !important;
    grid-template-columns: 1fr 145px !important;
    gap: 8px !important;
    align-items: center !important;
    margin-bottom: 28px !important;
  }

  .chi-info-map-wrap .chi-info-list {
    margin-bottom: 0 !important;
  }

  .chi-map-mobile {
    display: block !important;
    width: 145px !important;
    max-width: 145px !important;
    justify-self: end !important;
    margin: 0 !important;
  }

  .chi-map-mobile img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .maps-btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  .chi-image {
    order: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 360px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    border-radius: 28px !important;
    overflow: hidden !important;
    box-shadow: none !important;
  }

  .chi-image img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 28px !important;
  }

  .fade-left::before {
    display: block !important;
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    border-radius: 28px !important;
    background: linear-gradient(
      180deg,
      #fbf7ef 0%,
      rgba(251, 247, 239, 0.70) 8%,
      rgba(251, 247, 239, 0.42) 18%,
      rgba(251, 247, 239, 0.20) 32%,
      rgba(251, 247, 239, 0.06) 50%,
      rgba(251, 247, 239, 0) 68%
    ) !important;
    z-index: 2 !important;
    pointer-events: none !important;
  }

  /* ICON GRÖSSEN */

  .chi-icon {
    width: 42px !important;
    flex: 0 0 42px !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
  }

  .chi-info-row:first-child .chi-icon img {
    width: 36px !important;
    height: 36px !important;
  }

  .chi-info-row:nth-child(2) .chi-icon img {
    width: 30px !important;
    height: 30px !important;
  }

  .cards,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    column-count: 1;
  }

  .giancarlo-image {
    height: 340px;
  }

  .footer-cta {
    margin: 30px 5%;
    padding: 34px 26px;
  }

  .hero-buttons,
  .footer-cta,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }


  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
    font-size: 24px;
    background: #5a3522;
    color: #ffffff;
  }

  .footer-booking-btn {
    width: 100%;
    margin-top: 18px;
    padding: 13px 24px;
  }

  .social-buttons {
  width: 100%;
}

.social-btn {
  flex: 1;
  min-width: 0;
}

  .lightbox {
    padding: 18px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .lightbox-arrow {
    width: 44px;
    height: 44px;
    font-size: 36px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .lightbox-content img {
    max-width: 94vw;
    max-height: 76vh;
  }
}

/* TEXT-SCHRIFT FIX */

p,
li,
a,
span,
.chi-description,
.chi-description p,
.chi-info-row p,
.section-center p,
.card p,
.giancarlo-text p,
.footer,
.footer p,
.hero-content p {
  font-family: Arial, Helvetica, sans-serif !important;
}

h1,
h2,
h3,
.logo strong {
  font-family: Georgia, "Times New Roman", serif !important;
}