/* montafon.biz – Stylesheet
   Farbwelt: Tannengrün, Fels, Schnee, warmes Holz-Orange als Akzent. */
[hidden] { display: none !important; }
:root {
  --green-900: #163628;
  --green-700: #1f4d3a;
  --green-500: #2f6b50;
  --green-100: #e3efe8;
  --green-50:  #f1f7f3;
  --accent:    #d98c3f;
  --accent-700:#b86f28;
  --accent-100:#fbeede;
  --ink:       #26312c;
  --ink-soft:  #55635c;
  --muted:     #7a857f;
  --line:      #dfe5e1;
  --bg:        #f7f8f6;
  --card:      #ffffff;
  --danger:    #b3392f;
  --danger-100:#fbe4e1;
  --ok:        #2e7d4f;
  --ok-100:    #e2f3e8;
  --info-100:  #e6eef7;
  --radius:    14px;
  --radius-s:  8px;
  --shadow:    0 6px 24px rgba(22, 54, 40, .08);
  --shadow-s:  0 2px 8px rgba(22, 54, 40, .08);
  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --wrap: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font); font-size: 16.5px; line-height: 1.6; color: var(--ink); background: var(--bg); }
img { max-width: 100%; display: block; }
a { color: var(--green-700); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--green-900); }
h1, h2, h3, h4 { line-height: 1.2; color: var(--green-900); margin: 0 0 .5em; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.3em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: 820px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--accent); color: #fff; padding: 8px 14px; border-radius: 6px; z-index: 100; }
.skip-link:focus { left: 8px; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }
.lead { font-size: 1.15rem; color: var(--ink-soft); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; } .mt-1 { margin-top: 1rem; } .mb-0 { margin-bottom: 0; }
.section { padding: 3.2rem 0; }
.section-alt { background: var(--green-50); }
.section-head { max-width: 760px; margin: 0 auto 2rem; text-align: center; }
.section-head p { color: var(--ink-soft); }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 700; color: var(--accent-700); margin-bottom: .5rem; display: block; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: .5em; padding: .72em 1.3em; border-radius: 999px; font-weight: 600; text-decoration: none; border: 2px solid transparent; cursor: pointer; font-size: 1rem; line-height: 1.2; transition: transform .12s ease, box-shadow .12s ease, background .15s; font-family: inherit; }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-s); }
.btn-primary { background: var(--green-700); color: #fff; }
.btn-primary:hover { background: var(--green-900); color: #fff; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-700); color: #fff; }
.btn-outline { border-color: var(--green-700); color: var(--green-700); background: transparent; }
.btn-outline:hover { background: var(--green-100); }
.btn-light { background: #fff; color: var(--green-900); }
.btn-sm { padding: .45em .95em; font-size: .9rem; }
.btn-block { width: 100%; justify-content: center; }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 6px 24px -18px rgba(20,50,35,.35); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 78px; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--green-700); }
.brand-mark { width: 44px; height: 30px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-weight: 800; font-size: 1.05rem; color: var(--green-900); white-space: nowrap; letter-spacing: -.01em; }
.brand-sub { font-size: .75rem; color: var(--muted); letter-spacing: .04em; }
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 8px; cursor: pointer; flex-direction: column; justify-content: center; gap: 5px; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--green-900); border-radius: 2px; transition: transform .2s, opacity .2s; }
.main-nav ul { list-style: none; margin: 0; padding: 0; }
.main-nav > ul { display: flex; align-items: center; gap: .1rem; }
.main-nav > ul > li > a, .main-nav > ul > li > button { position: relative; display: inline-flex; align-items: center; gap: .35rem; padding: .6rem .85rem; border-radius: 8px; color: var(--ink); text-decoration: none; font-weight: 600; font-size: .95rem; letter-spacing: .005em; white-space: nowrap; background: none; border: 0; cursor: pointer; font-family: inherit; transition: color .15s, background .15s; }
.main-nav > ul > li > a::after { content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .3rem; height: 2px; border-radius: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .18s; }
.main-nav > ul > li > a[aria-current]::after { transform: scaleX(1); }
.main-nav > ul > li > a:hover, .main-nav > ul > li > button:hover, .has-sub.open > button, .has-sub:hover > button { color: var(--green-900); background: var(--green-50); }
.main-nav > ul > li > a[aria-current] { color: var(--green-900); }
.chev { display: inline-block; width: 6px; height: 6px; border-right: 1.75px solid currentColor; border-bottom: 1.75px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: .7; transition: transform .15s; }
.has-sub:hover > button .chev, .has-sub.open > button .chev { transform: rotate(225deg) translateY(-1px); }
.has-sub { position: relative; }
.sub { position: absolute; top: calc(100% + 6px); left: 0; min-width: 240px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 18px 40px -12px rgba(20,50,35,.28); padding: .55rem; display: none; flex-direction: column; align-items: stretch; gap: 0; z-index: 60; }
.sub::before { content: ""; position: absolute; inset: -8px 0 auto 0; height: 8px; }
.has-sub:hover > .sub, .has-sub:focus-within > .sub, .has-sub.open > .sub { display: flex; }
.sub li a { display: block; padding: .5rem .75rem; border-radius: 8px; text-decoration: none; color: var(--ink); font-size: .93rem; }
.sub li a:hover { background: var(--green-50); color: var(--green-900); }
.sub-featured a { font-weight: 700; color: var(--accent-700) !important; }
.sub-wide { min-width: 560px; display: none; grid-template-columns: 1fr 1fr; }
.has-sub-wide:hover > .sub-wide, .has-sub-wide:focus-within > .sub-wide, .has-sub-wide.open > .sub-wide { display: grid; }
.sub-wide .sub-featured { grid-column: 1 / -1; }
.nav-lang { margin-left: .5rem; }
.lang-switch { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; padding: 2px; background: #fff; font-size: .74rem; font-weight: 700; letter-spacing: .04em; }
.lang-switch a, .lang-switch span { padding: .3rem .55rem; border-radius: 999px; color: var(--ink-soft); text-decoration: none; line-height: 1; }
.lang-switch a:hover { color: var(--green-900); background: var(--green-50); }
.lang-switch span[aria-current] { background: var(--green-900); color: #fff; }
.nav-cta { margin-left: .5rem; }
.main-nav > ul > li.nav-cta > a.btn { padding: .6em 1.15em; font-size: .9rem; white-space: nowrap; background: var(--accent); color: #fff; box-shadow: 0 6px 16px -8px rgba(217,140,63,.7); }
.main-nav > ul > li.nav-cta > a.btn:hover { background: var(--accent-700); color: #fff; }
.main-nav > ul > li.nav-cta > a.btn::after { display: none; }

@media (max-width: 1180px) {
  .brand-sub { display: none; }
  .nav-toggle { display: flex; }
  /* absolut unter dem Sticky-Header (fixed würde durch backdrop-filter am Header abgeschnitten) */
  .main-nav { position: absolute; top: 100%; left: 0; right: 0; max-height: calc(100vh - 73px); background: #fff; overflow-y: auto; display: none; padding: 1rem 20px 3rem; border-bottom: 1px solid var(--line); box-shadow: 0 12px 30px rgba(0,0,0,.12); }
  .main-nav.open { display: block; }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: .2rem; }
  .main-nav > ul > li > a, .main-nav > ul > li > button { width: 100%; justify-content: space-between; padding: .8rem .6rem; font-size: 1.05rem; }
  .sub, .sub-wide { position: static; box-shadow: none; border: 0; border-left: 3px solid var(--green-100); border-radius: 0; margin: 0 0 .5rem .6rem; min-width: 0; display: none; grid-template-columns: 1fr; }
  .has-sub:hover > .sub, .has-sub:focus-within > .sub, .has-sub-wide:hover > .sub-wide, .has-sub-wide:focus-within > .sub-wide { display: none; }
  .has-sub.open > .sub, .has-sub-wide.open > .sub-wide { display: flex; flex-direction: column; }
  .nav-lang, .nav-cta { margin: .8rem 0 0; }
  .nav-cta .btn { display: block; text-align: center; }
  body.nav-open { overflow: hidden; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* Flash */
.flash-area { margin-top: 1rem; }
.flash { padding: .8rem 1rem; border-radius: var(--radius-s); margin-bottom: .6rem; font-weight: 500; }
.flash-success { background: var(--ok-100); color: var(--ok); }
.flash-error { background: var(--danger-100); color: var(--danger); }
.flash-info { background: var(--info-100); color: #2b4c74; }

/* Hero */
.hero { position: relative; color: #fff; overflow: hidden; isolation: isolate;
  background: linear-gradient(100deg, rgba(14,42,30,.86) 0%, rgba(14,42,30,.62) 42%, rgba(14,42,30,.22) 75%, rgba(14,42,30,.35) 100%), var(--hero-img, linear-gradient(160deg, var(--green-900), var(--green-700))) center / cover no-repeat; }
@media (max-width: 760px) { .hero { background-image: linear-gradient(180deg, rgba(14,42,30,.82) 0%, rgba(14,42,30,.6) 100%), var(--hero-img-sm, var(--hero-img)); } }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 15% 40%, rgba(14,42,30,.35), transparent 70%); pointer-events: none; }
.hero::after { content: ""; position: absolute; inset: auto 0 0 0; height: 90px; background: linear-gradient(180deg, transparent, rgba(14,42,30,.45)); pointer-events: none; }
.hero-inner { position: relative; z-index: 1; padding: 5.5rem 0 6rem; min-height: 560px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; }
.hero h1 { color: #fff; margin-bottom: .6rem; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.hero .lead { color: rgba(255,255,255,.92); font-size: 1.2rem; max-width: 560px; text-shadow: 0 1px 10px rgba(0,0,0,.35); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero-card { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); border-radius: var(--radius); padding: 1.4rem; backdrop-filter: blur(10px); box-shadow: 0 20px 50px -20px rgba(0,0,0,.5); }
.hero-card h3 { color: #fff; }
.hero-facts { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.hero-facts li { display: flex; gap: .6rem; align-items: flex-start; font-size: .98rem; }
.hero-facts li::before { content: "✔"; color: #ffd9a8; font-weight: 700; }
@media (max-width: 860px) { .hero-inner { grid-template-columns: 1fr; padding: 3rem 0 4rem; min-height: 0; } }

/* Page hero (Unterseiten) */
/* Seitenkopf: hell und freundlich – sanfter Sage-Verlauf, warmer Akzentschimmer, Bergsilhouette im Fuß */
.page-hero { position: relative; overflow: hidden; color: #fff; padding: 2.6rem 0 3rem; isolation: isolate;
  background: linear-gradient(100deg, rgba(14,42,30,.84) 0%, rgba(14,42,30,.6) 50%, rgba(14,42,30,.3) 100%), var(--hero-img, linear-gradient(180deg, var(--green-900), var(--green-700))) center 40% / cover no-repeat; }
@media (max-width: 760px) { .page-hero { background-image: linear-gradient(180deg, rgba(14,42,30,.82), rgba(14,42,30,.62)), var(--hero-img-sm, var(--hero-img)); } }
.page-hero::after { content: ""; position: absolute; inset: auto 0 0 0; height: 60px; background: linear-gradient(180deg, transparent, rgba(14,42,30,.35)); pointer-events: none; }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: .45rem; text-shadow: 0 2px 16px rgba(0,0,0,.35); }
.page-hero h1::after { content: ""; display: block; width: 56px; height: 4px; border-radius: 2px; background: var(--accent); margin-top: .7rem; }
.page-hero .lead { color: rgba(255,255,255,.9); margin: 0; max-width: 720px; text-shadow: 0 1px 8px rgba(0,0,0,.35); }
.page-hero .breadcrumb, .page-hero .breadcrumb a { color: rgba(255,255,255,.8); }
.page-hero .muted, .page-hero .small { color: rgba(255,255,255,.85); }
.page-hero .badge { box-shadow: 0 2px 8px rgba(0,0,0,.2); }
.page-hero .eyebrow { color: #ffd9a8; }
.page-hero-map { padding: 3.2rem 0 3.6rem; background-image: linear-gradient(100deg, rgba(14,42,30,.9) 0%, rgba(14,42,30,.7) 38%, rgba(14,42,30,.15) 68%, rgba(14,42,30,.35) 100%), var(--hero-img); background-position: center 55%; }
.page-hero-map .detail-head { max-width: 720px; }
@media (max-width: 760px) { .page-hero-map { background-image: linear-gradient(180deg, rgba(14,42,30,.86), rgba(14,42,30,.7)), var(--hero-img); } }
.page-hero .btn-light { background: #fff; color: var(--green-900); border-color: var(--line); box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.page-hero .btn-light:hover { background: var(--green-100); }
.breadcrumb { font-size: .85rem; color: var(--ink-soft); margin-bottom: .9rem; }
.breadcrumb a { color: var(--green-700); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* Cards & grids */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-s); overflow: hidden; display: flex; flex-direction: column; }
.card-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card-body h3 { margin-bottom: .2rem; }
.card-img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; background: var(--green-100); }
.card-img-ph { aspect-ratio: 16 / 10; display: flex; align-items: center; justify-content: center; font-size: 3rem; background: linear-gradient(135deg, var(--green-100), #d4e6db); color: var(--green-700); }
.card-footer { margin-top: auto; padding-top: .8rem; display: flex; justify-content: space-between; align-items: center; gap: .8rem; flex-wrap: wrap; }
.price-tag { font-weight: 800; color: var(--green-900); font-size: 1.15rem; }
.price-tag small { font-weight: 500; color: var(--muted); font-size: .8rem; }
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.feature-list li { padding-left: 1.6rem; position: relative; }
.feature-list li::before { content: "✔"; position: absolute; left: 0; color: var(--ok); font-weight: 700; }
.why-card { padding: 1.4rem; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); }
.why-card .icon { font-size: 1.8rem; margin-bottom: .5rem; display: block; }
.why-card h3 { font-size: 1.05rem; }
.why-card p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* Facts table */
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: .8rem; }
.fact { background: var(--green-50); border-radius: var(--radius-s); padding: .8rem 1rem; }
.fact b { display: block; font-size: 1.1rem; color: var(--green-900); }
.fact span { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

/* Two-column content */
.split { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.sticky { position: sticky; top: 90px; }
.box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-s); }
.box h3 { margin-top: 0; }
.box-green { background: var(--green-700); color: #fff; border: 0; }
.box-green h3, .box-green a { color: #fff; }
.box-soft { background: var(--green-50); border: 0; }
.prose { max-width: 760px; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.5rem; }
.prose table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .95rem; }
.prose th, .prose td { text-align: left; padding: .55rem .7rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { background: var(--green-50); }
.prose img { border-radius: var(--radius-s); }
.table-wrap { overflow-x: auto; }
table.table { width: 100%; border-collapse: collapse; font-size: .95rem; background: #fff; }
table.table th, table.table td { padding: .65rem .8rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
table.table th { background: var(--green-50); font-weight: 700; color: var(--green-900); }
table.table tr:last-child td { border-bottom: 0; }
.num { text-align: right !important; white-space: nowrap; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .8rem; }
.gallery-grid a { display: block; border-radius: var(--radius-s); overflow: hidden; aspect-ratio: 4 / 3; background: var(--green-100); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s; }
.gallery-grid a:hover img { transform: scale(1.04); }
.lightbox { position: fixed; inset: 0; background: rgba(10,20,15,.92); display: none; align-items: center; justify-content: center; z-index: 200; padding: 2rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: 6px; box-shadow: 0 10px 40px rgba(0,0,0,.5); }
.lightbox button { position: absolute; top: 1rem; right: 1rem; background: #fff; border: 0; width: 42px; height: 42px; border-radius: 50%; font-size: 1.3rem; cursor: pointer; }
.lightbox .lb-prev, .lightbox .lb-next { top: 50%; transform: translateY(-50%); right: auto; left: 1rem; }
.lightbox .lb-next { left: auto; right: 1rem; }
.lightbox figcaption { position: absolute; bottom: 1rem; left: 0; right: 0; text-align: center; color: #fff; font-size: .95rem; }

/* Forms */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .3rem; color: var(--ink); }
label .req { color: var(--danger); }
input[type=text], input[type=email], input[type=tel], input[type=date], input[type=number], input[type=password], input[type=url], select, textarea { width: 100%; padding: .68em .85em; border: 1px solid #c8d1cc; border-radius: var(--radius-s); font: inherit; font-size: 1rem; background: #fff; color: var(--ink); }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--green-500); outline-offset: 1px; border-color: var(--green-500); }
textarea { min-height: 130px; resize: vertical; }
.field-error { color: var(--danger); font-size: .85rem; margin-top: .25rem; }
.is-invalid { border-color: var(--danger) !important; }
.check { display: flex; gap: .6rem; align-items: flex-start; font-weight: 400; font-size: .93rem; }
.check input { margin-top: .3em; width: 18px; height: 18px; flex: none; }
.hp { position: absolute; left: -9999px; }
fieldset { border: 0; padding: 0; margin: 0 0 1.5rem; }
legend { font-weight: 800; font-size: 1.15rem; color: var(--green-900); margin-bottom: .8rem; padding: 0; }
.help { font-size: .85rem; color: var(--muted); margin-top: .25rem; }

/* Kalender */
.cal-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; }
.cal-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .8rem; }
.cal-head button { border: 1px solid var(--line); background: #fff; border-radius: 50%; width: 38px; height: 38px; cursor: pointer; font-size: 1.1rem; }
.cal-months { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
@media (max-width: 700px) { .cal-months { grid-template-columns: 1fr; } }
.cal-month h4 { text-align: center; margin: 0 0 .5rem; font-size: 1rem; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-grid .dow { font-size: .72rem; text-transform: uppercase; color: var(--muted); text-align: center; padding: .2rem 0; }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: .88rem; border-radius: 7px; background: var(--green-50); color: var(--ink); position: relative; cursor: pointer; border: 0; font-family: inherit; overflow: hidden; }
.cal-day.empty { background: transparent; cursor: default; }
.cal-day.past { color: #b9c1bc; background: #f3f4f3; cursor: not-allowed; }
.cal-day.booked { background: #c9cfcc; color: #5f6a64; cursor: not-allowed; }
.cal-day.requested { background: repeating-linear-gradient(45deg, #e8d9c4, #e8d9c4 4px, #f3e9db 4px, #f3e9db 8px); color: #7a5a2f; cursor: not-allowed; }
.cal-day.checkin { background: linear-gradient(135deg, var(--green-50) 50%, #c9cfcc 50%); }
.cal-day.checkout { background: linear-gradient(135deg, #c9cfcc 50%, var(--green-50) 50%); }
.cal-day.checkin.requested, .cal-day.checkout.requested { background-image: none; }
.cal-day.checkin.kind-requested { background: linear-gradient(135deg, var(--green-50) 50%, #e8d9c4 50%); }
.cal-day.checkout.kind-requested { background: linear-gradient(135deg, #e8d9c4 50%, var(--green-50) 50%); }
.cal-day.turnover { background: #c9cfcc; cursor: not-allowed; }
.cal-day.sel { background: var(--green-700) !important; color: #fff !important; font-weight: 700; }
.cal-day.in-range { background: var(--green-100) !important; }
.cal-day:not(.past):not(.booked):not(.turnover):not(.empty):hover { outline: 2px solid var(--green-500); }
.cal-day.today::after { content: ""; position: absolute; bottom: 4px; left: 50%; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); transform: translateX(-50%); }
.legend { display: flex; flex-wrap: wrap; gap: 1rem; font-size: .85rem; color: var(--ink-soft); margin-top: .8rem; }
.legend span { display: inline-flex; align-items: center; gap: .4rem; }
.legend i { width: 16px; height: 16px; border-radius: 4px; display: inline-block; }
.legend .l-free { background: var(--green-50); border: 1px solid var(--line); }
.legend .l-booked { background: #c9cfcc; }
.legend .l-requested { background: repeating-linear-gradient(45deg, #e8d9c4, #e8d9c4 3px, #f3e9db 3px, #f3e9db 6px); }
.legend .l-half { background: linear-gradient(135deg, var(--green-50) 50%, #c9cfcc 50%); border: 1px solid var(--line); }
.prop-tabs { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.prop-tabs button { border: 2px solid var(--line); background: #fff; padding: .5rem 1rem; border-radius: 999px; font: inherit; font-weight: 600; cursor: pointer; }
.prop-tabs button[aria-pressed="true"] { border-color: var(--green-700); background: var(--green-700); color: #fff; }

/* Quote */
.quote { font-size: .95rem; }
.quote table { width: 100%; border-collapse: collapse; }
.quote td { padding: .35rem 0; border-bottom: 1px dashed var(--line); vertical-align: top; }
.quote tr.total td { border-bottom: 0; font-weight: 800; font-size: 1.1rem; padding-top: .6rem; color: var(--green-900); }
.quote .err { color: var(--danger); font-weight: 600; }
.quote .hint { color: var(--muted); }

/* Badges */
.badge { display: inline-block; padding: .18em .6em; border-radius: 999px; font-size: .75rem; font-weight: 700; background: var(--green-100); color: var(--green-900); white-space: nowrap; }
.badge-accent { background: var(--accent-100); color: var(--accent-700); }
.badge-muted { background: #eceeed; color: var(--ink-soft); }
.badge-ok { background: var(--ok-100); color: var(--ok); }
.badge-danger { background: var(--danger-100); color: var(--danger); }
.badge-info { background: var(--info-100); color: #2b4c74; }
.badges { display: flex; flex-wrap: wrap; gap: .35rem; }
.diff-leicht { background: #dff1e3; color: #1e6b3a; }
.diff-mittel { background: #fbe9c9; color: #8a5a10; }
.diff-schwer { background: #fadcd9; color: #a12b22; }

/* Schwierigkeitsgrafik */
.diffbar { display: inline-flex; align-items: center; gap: .45rem; font-size: .78rem; font-weight: 700; color: var(--ink-soft); }
.diffbar-segs { display: inline-flex; gap: 2px; }
.diffbar-segs i { display: block; width: 9px; height: 10px; border-radius: 2px; background: #e4e8e5; }
.diffbar-lg .diffbar-segs i { width: 16px; height: 14px; border-radius: 3px; }
.diffbar-leicht .diffbar-segs i.on { background: #3f9d5e; }
.diffbar-mittel .diffbar-segs i.on { background: #e0a53a; }
.diffbar-schwer .diffbar-segs i.on { background: #c9433a; }
.diffbar-num { min-width: 1.1em; text-align: right; }
.diffbar-num small { font-weight: 500; color: var(--muted); }
.grade-dot { display: inline-block; width: 12px; height: 12px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.18); vertical-align: -1px; }
.grade-1 { background: #e8c227; }
.grade-2 { background: #d63c2f; }
.grade-3 { background: #2b6cb0; }
.diffbox { margin-top: .9rem; padding: .8rem .9rem; border: 1px solid var(--line); border-radius: var(--radius-s); background: var(--green-50); }
.diffbox .diffbar-lg { width: 100%; }
.diffbox .diffbar-lg .badge { margin-left: auto; }
.diffparts { display: grid; gap: .35rem .8rem; margin-top: .6rem; font-size: .82rem; }
.diffparts > div { display: flex; align-items: center; justify-content: space-between; gap: .6rem; }
.diffparts > div > span:first-child { color: var(--ink-soft); }
.diffparts .mini { display: inline-flex; gap: 2px; }
.diffparts .mini i { display: block; width: 12px; height: 8px; border-radius: 2px; background: #e4e8e5; }
.diffparts .mini i.on { background: var(--green-500); }
.grade-lbl { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; text-align: right; }
/* Schwierigkeit – Vollansicht (Detailseite) */
.diffbox-v2 { background: linear-gradient(180deg, #fff 0%, var(--green-50) 100%); padding: 1rem 1.1rem 1.1rem; }
.diff-gauge-row { display: flex; align-items: center; gap: 1rem; }
.diff-gauge { width: 132px; flex: 0 0 132px; height: auto; }
.diff-gauge-num { font-size: 27px; font-weight: 800; font-family: inherit; fill: var(--ink); }
.diff-gauge-sub { font-size: 7.5px; font-weight: 600; font-family: inherit; fill: var(--muted); letter-spacing: .05em; }
.diff-gauge-text { display: flex; flex-direction: column; gap: .25rem; min-width: 0; }
.diff-lvl { display: inline-block; align-self: flex-start; padding: .25em .9em; border-radius: 999px; font-weight: 800; font-size: 1.05rem; letter-spacing: .01em; }
.diff-scale { display: flex; flex-wrap: wrap; gap: .25rem .55rem; font-size: .72rem; color: var(--ink-soft); margin-top: .15rem; }
.diff-scale i { display: inline-block; width: 9px; height: 9px; border-radius: 2px; margin-right: .25rem; vertical-align: -1px; }
.diff-meters { display: grid; gap: .75rem; margin-top: 1rem; }
.diff-meter-head { display: flex; justify-content: space-between; align-items: baseline; gap: .6rem; font-size: .88rem; margin-bottom: .3rem; }
.diff-meter-head span { color: var(--ink-soft); font-weight: 600; }
.diff-meter-head b { font-weight: 700; }
.diff-meter-head small { font-weight: 500; color: var(--muted); }
.diff-steps { display: grid; gap: 4px; }
.diff-steps.steps-6 { grid-template-columns: repeat(6, 1fr); }
.diff-steps.steps-5 { grid-template-columns: repeat(5, 1fr); }
.diff-steps i { display: block; height: 12px; border-radius: 4px; background: #e6ebe8; transition: background .2s; }
.diff-steps.steps-6 i.on { background: color-mix(in srgb, #3f9d5e calc(100% - (var(--i) - 1) * 18%), #c9433a); }
.diff-steps.steps-5 i.on { background: color-mix(in srgb, #3f9d5e calc(100% - (var(--i) - 1) * 22%), #c9433a); }
.diff-signs { display: flex; flex-wrap: wrap; gap: .8rem 1.4rem; margin-top: 1rem; }
.diff-sign { display: flex; align-items: center; gap: .65rem; }
.diff-sign b { display: block; font-size: .9rem; }
/* Wegweiser nach Vorarlberger Beschilderung: gelb-weiß, weiß-rot-weiß, weiß-blau-weiß */
.trail-sign { display: inline-block; width: 46px; height: 30px; border-radius: 4px; position: relative; box-shadow: 0 1px 3px rgba(0,0,0,.25), inset 0 0 0 1px rgba(0,0,0,.08); overflow: hidden; }
.trail-sign i { position: absolute; inset: 0; }
.trail-sign-1 { background: linear-gradient(90deg, #e8c227 0 50%, #fff 50%); }
.trail-sign-2 { background: #fff; } .trail-sign-2 i { background: #d63c2f; top: 34%; bottom: 34%; }
.trail-sign-3 { background: #fff; } .trail-sign-3 i { background: #2b6cb0; top: 34%; bottom: 34%; }
.trail-sign::after { content: ""; position: absolute; right: -8px; top: 50%; width: 16px; height: 16px; background: inherit; transform: translateY(-50%) rotate(45deg); box-shadow: inset 0 0 0 1px rgba(0,0,0,.08); }
/* Klettersteig-Skala A–E */
.vf-scale { display: inline-flex; gap: 3px; }
.vf-scale i { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 6px; font: 700 .78rem/1 inherit; color: var(--muted); background: #e6ebe8; }
.vf-scale i:nth-child(1).on { background: #3f9d5e; color: #fff; } .vf-scale i:nth-child(2).on { background: #8fb64a; color: #fff; } .vf-scale i:nth-child(3).on { background: #e0a53a; color: #fff; } .vf-scale i:nth-child(4).on { background: #d9702e; color: #fff; } .vf-scale i:nth-child(5).on { background: #c9433a; color: #fff; }
.diff-note { margin: .8rem 0 0; }
.act-card .diffbar { margin: .2rem 1.2rem 0; }
.grade-legend { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin-top: .6rem; font-size: .85rem; }
.grade-legend span { display: inline-flex; align-items: center; gap: .4rem; }

/* Category tiles */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 960px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cat-grid { grid-template-columns: 1fr; } }
.cat-tile { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; text-decoration: none; color: var(--ink); display: flex; flex-direction: column; gap: .3rem; transition: transform .12s, box-shadow .12s; position: relative; }
.cat-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--ink); }
.cat-tile .icon { font-size: 2rem; }
.cat-tile h3 { margin: 0; font-size: 1.05rem; }
.cat-tile p { margin: 0; font-size: .88rem; color: var(--ink-soft); }
.cat-tile .count { position: absolute; top: .9rem; right: .9rem; }

/* Activity cards */
.act-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
@media (max-width: 960px) { .act-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .act-grid { grid-template-columns: 1fr; } }
.act-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .12s, box-shadow .12s; }
.act-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.act-card .act-head { padding: 1rem 1.2rem .4rem; display: flex; justify-content: space-between; gap: .6rem; align-items: flex-start; }
.act-card .act-icon { font-size: 1.6rem; line-height: 1; }
.act-card .act-top { display: block; color: inherit; text-decoration: none; }
.act-card .act-top:hover .act-title { text-decoration: underline; }
.act-card .act-title { display: block; font-size: 1.05rem; font-weight: 700; margin: 0; color: var(--green-900); line-height: 1.3; }
.act-card .act-head span:first-child { display: block; }
.act-card .place { display: block; font-size: .82rem; color: var(--muted); font-weight: 400; }
.act-card .teaser { padding: 0 1.2rem; font-size: .92rem; color: var(--ink-soft); flex: 1; }
.act-card .act-meta { padding: .6rem 1.2rem 1rem; display: flex; flex-wrap: wrap; gap: .4rem .9rem; font-size: .82rem; color: var(--ink-soft); border-top: 1px solid var(--line); margin-top: .6rem; }
.act-card .act-meta span { white-space: nowrap; }
.act-card .act-actions { padding: 0 1.2rem 1rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.act-card .act-actions a { font-size: .85rem; }

/* Filter bar */
.filter-bar { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; margin: 1rem 0 1.5rem; }
.filter-bar select, .filter-bar input { width: auto; padding: .45em .7em; font-size: .92rem; }
.chip { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: .35em .85em; font: inherit; font-size: .88rem; cursor: pointer; }
.chip[aria-pressed="true"] { background: var(--green-700); color: #fff; border-color: var(--green-700); }

/* Map */
.map { width: 100%; height: 440px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--green-50); position: relative; overflow: hidden; z-index: 0; }
.map-tall { height: 600px; }
.map-consent { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .8rem; text-align: center; padding: 1.5rem; background: linear-gradient(135deg, var(--green-50), #dbe9e0); z-index: 5; }
.map-consent p { font-size: .88rem; color: var(--ink-soft); max-width: 460px; margin: 0; }
.leaflet-container { font-family: inherit; }
.elev { width: 100%; height: 180px; display: block; }
.elev-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: .8rem 1rem .4rem; }
.elev-wrap .elev-lbl { display: flex; justify-content: space-between; font-size: .8rem; color: var(--muted); }

/* Detail page */
.detail-head { display: flex; gap: 1rem; align-items: flex-start; }
.detail-head .icon { font-size: 2.4rem; line-height: 1; }
.kv { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: .6rem; }
.kv div { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-s); padding: .6rem .8rem; }
.kv div span { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.kv div b { font-size: 1rem; color: var(--green-900); }
.info-block { margin: 1.4rem 0; }
.info-block h3 { display: flex; gap: .5rem; align-items: center; font-size: 1.05rem; }
.download-box { display: flex; flex-wrap: wrap; gap: .6rem; }
.notice { background: var(--accent-100); border-left: 4px solid var(--accent); padding: .8rem 1rem; border-radius: 0 var(--radius-s) var(--radius-s) 0; font-size: .9rem; }
.notice-danger { background: var(--danger-100); border-color: var(--danger); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; counter-reset: s; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; counter-increment: s; }
.step::before { content: counter(s); display: inline-flex; width: 30px; height: 30px; border-radius: 50%; background: var(--green-700); color: #fff; align-items: center; justify-content: center; font-weight: 800; margin-bottom: .6rem; }
.step h3 { font-size: 1rem; }

/* Quote/review */
.review { background: #fff; border-radius: var(--radius); padding: 1.6rem; border: 1px solid var(--line); font-style: italic; color: var(--ink-soft); }
.review cite { display: block; margin-top: .8rem; font-style: normal; font-weight: 600; color: var(--green-900); font-size: .9rem; }

/* CTA band */
.cta-band { background: var(--accent); color: #fff; padding: 2.6rem 0; }
.cta-band h2 { color: #fff; }
.cta-band .btn-light { color: var(--accent-700); }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }

/* Footer */
.site-footer { background: var(--green-900); color: rgba(255,255,255,.85); margin-top: 3rem; padding: 3rem 0 1.5rem; font-size: .95rem; }
.site-footer h3 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; }
.site-footer a { color: #fff; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .35rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); margin-top: 2rem; padding-top: 1.2rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; color: rgba(255,255,255,.6); }

/* Guide */
.guide-step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-s); }
.guide-progress { display: flex; gap: .4rem; margin-bottom: 1.2rem; }
.guide-progress i { flex: 1; height: 6px; border-radius: 3px; background: var(--line); }
.guide-progress i.done { background: var(--green-700); }
.opt-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: .7rem; }
.opt { border: 2px solid var(--line); background: #fff; border-radius: var(--radius-s); padding: .8rem 1rem; cursor: pointer; font: inherit; text-align: left; display: flex; gap: .6rem; align-items: center; transition: border-color .12s, background .12s; }
.opt:hover { border-color: var(--green-500); }
.opt[aria-pressed="true"] { border-color: var(--green-700); background: var(--green-100); font-weight: 600; }
.opt .icon { font-size: 1.4rem; }
.wx-tabs { display: flex; gap: .5rem; flex-wrap: wrap; margin: .8rem 0 .4rem; }
.wx-tab { border: 2px solid var(--line); background: #fff; border-radius: 999px; padding: .5em 1.1em; font: inherit; font-weight: 600; cursor: pointer; }
.wx-tab[aria-pressed="true"] { border-color: var(--green-700); background: var(--green-100); }
@media print { .wx-tab[aria-pressed="false"] { display: none; } }
.guide-actions { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.4rem; flex-wrap: wrap; }
.plan { display: grid; gap: 1rem; }
.plan-slot { display: grid; grid-template-columns: 130px 1fr; gap: 1rem; align-items: start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; }
@media (max-width: 620px) { .plan-slot { grid-template-columns: 1fr; } }
.plan-slot .slot { font-weight: 800; color: var(--accent-700); text-transform: uppercase; font-size: .78rem; letter-spacing: .08em; }
.score { font-size: .75rem; font-weight: 700; color: var(--green-700); }
.wish-btn { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: .3em .8em; font: inherit; font-size: .82rem; cursor: pointer; }
.wish-btn.on { background: var(--accent-100); border-color: var(--accent); color: var(--accent-700); }

/* Utilities */
.icon-row { display: flex; flex-wrap: wrap; gap: .8rem 1.4rem; font-size: .95rem; color: var(--ink-soft); }
.divider { height: 1px; background: var(--line); margin: 2rem 0; }
.two-col { columns: 2; column-gap: 2rem; }
@media (max-width: 700px) { .two-col { columns: 1; } }

/* Print */
@media print {
  .site-header, .site-footer, .nav-toggle, .hero-actions, .cta-band, .no-print, .map-consent, .filter-bar, .download-box { display: none !important; }
  body { background: #fff; font-size: 12pt; }
  a { color: inherit; text-decoration: none; }
  .card, .box, .act-card { box-shadow: none; break-inside: avoid; }
}

/* Preise: Objektkarten statt Tabelle */
.price-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.6rem; }
.price-card h2 { font-size: 1.35rem; margin: 0 0 .2rem; }
.price-card .card-body { gap: .9rem; }
.price-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.price-tag { text-align: right; white-space: nowrap; background: var(--accent-100); border-radius: var(--radius-s); padding: .45rem .8rem; }
.price-tag strong { display: block; font-size: 1.45rem; color: var(--accent-700); line-height: 1.15; }
.price-tag span { font-size: .78rem; color: var(--ink-soft); }
.price-facts { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; font-size: .95rem; }
.price-facts li { display: flex; gap: .6rem; align-items: flex-start; padding: .55rem .7rem; background: var(--green-50); border-radius: var(--radius-s); }
.price-facts .pf-ico { flex: 0 0 auto; }
@media (max-width: 860px) { .price-cards { grid-template-columns: 1fr; } .price-head { flex-direction: column; } .price-tag { text-align: left; } }

/* Galerie: Sprungmarken zu den Abschnitten */
.gallery-jump { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.2rem 0 0; }
.gallery-jump .chip { text-decoration: none; }

/* Wetterbox */
.weather { margin-top: 1rem; }
.wx-now { display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap; }
.wx-temp { font-size: 1.9rem; font-weight: 800; color: var(--green-900); line-height: 1; }
.wx-days { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin-top: .8rem; }
.wx-day { text-align: center; padding: .5rem .3rem; border: 1px solid var(--line); border-radius: var(--radius-s); background: var(--card); }
.wx-dn { font-size: .75rem; font-weight: 700; color: var(--ink-soft); }
.wx-ic { font-size: 1.5rem; line-height: 1.3; }
.wx-t { font-size: .95rem; }
.wx-x { line-height: 1.3; }
.wx-av { margin-top: .8rem; padding: .6rem .7rem; border-radius: var(--radius-s); border-left: 5px solid #9aa5a0; background: var(--green-50); }
.wx-av-lvl { display: inline-block; min-width: 1.5em; padding: 0 .3em; border-radius: 4px; font-weight: 800; text-align: center; color: #fff; background: #9aa5a0; }
.wx-av-1 { border-left-color: #ccff66; } .wx-av-1 .wx-av-lvl { background: #8fbf2a; }
.wx-av-2 { border-left-color: #ffff00; } .wx-av-2 .wx-av-lvl { background: #d6c400; }
.wx-av-3 { border-left-color: #ff9900; } .wx-av-3 .wx-av-lvl { background: #ff9900; }
.wx-av-4 { border-left-color: #ff0000; } .wx-av-4 .wx-av-lvl { background: #e00000; }
.wx-av-5 { border-left-color: #800000; } .wx-av-5 .wx-av-lvl { background: #800000; }

/* Fotos (Wikimedia Commons, mit Attribution) */
.act-card .act-photo { display: block; position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--green-100); }
.act-card .act-map img { object-fit: cover; }
.act-card .act-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.act-card:hover .act-photo img { transform: scale(1.03); }
.photo-credit { position: absolute; right: 0; bottom: 0; padding: .15rem .5rem; font-size: .62rem; color: #fff; background: rgba(22, 54, 40, .55); border-radius: 6px 0 0 0; max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.detail-photo { margin: 0 0 1rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--card); }
.detail-photo img { display: block; width: 100%; height: auto; max-height: 460px; object-fit: cover; }
.detail-photo figcaption { padding: .35rem .8rem; font-size: .75rem; color: var(--muted); }
.detail-photo figcaption a { color: inherit; }
/* Bergbahnen */
.lifts-box { margin-top: 1rem; }
.lift-item { padding: .5rem 0; border-top: 1px solid var(--line); }
.lift-item:first-of-type { border-top: 0; }
.table-wrap { overflow-x: auto; }
.lifts-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.lifts-table th, .lifts-table td { padding: .55rem .6rem; border-bottom: 1px solid var(--line); vertical-align: top; text-align: left; }
.lifts-table th { background: var(--green-50); font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); }
/* --- FAQ (Details/Summary) ------------------------------------------------ */
.faq-list { display: grid; gap: .6rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-s); }
.faq-item summary { cursor: pointer; padding: .9rem 1.2rem; font-weight: 700; color: var(--green-900); list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.3rem; line-height: 1; color: var(--accent); flex: 0 0 auto; }
.faq-item[open] summary::after { content: "–"; }
.faq-answer { padding: 0 1.2rem 1rem; color: var(--ink-soft); }
.faq-answer p { margin: 0; }
.act-card-compact .act-top { padding-bottom: .4rem; }
