/* ==========================================================================
   Ententini Theme – Hauptstylesheet
   Farben & Schriften kommen als CSS-Variablen aus dem Customizer (wp_head).
   ========================================================================== */

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

:root {
  --c-green: #29935f;
  --c-green-dark: #1d7146;
  --c-green-deep: #1f7a4d;
  --c-pink: #f96ab2;
  --c-yellow: #feca14;
  --c-orange: #f19104;
  --c-sage: #b8cfb0;
  --c-cream: #fff8f0;
  --c-ink: #33312e;
  --c-ink-soft: #5f5848;
  --c-line: #f1e6d4;
  --font-head: 'Baloo 2', sans-serif;
  --font-body: 'Nunito', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-ink);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
section { scroll-margin-top: 88px; }
img { max-width: 100%; }
::selection { background: var(--c-yellow); color: var(--c-ink); }

.et-wrap { max-width: 1220px; margin: 0 auto; padding-left: clamp(16px, 4vw, 28px); padding-right: clamp(16px, 4vw, 28px); }

/* ---------- Buttons ---------- */
.et-btn {
  display: inline-block; text-decoration: none; border: none; cursor: pointer;
  border-radius: 999px; font-family: var(--font-head); font-weight: 700;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.et-btn--primary { background: var(--c-green); color: #fff; padding: 17px 32px; font-size: 19px; box-shadow: 0 7px 0 var(--c-green-dark); }
.et-btn--primary:hover { transform: translateY(2px); box-shadow: 0 5px 0 var(--c-green-dark); color: #fff; }
.et-btn--ghost { background: #fff; color: var(--c-green); border: 2px solid var(--c-green); padding: 15px 30px; font-size: 19px; }
.et-btn--ghost:hover { background: #f1f6ec; }
.et-btn--nav { background: var(--c-green); color: #fff; padding: 12px 24px; font-size: 16px; box-shadow: 0 5px 0 var(--c-green-dark); }
.et-btn--nav:hover { transform: translateY(2px); box-shadow: 0 3px 0 var(--c-green-dark); color: #fff; }
.et-btn--yellow { background: var(--c-yellow); color: #3d3300; padding: 14px 26px; font-size: 17px; box-shadow: 0 6px 0 #d9a900; }
.et-btn--yellow:hover { transform: translateY(2px); box-shadow: 0 4px 0 #d9a900; }
.et-btn--orange { background: var(--c-orange); color: #fff; padding: 14px; font-size: 17px; box-shadow: 0 6px 0 #cf7a00; display: block; width: 100%; text-align: center; }
.et-btn--orange:hover { transform: translateY(2px); box-shadow: 0 4px 0 #cf7a00; color: #fff; }

/* ---------- Header ---------- */
/* WICHTIG: kein backdrop-filter hier – es würde das position:fixed Overlay-Menü einsperren */
.et-header { position: sticky; top: 0; z-index: 60; background: rgba(255,248,240,.97); border-bottom: 2px solid var(--c-line); }
.et-header__in { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 13px; padding-bottom: 13px; }
.et-header__logo img, .et-header__logo .custom-logo { height: clamp(36px, 5vw, 48px); width: auto; display: block; }
.et-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.et-nav a:not(.et-btn) { text-decoration: none; color: #3d3a33; font-weight: 800; font-size: 15.5px; }
.et-nav a:not(.et-btn):hover { color: var(--c-green); }

/* ---------- Wimpel-Bordüre ---------- */
.et-scallop {
  height: 28px;
  background: repeating-linear-gradient(90deg, var(--c-pink) 0 52px, var(--c-yellow) 52px 104px, var(--c-green) 104px 156px, var(--c-sage) 156px 208px, var(--c-orange) 208px 260px);
  -webkit-mask: radial-gradient(14px at 50% 100%, #0000 96%, #000) 50% 100% / 52px 100% repeat-x;
  mask: radial-gradient(14px at 50% 100%, #0000 96%, #000) 50% 100% / 52px 100% repeat-x;
}
.et-scallop--flip {
  -webkit-mask: radial-gradient(14px at 50% 0, #0000 96%, #000) 50% 0 / 52px 100% repeat-x;
  mask: radial-gradient(14px at 50% 0, #0000 96%, #000) 50% 0 / 52px 100% repeat-x;
  height: 26px;
}

/* ---------- Hero ---------- */
.et-hero { position: relative; padding: clamp(40px, 6vw, 70px) 0 clamp(56px, 8vw, 90px); }
.et-hero__blob1 { position: absolute; top: 40px; right: -80px; width: 420px; height: 420px; border-radius: 50%; background: var(--c-sage); opacity: .35; filter: blur(8px); }
.et-hero__blob2 { position: absolute; bottom: 10px; left: -60px; width: 260px; height: 260px; border-radius: 50%; background: var(--c-yellow); opacity: .22; }
.et-hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(32px, 4.5vw, 54px); align-items: center; }
.et-badge { display: inline-flex; align-items: center; gap: 9px; background: #fde9cf; color: #c97a12; font-weight: 800; font-size: 14px; padding: 9px 16px; border-radius: 999px; }
.et-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--c-orange); display: inline-block; }
.et-hero h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(42px, 5.4vw, 72px); line-height: 1.02; color: #2f2a23; margin: 22px 0 0; letter-spacing: -.01em; }
.et-hero h1 .hl-pink { color: var(--c-pink); }
.et-hero h1 .hl-green { color: var(--c-green); }
.et-hero__sub { font-size: 20px; line-height: 1.55; color: var(--c-ink-soft); font-weight: 600; margin: 22px 0 0; max-width: 520px; }
.et-hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.et-hero__points { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; }
.et-point { display: flex; align-items: center; gap: 9px; font-weight: 800; color: #4a463d; font-size: 15px; }
.et-point i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.et-hero__media { position: relative; }
.et-hero__media::before { content: ""; position: absolute; inset: -14px -14px auto auto; width: 100%; height: 100%; border-radius: 36px; background: var(--c-yellow); transform: rotate(3deg); }
.et-hero__media img.photo { position: relative; width: 100%; height: clamp(320px, 42vw, 480px); object-fit: cover; border-radius: 32px; display: block; box-shadow: 0 30px 60px -24px rgba(41,147,95,.45); }
.et-hero__mascot { position: absolute; left: -46px; bottom: -30px; width: 150px; height: auto; animation: et-floaty 5s ease-in-out infinite; filter: drop-shadow(0 14px 18px rgba(0,0,0,.18)); }
@keyframes et-floaty { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-16px) rotate(3deg); } }
@keyframes et-blobby { 0%,100% { transform: scale(1) rotate(0); } 50% { transform: scale(1.06) rotate(6deg); } }

/* ---------- Statistik-Karten ---------- */
.et-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.et-stat { background: #fff; border: 2px solid var(--c-line); border-radius: 22px; padding: 24px; }
.et-stat b { font-family: var(--font-head); font-weight: 800; font-size: 34px; line-height: 1; display: block; }
.et-stat span { font-weight: 700; color: #6b6459; margin-top: 6px; display: block; }

/* ---------- Sektionen ---------- */
.et-section { padding: clamp(52px, 7vw, 80px) 0; }
.et-section--tint { background: #edf4e8; padding: clamp(52px, 7vw, 74px) 0; }
.et-section--green { background: var(--c-green); padding: clamp(52px, 7vw, 74px) 0; }
.et-h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(30px, 3.6vw, 46px); color: var(--c-green); line-height: 1.05; margin: 0; }
.et-section--green .et-h2 { color: #fff; }
.et-sub { font-size: 18px; color: var(--c-ink-soft); font-weight: 600; margin: 14px 0 0; }
.et-center { text-align: center; max-width: 660px; margin-left: auto; margin-right: auto; }

/* ---------- Räumlichkeit ---------- */
.et-room { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(32px, 4.5vw, 54px); align-items: center; }
.et-room__media { position: relative; }
.et-room__media img { width: 100%; height: 440px; object-fit: cover; border-radius: 30px; display: block; box-shadow: 0 24px 48px -22px rgba(0,0,0,.3); }
.et-room__tag { position: absolute; right: -18px; bottom: -18px; background: var(--c-pink); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 17px; padding: 14px 22px; border-radius: 18px; box-shadow: 0 10px 22px -8px rgba(249,106,178,.7); }
.et-room__text { font-size: 18.5px; line-height: 1.6; color: var(--c-ink-soft); font-weight: 600; margin: 20px 0 0; }
.et-checks { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.et-check { display: flex; align-items: flex-start; gap: 13px; font-weight: 700; color: #3d3a33; font-size: 17px; }
.et-check i { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-style: normal; }
.et-check:nth-child(3n+1) i { background: #e3f0db; color: var(--c-green); }
.et-check:nth-child(3n+2) i { background: #fde2ef; color: var(--c-pink); }
.et-check:nth-child(3n+3) i { background: #fdeccc; color: var(--c-orange); }

/* ---------- Ausstattung ---------- */
.et-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.et-feature { background: #fff; border-radius: 24px; padding: 28px; box-shadow: 0 14px 30px -22px rgba(0,0,0,.25); }
.et-feature__icon { width: 46px; height: 46px; border-radius: 14px; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.et-feature:nth-child(6n+1) .et-feature__icon { background: var(--c-yellow); }
.et-feature:nth-child(6n+2) .et-feature__icon { background: var(--c-pink); }
.et-feature:nth-child(6n+3) .et-feature__icon { background: var(--c-green); }
.et-feature:nth-child(6n+4) .et-feature__icon { background: var(--c-orange); }
.et-feature:nth-child(6n+5) .et-feature__icon { background: var(--c-sage); }
.et-feature:nth-child(6n+6) .et-feature__icon { background: var(--c-yellow); }
.et-feature h3 { font-family: var(--font-head); font-weight: 700; font-size: 21px; color: #2f2a23; margin: 0; }
.et-feature p { margin: 8px 0 0; color: #6b6459; font-weight: 600; line-height: 1.5; }

/* ---------- Galerie ---------- */
.et-gallery__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 32px; }
.et-gallery__head p { font-size: 18px; color: #cfe8db; font-weight: 600; margin: 12px 0 0; }
.et-gallery { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 200px 200px; gap: 14px; }
.et-gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 22px; display: block; transition: transform .35s ease, box-shadow .35s ease; }
.et-gallery img:hover { transform: scale(1.025); box-shadow: 0 16px 36px -16px rgba(0,0,0,.45); }
.et-gallery img:first-child { grid-row: span 2; }

/* ---------- Preise ---------- */
.et-prices { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 1020px; margin: 30px auto 0; }
.et-offer-badge { display: inline-flex; align-items: center; gap: 8px; background: #fde2ef; color: #d6418c; font-weight: 800; font-size: 14px; padding: 9px 18px; border-radius: 999px; margin-top: 18px; }
.et-price { background: #fff; border: 2px solid var(--c-line); border-radius: 28px; padding: 34px; position: relative; }
.et-price--hot { background: var(--c-cream); border-color: var(--c-orange); box-shadow: 0 24px 50px -28px rgba(241,145,4,.6); }
.et-price__pop { position: absolute; top: -14px; right: 26px; background: var(--c-orange); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 14px; padding: 6px 16px; border-radius: 999px; }
.et-price h3 { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--c-green); margin: 0; }
.et-price--hot h3 { color: var(--c-orange); }
.et-price__when { color: #8a8273; font-weight: 700; margin-top: 4px; }
.et-price__amount { display: flex; align-items: baseline; gap: 6px; margin: 20px 0 6px; }
.et-price__amount b { font-family: var(--font-head); font-weight: 800; font-size: 54px; color: #2f2a23; line-height: 1; }
.et-price__amount span { font-weight: 700; color: #8a8273; }
.et-price hr { height: 2px; background: var(--c-line); border: none; margin: 22px 0; }
.et-price ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.et-price li { display: flex; gap: 10px; align-items: center; font-weight: 700; color: #4a463d; }
.et-price li::before { content: "✓"; font-weight: 900; color: var(--c-green); }
.et-price--hot li::before { color: var(--c-orange); }
.et-price .et-btn { margin-top: 26px; }
.et-price .et-btn--ghost { display: block; text-align: center; padding: 14px; font-size: 17px; }

/* ---------- Buchungsanfrage ---------- */
.et-booking-card { background: #fff; border-radius: 32px; padding: 14px; box-shadow: 0 30px 60px -34px rgba(0,0,0,.4); margin-top: 40px; }
.et-booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.et-booking-col { padding: 26px; }
.et-booking-col--form { background: #fbf6ee; border-radius: 24px; }
.et-step { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: #2f2a23; margin-bottom: 6px; }
.et-hint { color: #8a8273; font-weight: 600; margin: 0 0 18px; font-size: 14.5px; }
.et-legend { display: flex; gap: 18px; margin-top: 20px; flex-wrap: wrap; }
.et-legend span { display: flex; align-items: center; gap: 8px; font-weight: 700; color: #4a463d; font-size: 14px; }
.et-legend i { width: 16px; height: 16px; border-radius: 5px; display: inline-block; }
.et-legend .lg-week { background: #f1f6ec; border: 2px solid var(--c-green); }
.et-legend .lg-end { background: #fdecd6; border: 2px solid var(--c-orange); }

/* Kalender (per JS gerendert) */
.et-cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.et-cal__title { font-family: var(--font-head); font-weight: 700; font-size: 21px; color: var(--c-green); }
.et-cal__nav { width: 40px; height: 40px; border-radius: 12px; border: 2px solid #ece2d2; background: #fff; color: var(--c-green); font-size: 22px; font-weight: 800; line-height: 1; font-family: var(--font-head); cursor: pointer; }
.et-cal__nav:disabled { opacity: .35; cursor: default; }
.et-cal__wd, .et-cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.et-cal__wd { margin-bottom: 6px; }
.et-cal__wd div { text-align: center; font-size: 12px; font-weight: 800; color: #a89e8d; letter-spacing: .04em; }
.et-cal__day { height: 42px; display: flex; align-items: center; justify-content: center; border-radius: 12px; border: 2px solid transparent; font-weight: 800; font-size: 15px; font-family: var(--font-body); cursor: pointer; padding: 0; background: #f1f6ec; color: #3d6b4f; }
.et-cal__day.is-weekend { background: #fdecd6; color: #9c6309; }
.et-cal__day:disabled { background: transparent; color: #d2cabb; cursor: default; }
.et-cal__day.is-selected { background: var(--c-green); color: #fff; border-color: var(--c-green); box-shadow: 0 6px 14px rgba(41,147,95,.4); }

/* Auswahl-Box + Formular */
.et-selected { background: #e3f0db; border-radius: 16px; padding: 15px 18px; margin-bottom: 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.et-selected b { font-weight: 800; color: var(--c-green); font-size: 16px; display: block; }
.et-selected small { font-weight: 700; color: #6b6459; font-size: 13.5px; }
.et-selected .price { font-family: var(--font-head); font-weight: 800; color: var(--c-orange); font-size: 24px; }
.et-noselect { background: #fff; border: 2px dashed #d8cdba; border-radius: 16px; padding: 15px 18px; margin-bottom: 16px; font-weight: 700; color: #a89e8d; font-size: 14.5px; }
.et-field label { display: block; font-weight: 800; font-size: 13px; color: var(--c-ink-soft); margin-bottom: 6px; }
.et-field input, .et-field select, .et-field textarea {
  width: 100%; padding: 12px 14px; border: 2px solid #ece2d2; border-radius: 13px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--c-ink); background: #fff; outline: none;
}
.et-field select { font-weight: 700; cursor: pointer; }
.et-field input:focus, .et-field select:focus, .et-field textarea:focus { border-color: var(--c-green); }
.et-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.et-field { margin-bottom: 0; }
.et-field--block { margin-bottom: 12px; }
.et-error { background: #fde2ef; color: #d6418c; font-weight: 700; font-size: 14px; padding: 11px 15px; border-radius: 12px; margin-bottom: 14px; display: none; }
.et-error.is-visible { display: block; }
.et-submit { width: 100%; background: var(--c-green); color: #fff; border: none; border-radius: 999px; padding: 16px; font-family: var(--font-head); font-weight: 700; font-size: 18px; cursor: pointer; box-shadow: 0 6px 0 var(--c-green-dark); margin-top: 2px; }
.et-submit:hover { transform: translateY(2px); box-shadow: 0 4px 0 var(--c-green-dark); }
.et-disclaimer { text-align: center; color: #a89e8d; font-weight: 600; font-size: 12.5px; margin: 12px 0 0; }

/* Bestätigung */
.et-thanks { text-align: center; padding: 24px 8px; }
.et-thanks__check { width: 74px; height: 74px; border-radius: 50%; background: var(--c-green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 40px; margin: 0 auto 18px; animation: et-blobby 3s ease-in-out infinite; }
.et-thanks h3 { font-family: var(--font-head); font-weight: 800; font-size: 28px; color: var(--c-green); margin: 0; }
.et-thanks p { color: var(--c-ink-soft); font-weight: 600; margin: 12px 0 22px; }
.et-thanks__summary { background: #fff; border: 2px solid #ece2d2; border-radius: 18px; padding: 18px 20px; text-align: left; display: flex; flex-direction: column; gap: 10px; }
.et-thanks__summary > div { display: flex; justify-content: space-between; gap: 12px; }
.et-thanks__summary .lbl { color: #8a8273; font-weight: 700; }
.et-thanks__summary .val { font-weight: 800; color: #2f2a23; text-align: right; }

/* ---------- Footer ---------- */
.et-footer { background: var(--c-green-deep); color: #cfe8db; }
.et-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding: 52px 0 30px; }
.et-footer__logo img { height: 64px; width: auto; display: block; margin-bottom: 16px; }
.et-footer p { font-weight: 600; line-height: 1.55; max-width: 300px; margin: 0; color: #bfe0d2; }
.et-footer h4 { font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 17px; margin: 0 0 14px; }
.et-footer__links { display: flex; flex-direction: column; gap: 10px; }
.et-footer__links a { text-decoration: none; color: #cfe8db; font-weight: 700; }
.et-footer__links a:hover { color: var(--c-yellow); }
.et-footer__contact { display: flex; flex-direction: column; gap: 10px; font-weight: 700; }
.et-footer__contact .muted { color: #9fcdb8; }
.et-footer__bar { border-top: 1px solid rgba(255,255,255,.15); }
.et-footer__bar-in { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-weight: 600; font-size: 13.5px; color: #9fcdb8; padding: 18px 0; }

/* ---------- Hamburger-Button ---------- */
.et-burger {
  display: none;
  background: none;
  border: 2px solid var(--c-line);
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  z-index: 70;
  position: relative;
  flex-shrink: 0;
}
.et-burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--c-green);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.et-burger.is-active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.et-burger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.et-burger.is-active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Responsive ---------- */

/* ≤ 1140px */
@media (max-width: 1140px) {
  .et-hero h1 { font-size: clamp(38px, 5vw, 60px); }
}

/* ≤ 1024px: Tablet & Mobil – Nav als Vollbild-Overlay */
@media (max-width: 1024px) {
  .et-burger { display: flex; }
  .et-nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 65;
    background: var(--c-cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transform: translateX(105%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    padding: 40px 24px;
    overflow-y: auto;
  }
  .et-nav.is-open { transform: translateX(0); }
  body:has(.et-nav.is-open) { overflow: hidden; }
  .et-nav a:not(.et-btn) { display: block; font-size: 28px; font-weight: 800; font-family: var(--font-head); text-decoration: none; color: var(--c-ink); }
  .et-nav a:not(.et-btn):hover { color: var(--c-green); }
  .et-nav .et-btn--nav { font-size: 20px; padding: 16px 36px; }
  .et-field input, .et-field select, .et-field textarea { min-height: 48px; font-size: 16px; }
  .et-submit { min-height: 56px; font-size: 18px; }
}

/* ≤ 1024px: Layout-Stapelung */
@media (max-width: 1024px) {
  .et-hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .et-hero__media::before { display: none; }
  .et-hero__media img.photo { height: 360px; border-radius: 24px; }
  .et-hero__mascot { width: 140px; left: 12px; bottom: -26px; }
  .et-hero { padding: 48px 0 70px; }
  .et-hero__sub { font-size: 18px; }
  .et-hero__ctas .et-btn--primary, .et-hero__ctas .et-btn--ghost { font-size: 17px; padding: 14px 26px; }
  .et-stats { grid-template-columns: repeat(2, 1fr); }
  .et-stat b { font-size: 28px; }
  .et-room { grid-template-columns: 1fr; gap: 36px; }
  .et-room__media img { height: 340px; }
  .et-room__tag { right: 0; bottom: -14px; font-size: 15px; padding: 10px 16px; }
  .et-features { grid-template-columns: repeat(2, 1fr); }
  .et-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; gap: 10px; }
  .et-gallery img:first-child { grid-row: span 1; }
  .et-prices { grid-template-columns: 1fr; max-width: 520px; }
  .et-price { padding: 28px; }
  .et-booking-grid { grid-template-columns: 1fr; }
  .et-booking-col--form { border-radius: 18px; }
  .et-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .et-footer__logo img { height: 52px; }
}

/* ≤ 560px: Smartphone */
@media (max-width: 560px) {
  .et-wrap { padding-left: 16px; padding-right: 16px; }
  .et-header__in { padding-top: 10px; padding-bottom: 10px; }
  .et-header__logo img { height: 38px; }
  .et-scallop, .et-scallop--flip { height: 20px; }
  .et-hero { padding: 36px 0 56px; }
  .et-hero h1 { font-size: clamp(30px, 9vw, 44px); }
  .et-hero__sub { font-size: 16.5px; }
  .et-hero__media img.photo { height: 260px; }
  .et-hero__mascot { width: 115px; left: 8px; }
  .et-hero__ctas { flex-direction: column; }
  .et-hero__ctas .et-btn { width: 100%; text-align: center; }
  .et-hero__points { gap: 14px; }
  .et-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .et-stat { padding: 18px; }
  .et-stat b { font-size: 24px; }
  .et-stat span { font-size: 13px; }
  .et-section, .et-section--tint, .et-section--green { padding: 52px 0; }
  .et-h2 { font-size: clamp(24px, 7vw, 36px); }
  .et-sub { font-size: 16px; }
  .et-room__media img { height: 240px; }
  .et-room__tag { font-size: 13px; padding: 8px 14px; border-radius: 12px; }
  .et-check { font-size: 15px; }
  .et-features { grid-template-columns: 1fr; gap: 14px; }
  .et-feature { padding: 22px; }
  .et-feature h3 { font-size: 18px; }
  .et-gallery { grid-template-columns: 1fr; grid-template-rows: auto; gap: 10px; }
  .et-gallery img { height: 200px; }
  .et-gallery__head { flex-direction: column; align-items: flex-start; }
  .et-prices { max-width: 100%; }
  .et-price { padding: 22px; }
  .et-price__amount b { font-size: 42px; }
  .et-booking-card { padding: 8px; border-radius: 22px; }
  .et-booking-col { padding: 18px; }
  .et-row2 { grid-template-columns: 1fr; }
  .et-cal__day { height: 36px; font-size: 13px; border-radius: 9px; }
  .et-footer__grid { padding-top: 36px; }
  .et-footer__bar-in { flex-direction: column; gap: 8px; text-align: center; }
}

/* ≤ 380px */
@media (max-width: 380px) {
  .et-stats { grid-template-columns: 1fr; }
  .et-hero h1 { font-size: 28px; }
  .et-cal__day { height: 30px; font-size: 11px; }
  .et-cal__wd div { font-size: 9px; }
  .et-cal__wd, .et-cal__grid { gap: 3px; }
}

/* Fokus-Styles */
:focus-visible { outline: 3px solid var(--c-green); outline-offset: 3px; border-radius: 4px; }

/* Reduzierte Bewegung respektieren (Barrierefreiheit) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* Druckstile */
@media print {
  .et-header, .et-burger, .et-hero__mascot, .et-scallop, .et-hero__blob1, .et-hero__blob2 { display: none !important; }
  body { background: #fff; color: #000; }
  .et-footer { background: #f5f5f5 !important; color: #333 !important; }
}
