
:root {
  --brand: #017491;
  --brand-dark: #01586f;
  --text: #13313a;
  --muted: #5c727a;
  --bg: #f8fbfc;
  --soft: #eef7f9;
  --card: #ffffff;
  --line: rgba(1, 116, 145, 0.14);
  --shadow: 0 18px 45px rgba(12, 45, 56, 0.08);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbfc 0%, #ffffff 55%, #f7fbfc 100%);
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 72px 0; }
.section--soft { background: var(--soft); }
.section--intro { padding-top: 40px; }
.section--cta { padding-top: 24px; padding-bottom: 90px; }
.section-heading { text-align: center; margin-bottom: 28px; }
.section-heading--left { text-align: left; }
.section-heading h1, .section-heading h2, .hero h1 { margin: 0 0 12px; line-height: 1.05; }
.section-heading p, .hero p { margin: 0; color: var(--muted); }
.eyebrow { color: var(--brand); text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; font-weight: 700; margin-bottom: 14px; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(248,251,252,.88);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: grid; grid-template-columns: 162px minmax(0,1fr) minmax(410px, 470px); gap: 10px; align-items: center; min-height: 78px;
}
.site-logo { display: inline-flex; align-items: center; color: var(--text); font-weight: 700; }
.site-logo:hover { text-decoration: none; }
.site-logo__image { display: block; width: 156px; max-width: 100%; height: auto; }
.site-nav { display: flex; gap: 8px; align-items: center; justify-content: center; flex-wrap: nowrap; min-width: 0; }
.site-nav a { position: relative; color: var(--text); font-weight: 600; font-size: .94rem; padding: 8px 2px 14px; white-space: nowrap; }
.site-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 2px; height: 3px; border-radius: 999px;
  background: var(--brand); transform: scaleX(0); transform-origin: center; transition: transform .2s ease;
}
.site-nav a.is-active { color: var(--brand); }
.site-nav a.is-active::after, .site-nav a:hover::after { transform: scaleX(1); }
.lang-switcher { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px; max-width: 470px; width: 100%; }
.lang-switcher a {
  display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 32px;
  padding: 0 8px; border: 1px solid var(--line); border-radius: 999px; font-size: .72rem; color: var(--muted); background: #fff;
}
.lang-switcher a.is-active { color: var(--brand); border-color: rgba(1,116,145,.45); background: rgba(1,116,145,.08); }
.hero { padding: 88px 0 54px; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.hero__lead { font-size: 1.15rem; line-height: 1.7; }
.hero__note { margin-top: 14px; }
.hero__image { margin-bottom: 18px; border-radius: 22px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); max-height: 230px; }
.hero__image img { display:block; width:100%; height:230px; object-fit: cover; object-position:center; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero__scroll { display: inline-block; margin-top: 28px; color: var(--muted); font-weight: 700; }
.hero__visual { display: grid; gap: 18px; }
.hero-card {
  background: linear-gradient(160deg, #ffffff 0%, #f0f7f9 100%);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow);
}
.hero-card strong { display: block; font-size: 2rem; margin-bottom: 8px; }
.hero-card--large strong { font-size: 4rem; }
.button {
  display: inline-flex; align-items: center; justify-content: center; border: 0; cursor: pointer; text-decoration: none;
  background: var(--brand); color: #fff; padding: 14px 20px; border-radius: 999px; font-weight: 700;
}
.button:hover { text-decoration: none; background: var(--brand-dark); }
.button--outline { background: transparent; color: var(--brand); border: 1px solid rgba(1,116,145,.35); }
.button--outline:hover { background: rgba(1,116,145,.06); }
.button--ghost { background: transparent; color: var(--muted); border: 1px dashed var(--line); }
.button--small { padding: 10px 14px; font-size: .92rem; }
.cards-grid, .intro-grid, .price-grid, .highlights-grid, .footer-grid { display: grid; gap: 18px; }
.cards-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gite-card, .intro-box, .price-box, .review-card, .contact-card, .detail-panel, .cta-box, .flash, .empty-box {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.gite-card { padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.gite-card__badge, .gite-detail__badge { align-self: flex-start; padding: 8px 12px; border-radius: 999px; background: rgba(1,116,145,.08); color: var(--brand); font-size: .82rem; font-weight: 700; }
.gite-card h3, .intro-box h3, .price-box strong, .review-card strong, .contact-card h2, .detail-panel h2, .detail-panel h3 { margin: 0; }
.gite-card__meta, .gite-card__location, .muted, .form-note, .contact-card p, .detail-panel p { color: var(--muted); }
.gite-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: auto; }
.intro-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.intro-box { padding: 0; overflow: hidden; }
.price-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.price-box { padding: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.price-box small{display:block;color:var(--muted);margin-top:4px;}
.price-box span { color: var(--brand); font-size: 1.4rem; font-weight: 800; }
.reviews-list { display: grid; gap: 16px; }
.reviews-list--home { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.review-card { padding: 22px; }

.intro-box__media { aspect-ratio: 16 / 10; background: linear-gradient(135deg, #dceff4 0%, #f4fbfd 100%); border-bottom: 1px solid var(--line); overflow: hidden; }
.intro-box__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.intro-box__content { padding: 22px; }
.intro-box__content p { margin: 10px 0 0; color: var(--muted); }
.gite-card__media { aspect-ratio: 4 / 3; border-radius: 18px; overflow: hidden; background: linear-gradient(135deg, #e4f3f7 0%, #f7fbfc 100%); border: 1px solid var(--line); }
.gite-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-gallery { display: grid; gap: 12px; margin: 24px 0; }
.detail-gallery__track { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px; scroll-snap-type: x proximity; }
.detail-gallery__track::-webkit-scrollbar { height: 8px; }
.detail-gallery__track::-webkit-scrollbar-thumb { background: rgba(1,116,145,.24); border-radius: 999px; }
.detail-thumb { min-width: 148px; width: 148px; height: 104px; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; cursor: pointer; scroll-snap-align: start; }
.detail-thumb img, .detail-thumb video { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-avatar-box { margin-top: 18px; }
.lightbox[hidden] { display: none !important; }
.lightbox { position: fixed; inset: 0; z-index: 120; background: rgba(11, 29, 35, .78); display: grid; place-items: center; padding: 28px; }
.lightbox__dialog { width: min(1100px, 100%); max-height: calc(100vh - 56px); background: #091318; border-radius: 22px; overflow: hidden; position: relative; box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.lightbox__close { position: absolute; top: 14px; right: 14px; width: 42px; height: 42px; border-radius: 50%; border: 0; background: rgba(255,255,255,.16); color: #fff; font-size: 1.5rem; cursor: pointer; z-index: 2; }
.lightbox__body { background: #091318; min-height: 320px; display: grid; place-items: center; }
.lightbox__body img, .lightbox__body video { width: 100%; height: auto; max-height: calc(100vh - 100px); object-fit: contain; display: block; }

.review-card__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.location-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 22px; align-items: stretch; }
.map-frame-wrap { min-height: 440px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-frame { width: 100%; height: 100%; min-height: 440px; border: 0; }
.contact-card { padding: 26px; }
.contact-card--large { margin-top: 18px; }
.cta-box { padding: 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.cta-box__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.form-layout, .gite-detail-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: start; }
.site-form, .site-form--review {
  display: grid; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow);
}
.site-form label { display: grid; gap: 8px; color: var(--text); font-weight: 700; }
.site-form input, .site-form select, .site-form textarea {
  width: 100%; border: 1px solid rgba(1,116,145,.22); border-radius: 14px; padding: 14px 16px; background: #fbfeff;
}
.site-form small { color: var(--muted); font-weight: 400; }
.flash, .empty-box { padding: 16px 18px; margin-bottom: 18px; }
.flash--success { border-color: rgba(18,140,92,.24); background: #f1fcf7; }
.flash--error { border-color: rgba(194,52,52,.2); background: #fff4f4; }
.gite-detail-page { padding-top: 56px; }
.gite-detail__lead { font-size: 1.05rem; line-height: 1.75; color: var(--muted); }
.back-link { display: inline-block; margin-bottom: 18px; font-weight: 700; }
.detail-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin: 26px 0; }
.detail-fact, .detail-panel--soft { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 18px; }
.detail-fact span { display: block; color: var(--muted); margin-bottom: 6px; }
.detail-section { margin-top: 24px; }
.feature-list { margin: 0; padding-left: 18px; display: grid; gap: 10px; }
.detail-sidebar { display: grid; gap: 16px; }
.detail-panel { padding: 22px; }
.floating-booking {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%); writing-mode: vertical-rl;
  border: 0; background: var(--brand); color: #fff; padding: 18px 12px; border-radius: 20px 0 0 20px; cursor: pointer; z-index: 35; box-shadow: var(--shadow);
}
.to-top {
  position: fixed; right: 24px; bottom: 24px; width: 54px; height: 54px; border-radius: 50%; border: 0; background: var(--brand);
  color: #fff; font-size: 1.4rem; cursor: pointer; box-shadow: var(--shadow); opacity: 0; transform: translateY(14px); transition: .22s ease; z-index: 36;
}
.to-top.is-visible { opacity: 1; transform: translateY(0); }
.cookie-banner[hidden] { display: none; }
.booking-frame-wrap { margin: 16px 0 20px; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); background: #fff; }
.booking-frame { width: 100%; min-height: 60vh; border: 0; background: #fff; display: block; }
.section--booking { padding-top: 0; }
.booking-accordion { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.booking-accordion__toggle { width: 100%; border: 0; background: linear-gradient(180deg, #ffffff 0%, #f3fafc 100%); color: var(--text); display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-weight: 800; cursor: pointer; }
.booking-accordion__icon { width: 36px; height: 36px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(1,116,145,.08); color: var(--brand); font-size: 1.6rem; line-height: 1; }
.booking-accordion__panel[hidden] { display: none !important; }
.booking-accordion__panel { max-height: 0; overflow: hidden; transition: max-height .45s ease; visibility: hidden; }
.booking-accordion__panel.is-open { max-height: 2200px; visibility: visible; }
.booking-accordion__inner { padding: 0 18px 18px; }
.booking-frame-wrap--inline { margin-bottom: 10px; }
.booking-frame--inline { min-height: 1800px; }
.booking-direct-link { text-align: center; margin: 0; padding-bottom: 6px; }
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 90; background: rgba(255,255,255,.98); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow);
}
.cookie-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 20px; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-settings { display: grid; gap: 12px; margin: 18px 0; }
.site-footer { padding: 32px 0 54px; background: #0f2d37; color: #d9edf2; }
.site-footer a { color: #d9edf2; }
.footer-grid { grid-template-columns: 1.2fr 1fr .9fr; }
.footer-grid--two { grid-template-columns: 1.2fr 1fr; }
.hp-field { position: absolute !important; left: -9999px !important; top: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
@media (max-width: 1220px) {
  .site-header__inner { grid-template-columns: 146px minmax(0,1fr) minmax(360px, 430px); }
  .site-logo__image { width: 142px; }
  .site-nav { gap: 6px; }
  .lang-switcher { max-width: 430px; }
}
@media (max-width: 1080px) {
  .cards-grid, .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__grid, .form-layout, .gite-detail-grid, .location-grid, .footer-grid { grid-template-columns: 1fr; }
  .reviews-list--home, .intro-grid { grid-template-columns: 1fr; }
  .site-header__inner { grid-template-columns: 1fr; padding: 14px 0; }
  .lang-switcher { justify-content: flex-start; }
}
@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .cards-grid, .price-grid, .detail-facts { grid-template-columns: 1fr; }
  .site-nav { justify-content: flex-start; flex-wrap: wrap; }
  .gite-card__footer, .cta-box { flex-direction: column; align-items: flex-start; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
  .floating-booking { top: auto; bottom: 96px; transform: none; writing-mode: horizontal-tb; right: 16px; border-radius: 999px; padding: 12px 16px; }
}

@media (max-width: 720px) {
  .booking-accordion__toggle { padding: 18px; }
  .booking-frame--inline { min-height: 1400px; }
}

@media (max-width: 900px) { .site-header__inner { grid-template-columns: 1fr; padding: 12px 0; } .site-logo{justify-content:center;} .site-nav, .lang-switcher { justify-content: center; } .lang-switcher{max-width:none;} }


/* Hero Boxen angleichen */
.hero-features .feature h3 {
    font-size: 1.2rem !important;
}