:root {
  --cream: #f7f1e5;
  --cream-2: #fbf8f1;
  --paper: #fffdf8;
  --white: #ffffff;
  --ink: #24352a;
  --muted: #69776b;
  --green: #6C7742;
  --green-dark: #4f5b30;
  --green-soft: #eef1e5;
  --line: #e5dac8;
  --gold: #c9a86e;
  --shadow: 0 14px 34px rgba(46, 61, 44, .1);
  --radius: 18px;
  --container: 1360px;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
  --font-script: "Great Vibes", cursive;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream-2);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.48;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(108, 119, 66, .36); outline-offset: 3px; }
.container { width: min(var(--container), calc(100% - 56px)); margin-inline: auto; }
.skip-link { position: fixed; top: -80px; left: 16px; z-index: 100; background: var(--green-dark); color: #fff; padding: 10px 14px; border-radius: 6px; }
.skip-link:focus { top: 16px; }

.site-header { background: rgba(255,255,255,.96); border-bottom: 1px solid #eee6da; position: sticky; top: 0; z-index: 50; }
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.brand { width: clamp(260px, 23vw, 330px); display: inline-flex; align-items: center; color: var(--green); }
.brand img { width: 100%; max-height: 76px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; gap: clamp(22px, 2.5vw, 42px); font-family: var(--font-body); font-size: 16px; font-weight: 650; color: #334336; }
.site-nav a { position: relative; padding: 31px 0 28px; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 22px; height: 2px; background: var(--green); transform: scaleX(0); transition: transform .2s ease; }
.site-nav a.active::after, .site-nav a:hover::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 46px; height: 46px; border-radius: 8px; border: 1px solid var(--line); background: #fff; padding: 12px; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 0; background: var(--green); border-radius: 999px; transition: .18s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; min-height: clamp(340px, 27.5vw, 420px); display: grid; align-items: center; overflow: hidden; background: #dfe7da; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; opacity: 0; filter: saturate(1.02) brightness(1.08); transition: opacity 2.8s cubic-bezier(.45, 0, .2, 1); }
.hero-image.is-active { opacity: 1; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(246,241,229,.9) 0%, rgba(246,241,229,.72) 31%, rgba(246,241,229,.22) 56%, rgba(246,241,229,.02) 100%); }
.hero-soft { position: absolute; z-index: 1; left: 0; top: 0; bottom: 0; width: min(58vw, 760px); background: linear-gradient(90deg, rgba(255,253,248,.93), rgba(255,253,248,.78), rgba(255,253,248,0)); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 560px) 1fr; align-items: center; min-height: inherit; padding-block: 28px; }
.hero-copy { max-width: 540px; }
h1, h2, h3, p { overflow-wrap: break-word; }
h1 { margin: 0; color: var(--green-dark); font-family: var(--font-heading); font-size: clamp(34px, 3.45vw, 54px); line-height: 1.02; letter-spacing: 0; font-weight: 600; }
h1 span {
  position: relative;
  display: inline-block;
  margin-top: .16em;
  padding-bottom: .08em;
  font-family: var(--font-script);
  font-size: clamp(54px, 5vw, 82px);
  line-height: .9;
  font-style: normal;
  font-weight: 400;
  color: var(--green);
}
h1 span::after {
  content: "";
  position: absolute;
  left: .08em;
  right: .04em;
  bottom: .04em;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  opacity: .72;
}
.hero-copy p { margin: 18px 0 0; color: #536251; font-size: clamp(16px, 1.35vw, 19px); line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.btn { font-family: var(--font-body); min-height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 7px; padding: 10px 18px; border: 1px solid transparent; font-size: 14px; font-weight: 750; transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 8px 18px rgba(108,119,66,.2); }
.btn-primary:hover { background: var(--green-dark); }
.btn-outline { background: rgba(255,255,255,.76); color: var(--green-dark); border-color: rgba(108,119,66,.38); }
.btn-outline:hover { background: var(--green-soft); }
.btn-small { min-height: 38px; padding: 9px 15px; font-size: 13px; }
.hero-badge { justify-self: end; margin-right: 0; width: clamp(210px, 18vw, 280px); aspect-ratio: 1; display: block; }
.hero-badge img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 14px 28px rgba(46,61,44,.14)); }

.benefits { background: var(--cream-2); }
.benefits-panel {
  width: 100%;
  min-height: 82px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper);
  border-block: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(46,61,44,.07);
  color: var(--ink);
}
.benefits .container { width: 100%; max-width: none; }
.benefits article { display: flex; align-items: center; justify-content: center; gap: 13px; padding: 16px 18px; min-width: 0; }
.benefits article + article { border-left: 1px solid var(--line); }
.round-icon { width: 38px; height: 38px; flex: 0 0 38px; border-radius: 50%; display: grid; place-items: center; background: var(--green); color: #fff; font-size: 18px; }
.benefits strong { color: var(--ink); font-size: 15px; line-height: 1.2; }

.section { padding: 42px 0; }
.section[id] { scroll-margin-top: 104px; }
.section-tight { padding: 30px 0 42px; }
h2 { margin: 0 0 20px; color: var(--green-dark); font-family: var(--font-heading); font-size: clamp(28px, 2.7vw, 42px); line-height: 1.05; letter-spacing: 0; font-weight: 600; }
h3 { margin: 0; color: var(--green-dark); font-family: var(--font-heading); font-size: 26px; line-height: 1.08; letter-spacing: 0; font-weight: 600; }
.eyebrow { font-family: var(--font-body); margin: 0 0 8px; color: var(--gold); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.apartments { background: var(--cream-2); }
.apartments-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.apartments .apartments-grid { width: 100%; max-width: none; padding-inline: clamp(18px, 2.8vw, 42px); }
.intro-card, .room-card, .info-card { font-family: var(--font-body); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.intro-card { position: relative; min-height: 380px; padding: 24px; display: flex; flex-direction: column; align-items: flex-start; }
.intro-card.line-card { background-image: url("/assets/images/hintergrund-fewo.png?v=20260616-fewo-bg"); background-size: cover; background-position: center bottom; background-repeat: no-repeat; }
.intro-card.line-card::after { display: none; }
.intro-card h2 { font-size: clamp(30px, 2.35vw, 36px); }
.intro-card h2 { width: 100%; text-align: center; }
.intro-card h2 .title-small { display: block; font-size: .68em; line-height: 1; }
.intro-card h2 .title-main { display: inline-block; }
.intro-card p { margin: 0 0 25px; color: var(--muted); font-size: 15px; }
.line-card::after { content: ""; position: absolute; right: 16px; bottom: 12px; width: 118px; height: 58px; opacity: .22; background: radial-gradient(circle at 24px 46px, transparent 13px, var(--green) 14px, transparent 15px), linear-gradient(135deg, transparent 45%, var(--green) 46%, transparent 48%), linear-gradient(25deg, transparent 50%, var(--green) 51%, transparent 53%); pointer-events: none; }
.room-cards { display: contents; }
.room-card > img { width: 100%; height: 155px; object-fit: cover; object-position: center 68%; }
.room-body { padding: 15px; }
.room-body h3 { margin-bottom: 9px; }
.room-facts { display: flex; align-items: center; justify-content: flex-start; gap: 10px; color: var(--ink); font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.room-facts span + span { position: relative; padding-left: 11px; }
.room-facts span + span::before { content: ""; position: absolute; left: 0; top: 50%; width: 1px; height: 14px; background: var(--line); transform: translateY(-50%); }
.room-amenity-icons { display: block; width: auto; max-width: 100%; height: 80px; margin: 0 auto 12px 0; object-fit: contain; object-position: left center; }
.room-icons { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 11px; }
.room-icons span { padding: 4px 7px; border-radius: 999px; background: var(--green-soft); color: var(--green-dark); font-size: 11px; font-weight: 750; }
.room-body a, .info-card a { font-family: var(--font-body); font-size: 15px; font-weight: 800; }
.room-body a { position: relative; display: inline-flex; align-items: center; gap: 6px; color: var(--green); transition: color .18s ease, transform .18s ease; }
.room-body a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px; background: currentColor; transform: scaleX(0); transform-origin: left center; transition: transform .18s ease; }
.room-body a:hover, .room-body a:focus-visible { color: var(--green-dark); transform: translateX(3px); }
.room-body a:hover::after, .room-body a:focus-visible::after { transform: scaleX(1); }
.info-card a { color: #fff; }

.seasons { background: var(--cream-2); }
.seasons .container { width: 100%; max-width: none; padding-inline: clamp(18px, 2.8vw, 42px); }
.seasons h2 { font-size: clamp(26px, 2.2vw, 36px); margin-bottom: 16px; }
.season-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.season-card { position: relative; height: 184px; min-height: 0; border-radius: 10px; overflow: hidden; display: flex; align-items: stretch; padding: 0; color: #fff; background: var(--green-dark); box-shadow: 0 8px 18px rgba(46,61,44,.14); border: 1px solid rgba(255,255,255,.42); }
.season-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.season-card-summer img { object-position: center 47%; }
.season-card-winter img { object-position: center 50%; }
.season-card::after { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(90deg, rgba(43,58,35,.46) 0%, rgba(67,82,49,.32) 36%, rgba(67,82,49,.14) 67%, rgba(67,82,49,.04) 100%); pointer-events: none; }
.season-content { position: relative; z-index: 1; width: min(62%, 520px); padding: 18px 20px 16px 96px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; }
.season-kicker { margin: 0 0 1px; color: #fff; font-family: var(--font-heading); font-size: clamp(16px, 1.18vw, 21px); line-height: 1; font-weight: 700; text-shadow: 0 2px 8px rgba(0,0,0,.34); }
.season-card h3 { margin: 0; color: #fff; font-family: var(--font-heading); font-size: clamp(30px, 2.35vw, 42px); line-height: .96; font-weight: 700; text-shadow: 0 2px 9px rgba(0,0,0,.36); }
.season-text { margin: 8px 0 13px; color: #fff; max-width: 360px; font-size: clamp(13px, .9vw, 15px); line-height: 1.34; font-weight: 650; text-shadow: 0 2px 8px rgba(0,0,0,.36); }
.season-action { display: inline-flex; align-items: center; gap: 0; margin-top: auto; }
.season-symbol { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); width: 58px; height: 58px; display: inline-grid; place-items: center; color: rgba(255,255,255,.94); font-family: Georgia, serif; font-size: 58px; line-height: 1; text-align: center; text-shadow: 0 2px 8px rgba(0,0,0,.28); pointer-events: none; }
.btn-glass { min-height: 36px; min-width: 214px; justify-content: center; padding: 8px 22px; font-size: 12px; color: #fff; border-color: rgba(255,255,255,.25); background: rgba(108,119,66,.94); white-space: nowrap; box-shadow: 0 5px 12px rgba(0,0,0,.18); }
.btn-glass:hover { color: #fff; background: var(--green-dark); }

.info { background: var(--cream-2); }
.info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.info-grid.container { width: calc(100% - 56px); max-width: none; }
.info-card { position: relative; min-height: 190px; padding: 18px; }
.info-card h2 { font-size: 22px; margin-bottom: 8px; }
.info-card p { margin: 0 0 12px; color: var(--muted); font-size: 14px; }
.host-mini { display: grid; grid-template-columns: 92px 1fr; gap: 14px; align-items: start; }
.host-mini img, .location-mini img { width: 100%; height: 86px; object-fit: cover; border-radius: 6px; }
.quote-mini { align-self: stretch; display: flex; flex-direction: column; min-height: 190px; background: var(--paper); }
.quote-mini h2 { margin-bottom: 22px; }
.review-chip { align-self: flex-start; margin-bottom: 18px; padding: 8px 14px; border-radius: 999px; background: var(--white); color: var(--ink); box-shadow: 0 8px 18px rgba(46,61,44,.08); font-size: 13px; line-height: 1; font-weight: 800; }
.review-summary { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; width: 100%; margin-top: 0; padding-top: 2px; padding-bottom: 2px; border-bottom: 1px solid var(--line); }
.review-score { display: flex; align-items: baseline; gap: 12px; min-width: 0; }
.stars { flex: 0 0 auto; color: var(--gold); letter-spacing: .08em; font-size: 14px; line-height: 1; margin: 0 0 8px; }
.quote-mini strong { display: block; }
.review-rating { color: var(--green-dark); font-family: var(--font-heading); font-size: 45px; font-weight: 700; line-height: .9; }
.review-count { flex: 0 1 auto; margin: 0 0 8px auto; color: var(--green) !important; font-size: 14px !important; line-height: 1.25; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.review-count:hover { color: var(--green-dark) !important; }
.location-mini img { margin-bottom: 12px; }
.cta-mini { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; background: #fffdf8; }
.info-grid .cta-mini { grid-column: span 2; }
.cta-mini.line-card { display: grid; grid-template-columns: minmax(220px, 320px) minmax(240px, 1fr); justify-content: stretch; gap: 14px 18px; align-items: center; }
.cta-mini.line-card h2,
.cta-mini.line-card p,
.cta-mini.line-card > .btn { grid-column: 1; }
.cta-mini.line-card h2 { align-self: end; }
.cta-mini.line-card p { align-self: start; }
.cta-mini.line-card > .btn { justify-self: start; align-self: start; }
.cta-mini-images { grid-column: 2; grid-row: 1 / 4; width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin: 0; }
.cta-mini-photo { display: block; min-width: 0; border-radius: 8px; overflow: hidden; box-shadow: 0 10px 22px rgba(46,61,44,.11); }
.cta-mini-photo img { width: 100%; aspect-ratio: 4 / 3; height: auto; min-height: 0; display: block; object-fit: cover; }

.amenities { background: #fbfaf6; border-top: 1px solid rgba(94, 88, 70, .16); border-bottom: 1px solid rgba(94, 88, 70, .16); }
.amenities-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); align-items: stretch; gap: 0; padding: 0; }
.amenity-item { min-height: clamp(88px, 8vw, 112px); display: flex; align-items: center; justify-content: center; gap: clamp(7px, .7vw, 10px); padding: 16px clamp(6px, 1vw, 16px); color: #4d5c35; text-align: left; font-family: var(--font-heading); font-size: clamp(15px, 1.08vw, 19px); line-height: 1.05; font-weight: 700; white-space: normal; }
.amenity-item + .amenity-item { border-left: 1px solid rgba(94, 88, 70, .18); }
.amenity-item img { flex: 0 0 auto; width: clamp(34px, 3.2vw, 46px); height: clamp(34px, 3.2vw, 46px); object-fit: contain; }
.amenity-item span { min-width: 0; }

@media (max-width: 900px) {
  .amenities-row { grid-template-columns: 1fr; }
  .amenity-item { min-height: 84px; justify-content: flex-start; padding: 15px clamp(18px, 6vw, 34px); font-size: 17px; }
  .amenity-item + .amenity-item { border-left: 0; }
  .amenity-item + .amenity-item { border-top: 1px solid rgba(94, 88, 70, .18); }
  .amenity-item:nth-child(even) { border-left: 0; }
  .amenity-item:last-child { grid-column: auto; justify-content: flex-start; text-align: left; }
}

.site-footer { position: relative; overflow: hidden; color: #39442b; background: #f8f7f1; }
.footer-main { position: relative; min-height: 92px; border-top: 1px solid rgba(108,119,66,.28); background: #f8f7f1; }
.footer-main::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(248,247,241,.76), rgba(248,247,241,.68)), url("/assets/images/berge-footer-mirrored.png"); background-size: cover; background-position: center 95%; opacity: 1; filter: none; }
.site-footer::after { display: none; }
.footer-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(250px, 1.6fr) minmax(240px, 1.2fr) minmax(120px, .72fr); gap: clamp(22px, 4.2vw, 72px); align-items: start; padding: 10px 0 8px; }
.footer-brand { position: relative; padding-left: 10px; min-height: 66px; display: flex; flex-direction: column; justify-content: center; }
.footer-logo { width: clamp(220px, 23vw, 292px); }
.footer-logo img { width: 100%; max-height: 97px; object-fit: contain; object-position: left center; }
.footer-brand p { margin: -5px 0 0 10px; color: var(--green-dark); font-family: var(--font-heading); font-size: 14px; font-weight: 700; letter-spacing: .04em; }
.footer-block { min-width: 0; }
.site-footer strong { display: block; margin-bottom: 5px; color: #4d5632; font-family: var(--font-heading); font-size: 11px; font-weight: 800; letter-spacing: .02em; }
.site-footer a, .site-footer span, address { display: block; margin: 2px 0; color: #4e5744; font-style: normal; font-size: 10px; line-height: 1.2; }
.site-footer a:hover { color: var(--green); }
.footer-contact span, .footer-contact a { position: relative; padding-left: 20px; }
.footer-icon { position: absolute; left: 0; top: 0; width: 14px; padding: 0 !important; margin: 0 !important; color: var(--green); font-size: 11px !important; line-height: 1.05 !important; text-align: center; }
.copyright { position: relative; z-index: 2; background: var(--green); color: #fff; text-align: center; padding: 6px 20px 7px; font-size: 12px; line-height: 1.1; }

@media (max-width: 1180px) {
  .container { width: min(100% - 40px, var(--container)); }
  .brand { width: 240px; }
  .site-nav { gap: 22px; }
  .apartments-grid { grid-template-columns: 1fr; }
  .intro-card.line-card {
    background-color: rgba(255,253,248,.97);
    background-image: linear-gradient(rgba(255,253,248,.78), rgba(255,253,248,.82)), url("/assets/images/hintergrund-fewo.png?v=20260616-fewo-bg");
  }
  .room-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
  .room-card > img { height: 155px; }
  .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .info-grid .quote-mini { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .header-inner { min-height: 76px; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; left: 20px; right: 20px; top: 84px; display: grid; gap: 0; padding: 8px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); opacity: 0; transform: translateY(-10px); pointer-events: none; transition: .18s ease; }
  .site-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .site-nav a { padding: 13px 14px; border-radius: 6px; }
  .site-nav a::after { display: none; }
  .site-nav a.active, .site-nav a:hover { background: var(--green-soft); color: var(--green-dark); }
  .hero { min-height: 430px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-badge { justify-self: start; margin: 18px 0 0; width: 190px; }
  .benefits-panel { grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
  .benefits article:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .benefits article:nth-child(4) { border-top: 1px solid var(--line); }
  .apartments-grid { grid-template-columns: 1fr; }
  .room-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .intro-card { min-height: auto; }
  .season-card { height: 190px; min-height: 0; }
  .season-content { width: min(58%, 430px); padding-left: 96px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 44px; }
}

@media (min-width: 621px) and (max-width: 900px) {
  .hero::after {
    background: linear-gradient(90deg, rgba(246,241,229,.9), rgba(246,241,229,.62));
  }

  .hero-soft {
    width: 100%;
    background: linear-gradient(90deg, rgba(255,253,248,.93), rgba(255,253,248,.78), rgba(255,253,248,0));
  }
}

@media (max-width: 620px) {
  .container { width: min(100% - 24px, var(--container)); }
  .brand { width: 218px; }
  .brand img { max-height: 62px; }
  .hero { min-height: 500px; }
  .hero::after { background: linear-gradient(90deg, rgba(246,241,229,.9), rgba(246,241,229,.62)); }
  .hero-soft { width: 100%; }
  h1 { font-size: clamp(31px, 9vw, 42px); }
  h1 span { font-size: clamp(50px, 15vw, 66px); }
  .hero-copy p { font-size: 16px; }
  .hero-actions { display: grid; }
  .benefits-panel { grid-template-columns: 1fr; }
  .benefits article { justify-content: flex-start; min-height: 66px; }
  .benefits article + article { border-left: 0; border-top: 1px solid var(--line); }
  .section { padding: 32px 0; }
  .section-tight { padding: 24px 0 32px; }
  .room-cards, .season-grid, .info-grid { grid-template-columns: 1fr; }
  .info-grid .cta-mini { grid-column: auto; }
  .quote-mini h2 { margin-bottom: 20px; }
  .review-summary { align-items: flex-start; flex-direction: column; gap: 10px; }
  .review-score { align-items: baseline; }
  .review-count { margin-bottom: 12px; white-space: normal; }
  .room-card > img { height: 155px; }
  .season-card { height: auto; min-height: 210px; }
  .season-content { width: 100%; padding: 20px 18px 18px 92px; }
  .host-mini { grid-template-columns: 84px 1fr; }
  .amenities-row { grid-template-columns: 1fr; }
  .amenity-item { min-height: 84px; padding: 16px 22px; }
  .amenity-item:nth-child(even) { border-left: 0; }
  .amenity-item + .amenity-item { border-top: 1px solid rgba(94, 88, 70, .18); }
  .amenity-item:last-child { grid-column: auto; }
  .site-footer::after { right: 20px; top: 10px; font-size: 84px; }
  .footer-grid { grid-template-columns: 1fr; gap: 17px; padding: 22px 0 20px; }
  .footer-brand { padding-left: 20px; }
  .footer-logo { width: min(280px, 86vw); }
  .footer-brand p { margin-left: 8px; font-size: 14px; }
}

@media (max-width: 360px) {
  .container { width: min(100% - 20px, var(--container)); }
  .brand { width: 182px; }
  .btn { width: 100%; }
}

.intro-card h2 .title-main::after { content: ""; display: block; width: 100%; height: 2px; margin: 14px auto 0; background: var(--green); border-radius: 999px; opacity: .9; }

.round-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.round-icon svg.family-icon { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

/* CTA card apartment background */
.cta-mini.line-card { background-image: linear-gradient(90deg, rgba(31,42,28,.82) 0%, rgba(49,62,42,.56) 45%, rgba(49,62,42,.24) 100%), url("/assets/images/hintergrund-fewo.png?v=20260616-fewo-bg"); background-size: cover; background-position: center bottom; background-repeat: no-repeat; color: #fff; }
.cta-mini.line-card::after { display: none; }
.cta-mini.line-card h2, .cta-mini.line-card p { color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.28); }


.location-mini { display: grid; grid-template-columns: minmax(104px, 38%) minmax(0, 1fr); gap: 15px; align-items: stretch; padding: 14px; }
.location-mini img { width: 100%; height: 100%; min-height: 158px; margin: 0; object-fit: cover; object-position: center; border-radius: 8px; }
.location-copy { display: flex; min-width: 0; flex-direction: column; justify-content: center; align-items: flex-start; }
.location-copy h2 { margin-bottom: 9px; }
.location-copy p { margin-bottom: 14px; }
 (max-width: 620px) {
  .location-mini { grid-template-columns: 1fr; }
  .location-mini img { height: 150px; min-height: 0; }
}
.text-link { position: relative; display: inline-flex; align-items: center; gap: 6px; color: var(--green) !important; transition: color .18s ease, transform .18s ease; }
.text-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px; background: currentColor; transform: scaleX(0); transform-origin: left center; transition: transform .18s ease; }
.text-link:hover, .text-link:focus-visible { color: var(--green-dark) !important; transform: translateX(3px); }
.text-link:hover::after, .text-link:focus-visible::after { transform: scaleX(1); }
.location-mini { display: flex; min-height: 190px; padding: 18px 20px; background-image: linear-gradient(90deg, rgba(255,253,248,.94) 0%, rgba(255,253,248,.84) 45%, rgba(255,253,248,.34) 72%, rgba(255,253,248,.08) 100%), url("/assets/images/edelweiss.png"); background-size: cover; background-position: center right; background-repeat: no-repeat; }
.location-copy { max-width: 58%; }
@media (max-width: 620px) {
  .location-mini { min-height: 210px; background-position: center right; }
  .location-copy { max-width: 74%; }
}
.location-mini { display: grid; grid-template-columns: minmax(104px, 38%) minmax(0, 1fr); gap: 15px; align-items: stretch; padding: 14px; min-height: 190px; background-image: linear-gradient(90deg, rgba(255,253,248,.9), rgba(255,253,248,.64)), url("/assets/images/edelweiss.png"); background-size: cover; background-position: center right; background-repeat: no-repeat; }
.location-mini img { width: 100%; height: 100%; min-height: 158px; margin: 0; object-fit: cover; object-position: center; border-radius: 8px; }
.location-copy { max-width: none; }
@media (max-width: 620px) {
  .location-mini { grid-template-columns: 1fr; min-height: 210px; }
  .location-mini img { height: 150px; min-height: 0; }
  .location-copy { max-width: none; }
}
.cta-mini.line-card { background-image: linear-gradient(90deg, rgba(255,253,248,.92), rgba(255,253,248,.7)), url("/assets/images/edelweiss.png"); background-size: cover; background-position: center right; background-repeat: no-repeat; color: var(--ink); }
.cta-mini.line-card h2 { color: var(--green-dark); text-shadow: none; }
.cta-mini.line-card p { color: var(--muted); text-shadow: none; }
.location-mini { display: grid; grid-template-columns: minmax(104px, 38%) minmax(0, 1fr); gap: 15px; align-items: stretch; padding: 14px; min-height: 190px; background: var(--paper); background-image: none; }
@media (max-width: 620px) {
  .location-mini { grid-template-columns: 1fr; min-height: 210px; background: var(--paper); background-image: none; }
  .cta-mini.line-card { grid-template-columns: 1fr; }
  .cta-mini-images { grid-column: 1; grid-row: auto; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 2px 0 4px; }
  .cta-mini-photo img { aspect-ratio: 1 / 1; }
}
@media (max-width: 760px) {
  .info-grid .location-mini {
    grid-template-columns: minmax(96px, 36%) minmax(0, 1fr);
    min-height: 170px;
  }

  .info-grid .location-mini img {
    height: 100%;
    min-height: 142px;
  }
}
@media (max-width: 900px) {
  .info-grid .location-mini,
  .info-grid .cta-mini {
    grid-column: 1 / -1;
  }
}
@media (max-width: 1080px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-grid .location-mini,
  .info-grid .cta-mini {
    grid-column: 1 / -1;
  }
}
@media (min-width: 1081px) {
  .info-grid {
    grid-template-columns: minmax(320px, 1fr) minmax(0, 2fr);
  }

  .info-grid .location-mini,
  .info-grid .cta-mini {
    grid-column: auto;
  }
}
.header-inner.container,
.hero-grid.container { width: 100%; max-width: none; padding-inline: clamp(18px, 2.8vw, 42px); }
@media (max-width: 620px) {
  .header-inner.container,
  .hero-grid.container { padding-inline: 12px; }
}
.hero-grid.container { padding-inline: clamp(34px, 6vw, 96px); }
@media (max-width: 620px) {
  .hero-grid.container { padding-inline: 24px; }
}
.hero-grid.container { padding-inline: clamp(56px, 9vw, 150px); }
@media (max-width: 620px) {
  .hero-grid.container { padding-inline: 32px; }
}

.footer-contact,
.footer-info {
  padding-top: 1px;
}

.site-footer .footer-block strong {
  margin-bottom: 8px;
  color: #46502f;
  font-size: 11.5px;
  line-height: 1;
  letter-spacing: .08em;
}

.footer-contact .footer-line {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  column-gap: 8px;
  align-items: start;
  margin: 0 0 6px;
  padding: 0;
  color: #46503a;
  text-decoration: none;
}

.footer-contact .footer-line:last-child {
  margin-bottom: 0;
}

.footer-contact .footer-text {
  display: block;
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: 11px;
  line-height: 1.35;
}

.footer-contact .footer-icon {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin: 1px 0 0 !important;
  padding: 0 !important;
  border-radius: 50%;
  background: rgba(108, 119, 66, .12);
  color: #66713f;
  font-size: 9.5px !important;
  line-height: 1 !important;
}

.footer-contact a.footer-line {
  transition: color .18s ease;
}

.footer-contact a.footer-line:hover {
  color: var(--green-dark);
}

.footer-contact a.footer-line:hover .footer-icon {
  background: rgba(108, 119, 66, .18);
}

.footer-info a {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0 0 5px;
  color: #46503a;
  font-size: 11px;
  line-height: 1.25;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.footer-info a:last-child {
  margin-bottom: 0;
}

.footer-info a:hover {
  color: var(--green-dark);
  transform: translateX(2px);
}

.footer-main {
  min-height: 176px;
}

.footer-grid {
  gap: clamp(34px, 5.4vw, 92px);
  align-items: center;
  padding: 34px 0 32px;
}

.footer-contact,
.footer-info {
  padding-top: 4px;
}

.site-footer .footer-block strong {
  margin-bottom: 14px;
  color: #424c2c;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: .095em;
}

.footer-contact .footer-line {
  grid-template-columns: 22px minmax(0, 1fr);
  column-gap: 11px;
  margin-bottom: 11px;
}

.footer-contact .footer-text {
  font-size: 13px;
  line-height: 1.45;
}

.footer-contact .footer-icon {
  width: 22px;
  height: 22px;
  margin: 0 !important;
  background: rgba(108, 119, 66, .13);
  color: #5f6a3b;
  font-size: 11.5px !important;
}

.footer-info a {
  margin-bottom: 9px;
  font-size: 13px;
  line-height: 1.35;
}

.copyright {
  padding: 9px 20px 10px;
  font-size: 13px;
  line-height: 1.2;
}

.site-footer .copyright span {
  margin: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.site-footer .copyright .copyright-desktop {
  display: inline;
}

.site-footer .copyright .copyright-mobile {
  display: none;
}

.footer-address-link .footer-text-address-mobile {
  display: none;
}

@media (max-width: 1180px) {
  .footer-grid {
    gap: 28px 52px;
    padding: 30px 0 28px;
  }
}

@media (max-width: 899px) {
  .footer-main {
    min-height: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
    padding: 28px 0 26px;
  }

  .footer-contact .footer-text,
  .footer-info a {
    font-size: 13px;
  }
}

.footer-contact .footer-icon svg {
  display: block;
  width: 13px;
  height: 13px;
  stroke: currentColor;
}

.footer-contact,
.footer-info {
  align-self: start;
}

.footer-region-logos {
  display: grid;
  gap: 7px;
  justify-items: start;
  margin: 14px 0 0 10px;
}

.footer-region-logos img {
  display: block;
  width: 135px;
  height: auto;
  opacity: .92;
}

@media (max-width: 899px) {
  .footer-region-logos {
    margin-left: 8px;
  }
}

.footer-info .footer-region-logos {
  margin: 15px 0 0;
}

@media (max-width: 899px) {
  .footer-info .footer-region-logos {
    margin-left: 0;
  }
}

.footer-info .footer-region-logos {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
}

.footer-info .footer-region-logos img {
  width: min(118px, calc((100% - 10px) / 2));
  height: auto;
}

.footer-info .footer-region-logos img {
  width: 96px;
}

.footer-info .footer-region-logos img {
  width: 76px;
}

.footer-info .footer-region-logos img {
  width: 57px;
}

.footer-info .footer-region-logos {
  margin: 25px 0 0;
}
.booking-review-block { width: 100%; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); display: grid; gap: 0; align-items: start; justify-items: start; }
.booking-review-link { color: var(--green) !important; font-size: 14px !important; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.booking-review-link:hover { color: var(--green-dark) !important; }

@keyframes hh-hero-settle {
  from {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-copy,
.pitztal-hero-copy {
  animation: hh-hero-settle .72s ease-out both;
}

.hero-badge {
  animation: hh-hero-settle .8s .16s ease-out both;
}

.room-card img,
.season-card img,
.pitztal-card img,
.pitztal-service-card img,
.info-card img,
.pitztal-home-card > img {
  transition: transform .65s ease, filter .65s ease;
}

.room-card:hover img,
.season-card:hover img,
.pitztal-card:hover img,
.pitztal-service-card:hover img,
.info-card:hover img,
.pitztal-home-card:hover > img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.btn,
.site-nav a,
.room-body a,
.info-card a,
.pitztal-card,
.pitztal-service-card,
.season-card {
  transition-duration: .22s;
}

.hh-animate-ready .hh-reveal,
.hh-animate-ready :is(
  .benefits article,
  .intro-card,
  .room-card,
  .season-card,
  .info-card,
  .amenity-item,
  .review-summary,
  .footer-brand,
  .footer-contact,
  .footer-info,
  .fewo-tabs-wrap,
  .fewo-copy-card,
  .fewo-gallery,
  .fewo-equipment,
  .equipment-group,
  .fewo-other,
  .fewo-request,
  .request-copy,
  .request-action,
  .pitztal-season-intro,
  .pitztal-card,
  .pitztal-service-card,
  .pitztal-home-card,
  .map-panel,
  .contact-card,
  .contact-form,
  .booking-panel,
  .booking-shell,
  .booking-quote-banner,
  .booking-host-photo,
  .booking-host-copy,
  .booking-contact-link
) {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(3px);
  transition:
    opacity .72s ease,
    transform .72s ease,
    filter .72s ease;
  transition-delay: var(--hh-delay, 0ms);
  will-change: opacity, transform;
}

.hh-animate-ready .hh-reveal.is-visible,
.hh-animate-ready :is(
  .benefits article,
  .intro-card,
  .room-card,
  .season-card,
  .info-card,
  .amenity-item,
  .review-summary,
  .footer-brand,
  .footer-contact,
  .footer-info,
  .fewo-tabs-wrap,
  .fewo-copy-card,
  .fewo-gallery,
  .fewo-equipment,
  .equipment-group,
  .fewo-other,
  .fewo-request,
  .request-copy,
  .request-action,
  .pitztal-season-intro,
  .pitztal-card,
  .pitztal-service-card,
  .pitztal-home-card,
  .map-panel,
  .contact-card,
  .contact-form,
  .booking-panel,
  .booking-shell,
  .booking-quote-banner,
  .booking-host-photo,
  .booking-host-copy,
  .booking-contact-link
).is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .hh-animate-ready .hh-reveal,
  .hh-animate-ready :is(
    .benefits article,
    .intro-card,
    .room-card,
    .season-card,
    .info-card,
    .amenity-item,
    .review-summary,
    .footer-brand,
    .footer-contact,
    .footer-info,
    .fewo-tabs-wrap,
    .fewo-copy-card,
    .fewo-gallery,
    .fewo-equipment,
    .equipment-group,
    .fewo-other,
    .fewo-request,
    .request-copy,
    .request-action,
    .pitztal-season-intro,
    .pitztal-card,
    .pitztal-service-card,
    .pitztal-home-card,
    .map-panel,
    .contact-card,
    .contact-form,
    .booking-panel,
    .booking-shell,
    .booking-quote-banner,
    .booking-host-photo,
    .booking-host-copy,
    .booking-contact-link,
    .legal-card
  ) {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

body.offcanvas-open {
  overflow: hidden;
}

.menu-toggle {
  display: none;
  flex: 0 0 auto;
  order: 3;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: border-color .22s ease, background .22s ease, transform .22s ease;
}

.site-header .brand {
  order: 1;
}

.site-header .site-nav {
  order: 2;
  margin-left: auto;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(108, 119, 66, .42);
  background: var(--paper);
}

.offcanvas-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(16, 20, 16, .58);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .34s ease, visibility .34s ease;
}

.offcanvas-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.offcanvas-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 910;
  width: min(460px, 100vw);
  height: 100vh;
  height: 100dvh;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  overflow: hidden;
  color: #151713;
  background:
    linear-gradient(180deg, rgba(239, 238, 234, .9) 0%, rgba(239, 238, 234, .78) 48%, rgba(239, 238, 234, .66) 100%),
    url("/assets/images/offcanvas-hintergrund.jpg"),
    #EFEEEA;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  box-shadow: -28px 0 56px rgba(0, 0, 0, .24);
  transform: translateX(102%);
  visibility: hidden;
  transition: transform .46s cubic-bezier(.22, .72, .23, 1), visibility .46s ease;
}

.offcanvas-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  background-image:
    linear-gradient(90deg, rgba(65, 57, 43, .035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(65, 57, 43, .026) 1px, transparent 1px);
  background-size: 4px 4px, 6px 6px;
  mix-blend-mode: multiply;
}

.offcanvas-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}

.offcanvas-close {
  position: absolute;
  top: clamp(28px, 5.6vh, 56px);
  right: clamp(26px, 5.3vw, 46px);
  z-index: 2;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #151713;
  cursor: pointer;
}

.offcanvas-close::before,
.offcanvas-close::after {
  content: "";
  position: absolute;
  width: 27px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease, color .2s ease;
}

.offcanvas-close::after {
  transform: rotate(-45deg);
}

.offcanvas-close:hover::before {
  transform: rotate(45deg) scaleX(1.12);
}

.offcanvas-close:hover::after {
  transform: rotate(-45deg) scaleX(1.12);
}

.offcanvas-head {
  position: relative;
  z-index: 1;
  padding: clamp(70px, 10vh, 96px) clamp(34px, 8vw, 58px) 0;
}

.offcanvas-logo {
  display: inline-flex;
  width: min(192px, 54vw);
}

.offcanvas-logo img {
  width: 100%;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}

.offcanvas-rule {
  position: relative;
  z-index: 1;
  height: 1px;
  margin: clamp(28px, 4.4vh, 38px) clamp(34px, 8vw, 58px) 0;
  background: rgba(21, 23, 19, .68);
}

.offcanvas-nav {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: clamp(27px, 4.3vh, 40px);
  padding: clamp(35px, 5vh, 48px) clamp(34px, 8vw, 58px) 22px;
}

.offcanvas-nav a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  color: #161914;
  font-family: var(--font-body);
  font-size: clamp(16px, 2.1vw, 21px);
  font-weight: 520;
  line-height: 1.1;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .22s ease, transform .22s ease;
}

.offcanvas-nav a::after {
  content: "\2192";
  justify-self: end;
  color: currentColor;
  font-size: 23px;
  line-height: 1;
  transform: translateX(0);
  transition: transform .24s ease;
}

.offcanvas-nav a:hover,
.offcanvas-nav a:focus-visible,
.offcanvas-nav a.is-active {
  color: var(--green-dark);
}

.offcanvas-nav a:hover::after,
.offcanvas-nav a:focus-visible::after {
  transform: translateX(8px);
}

.offcanvas-illustration {
  position: relative;
  z-index: 1;
  align-self: end;
  width: 100%;
  min-height: clamp(145px, 23vh, 220px);
  background-image: none;
  opacity: 1;
  filter: none;
}

.offcanvas-contact {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 22px clamp(22px, 5vw, 42px) clamp(30px, 4.8vh, 42px);
}

.offcanvas-contact a {
  min-width: 0;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  padding: 0 10px;
  color: #34352e;
  font-size: 11px;
  line-height: 1.25;
  text-align: center;
  transition: color .2s ease;
}

.offcanvas-contact a + a {
  border-left: 1px solid rgba(21, 23, 19, .24);
}

.offcanvas-contact svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offcanvas-contact span {
  display: block;
  min-width: 0;
  white-space: nowrap;
  text-transform: none;
}

.offcanvas-contact a:hover,
.offcanvas-contact a:focus-visible {
  color: var(--green-dark);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
  }

  .site-nav.is-open {
    display: none;
  }
}

@media (max-width: 520px) {
  .offcanvas-menu {
    width: 100vw;
  }

  .offcanvas-head {
    padding-top: 74px;
  }

  .offcanvas-nav {
    gap: clamp(24px, 4.2vh, 34px);
  }

  .offcanvas-contact {
    padding-inline: 12px;
  }

  .offcanvas-contact a {
    gap: 7px;
    padding-inline: 6px;
    font-size: 10px;
  }

  .offcanvas-contact svg {
    width: 20px;
    height: 20px;
  }
}

/* Responsive polish up to 1280px only */
@media (max-width: 1280px) {
  .room-body a,
  .review-count,
  .text-link,
  .footer-info a,
  .footer-contact .footer-line {
    min-height: 34px;
    align-items: center;
  }

  .room-body a,
  .review-count,
  .text-link {
    display: inline-flex;
  }

  .footer-info a {
    display: flex;
    align-items: center;
    width: max-content;
  }

  .footer-contact .footer-line {
    align-items: center;
  }
}

@media (max-width: 620px) {
  .season-content {
    padding-left: 74px;
  }

  .season-symbol {
    left: 14px;
    width: 46px;
    height: 46px;
    font-size: 46px;
  }

  .season-action,
  .btn-glass {
    width: 100%;
    min-width: 0;
  }

  .btn-glass {
    min-height: 42px;
    padding-inline: 12px;
    white-space: normal;
    text-align: center;
  }

  .review-summary {
    gap: 8px;
  }
}

@media (max-width: 360px) {
  .season-content {
    padding-left: 66px;
  }

  .season-symbol {
    left: 12px;
    width: 40px;
    height: 40px;
    font-size: 40px;
  }
}
/* Responsive-Touchziel-Nachkorrektur */

@media (max-width: 1280px) {
  .footer-info a {
    min-width: 44px;
  }
}
/* Hero-Sticker mobil zentrieren */

@media (max-width: 900px) {
  .hero .hero-badge {
    justify-self: center;
    margin: 18px auto 0;
  }
}


/* Mobile footer redesign: scoped to viewports below 900px. */
.footer-mobile-actions { display: none; }

@media (max-width: 899px) {
  .footer-mobile-redesign {
    overflow: hidden;
    background: #faf7ed;
    color: #3c4432;
  }

  .hh-animate-ready .footer-mobile-redesign :is(.footer-brand, .footer-contact, .footer-info) {
    opacity: 1;
    transform: none;
    filter: none;
  }


  .footer-mobile-redesign .footer-main {
    min-height: 0;
    border-top: 0;
    background: #faf7ed;
  }

  .footer-mobile-redesign .footer-main::before {
    inset: auto 0 52px;
    height: 38%;
    min-height: 260px;
    background-image: linear-gradient(180deg, rgba(250,247,237,0) 0%, rgba(250,247,237,.28) 26%, rgba(250,247,237,.74) 100%), url("/assets/images/berge-footer-mirrored.png");
    background-size: cover;
    background-position: center bottom;
    opacity: .33;
  }

  .footer-mobile-redesign .footer-grid.container {
    width: min(92%, 820px);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: clamp(54px, 8vw, 76px) 0 34px;
  }

  .footer-mobile-redesign .footer-brand {
    min-height: 0;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 0 0 32px;
    text-align: center;
  }

  .footer-mobile-redesign .footer-logo {
    width: min(300px, 68vw);
    justify-content: center;
  }

  .footer-mobile-redesign .footer-logo img {
    max-height: 106px;
    object-position: center;
  }

  .footer-mobile-redesign .footer-brand p {
    margin: -2px 0 0;
    color: #64703d;
    font-size: clamp(17px, 3.9vw, 25px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: .15em;
  }

  .footer-mobile-redesign .footer-contact {
    width: 100%;
    margin: 0;
    padding: clamp(24px, 6vw, 32px) clamp(20px, 5.6vw, 32px);
    border: 1px solid rgba(108, 119, 66, .15);
    border-radius: 26px;
    background: rgba(255, 254, 249, .78);
    box-shadow: 0 18px 42px rgba(63, 64, 48, .08);
    backdrop-filter: blur(2px);
  }

  .footer-mobile-redesign .footer-contact strong {
    display: none;
  }

  .footer-mobile-redesign .footer-contact .footer-line {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 20px;
    align-items: center;
    min-height: 72px;
    margin: 0;
    padding: 0;
    color: #363c31;
  }

  .footer-mobile-redesign .footer-contact .footer-line + .footer-line {
    border-top: 1px solid rgba(108, 119, 66, .18);
  }

  .footer-mobile-redesign .footer-contact .footer-icon {
    width: 56px;
    height: 56px;
    margin: 0 !important;
    border-radius: 50%;
    background: rgba(226, 224, 211, .68);
    color: #66713f;
  }

  .footer-mobile-redesign .footer-contact .footer-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
  }

  .footer-mobile-redesign .footer-contact .footer-text {
    margin: 0;
    color: inherit;
    font-size: clamp(19px, 2.8vw, 29px);
    line-height: 1.28;
    letter-spacing: 0;
  }

  .footer-mobile-redesign .footer-contact .footer-text b {
    display: block;
    margin-bottom: 6px;
    font-weight: 800;
  }

  .footer-mobile-redesign .footer-address-link .footer-text-address-desktop {
    display: none;
  }

  .footer-mobile-redesign .footer-contact .footer-address-link {
    padding-bottom: 16px;
  }

  .footer-mobile-redesign .footer-address-link .footer-text-address-mobile {
    display: grid;
    gap: 4px;
    font-size: clamp(19px, 2.8vw, 29px);
    line-height: 1.24;
  }

  .footer-mobile-redesign .footer-address-link .footer-text-address-mobile,
  .footer-mobile-redesign .footer-address-link .footer-text-address-mobile b,
  .footer-mobile-redesign .footer-address-link .footer-text-address-mobile span {
    padding-left: 0;
  }

  .footer-mobile-redesign .footer-address-link .footer-text-address-mobile b,
  .footer-mobile-redesign .footer-address-link .footer-text-address-mobile span {
    margin: 0;
    font-size: inherit;
    line-height: inherit;
  }

  .footer-mobile-redesign .footer-address-link .footer-text-address-mobile b,
  .footer-mobile-redesign .footer-address-link .footer-text:not(.footer-text-address-desktop) b {
    display: none;
  }

  .footer-mobile-redesign .footer-mobile-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(10px, 2.6vw, 20px);
    width: 100%;
    margin: 28px 0 28px;
  }

  .footer-mobile-redesign .footer-mobile-actions a {
    min-width: 0;
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 clamp(10px, 2.8vw, 18px);
    border: 2px solid #687342;
    border-radius: 16px;
    background: rgba(255, 254, 249, .58);
    color: #687342;
    font-size: clamp(15px, 3.3vw, 24px);
    font-weight: 700;
    line-height: 1;
  }

  .footer-mobile-redesign .footer-mobile-actions svg {
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .footer-mobile-redesign .footer-mobile-actions span {
    display: inline;
    margin: 0;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
  }

  .footer-mobile-redesign .footer-info {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .footer-mobile-redesign .footer-info strong {
    display: grid;
    grid-template-columns: minmax(44px, 1fr) auto minmax(44px, 1fr);
    align-items: center;
    gap: 20px;
    width: min(72%, 540px);
    margin: 0 auto 22px;
    color: #5f6a3b;
    font-family: var(--font-heading);
    font-size: clamp(17px, 3.7vw, 25px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: .32em;
    text-align: center;
  }

  .footer-mobile-redesign .footer-info strong::before,
  .footer-mobile-redesign .footer-info strong::after {
    content: "";
    height: 1px;
    background: #687342;
  }

  .footer-mobile-redesign .footer-info::before {
    content: "";
    display: block;
    width: 64px;
    height: 28px;
    margin: 0 auto 8px;
    opacity: .48;
    background: #687342;
    clip-path: polygon(0 100%, 27% 34%, 38% 53%, 55% 0, 100% 100%, 74% 64%, 63% 82%, 51% 38%, 36% 72%, 27% 56%, 13% 100%);
  }

  .footer-mobile-redesign .footer-info > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 64px;
    margin: 0;
    border-bottom: 1px solid rgba(108, 119, 66, .17);
    color: #4f5b30;
    font-size: clamp(18px, 4.1vw, 26px);
    line-height: 1.2;
  }

  .footer-mobile-redesign .footer-info > a::after {
    content: "›";
    color: #687342;
    font-size: 42px;
    font-weight: 300;
    line-height: 1;
  }

  .footer-mobile-redesign .footer-region-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    width: 100%;
    margin: clamp(170px, 26vw, 230px) 0 0;
  }

  .footer-mobile-redesign .footer-info .footer-region-logos img,
  .footer-mobile-redesign .footer-region-logos img {
    width: auto;
    max-width: min(186px, 31vw);
    max-height: 62px;
    opacity: .9;
  }

  .footer-mobile-redesign .copyright {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px 14px;
    border-radius: 10px 10px 0 0;
    background: #687342;
    color: #fff;
    font-size: clamp(16px, 3.7vw, 26px);
    line-height: 1.25;
    text-align: center;
  }

  .footer-mobile-redesign .copyright-mobile {
    display: none;
    color: inherit;
  }

  .footer-mobile-redesign .copyright-desktop {
    color: inherit;
  }
}

@media (max-width: 430px) {
  .footer-mobile-redesign .copyright {
    flex-direction: column;
    gap: 2px;
  }

  .site-footer.footer-mobile-redesign .copyright .copyright-desktop {
    display: none;
  }

  .site-footer.footer-mobile-redesign .copyright .copyright-mobile {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: inherit;
  }

  .site-footer.footer-mobile-redesign .copyright .copyright-mobile span {
    display: block;
  }
}

@media (max-width: 380px) {
  .footer-mobile-redesign .footer-grid.container {
    width: min(94%, 820px);
  }

  .footer-mobile-redesign .footer-brand p {
    font-size: 14px;
    letter-spacing: .12em;
  }

  .footer-mobile-redesign .footer-contact {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .footer-mobile-redesign .footer-contact .footer-line {
    grid-template-columns: 46px minmax(0, 1fr);
    column-gap: 14px;
    min-height: 62px;
  }

  .footer-mobile-redesign .footer-contact .footer-icon {
    width: 44px;
    height: 44px;
  }

  .footer-mobile-redesign .footer-contact .footer-icon svg {
    width: 24px;
    height: 24px;
  }

  .footer-mobile-redesign .footer-contact .footer-text {
    font-size: clamp(19px, 2.8vw, 29px);
  }

  .footer-mobile-redesign .footer-address-link .footer-text-address-mobile {
    gap: 4px;
  }

  .footer-mobile-redesign .footer-mobile-actions {
    gap: 8px;
  }

  .footer-mobile-redesign .footer-mobile-actions a {
    min-height: 52px;
    gap: 6px;
    padding-inline: 6px;
    font-size: 13px;
    border-radius: 14px;
  }

  .footer-mobile-redesign .footer-mobile-actions svg {
    width: 20px;
    height: 20px;
  }

  .footer-mobile-redesign .footer-info strong {
    gap: 12px;
    width: 84%;
    font-size: 14px;
    letter-spacing: .24em;
  }

  .footer-mobile-redesign .footer-info > a {
    min-height: 56px;
    font-size: 17px;
  }
}
