/* ═══════════════════════════════════════════════
   Pension zum weißen Schwan – Seiten-spezifisches CSS
   ═══════════════════════════════════════════════ */

/* ─── INDEX: HERO ───────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
}

.hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4rem 5rem 5rem;
  background: var(--ice);
}
.hero-eyebrow {
  font-size: .7rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--fog); margin-bottom: 1.4rem;
}
.hero-heading {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300; line-height: 1.08;
  color: var(--ink); margin-bottom: 1.6rem;
}
.hero-heading em { font-style: italic; color: var(--slate); }
.hero-sub {
  font-size: .95rem; color: var(--slate);
  max-width: 40ch; line-height: 1.75;
  margin-bottom: 2.5rem; font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(155deg, #c2d8e8 0%, #e8f3f8 50%, #cee3ef 100%);
}
.hero-visual--photo { background: var(--ink); }
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s var(--ease);
}
.hero-visual--photo:hover .hero-photo { transform: scale(1.04); }
.hero-swan {
  width: min(68%, 360px);
  opacity: .55;
  animation: float 9s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}
.hero-badge {
  position: absolute; bottom: 2rem; left: 2rem;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(8px);
  padding: 1rem 1.4rem;
  border-left: 3px solid var(--gold);
}
.hero-badge strong {
  display: block; font-family: var(--ff-serif);
  font-size: 1.6rem; font-weight: 400; color: var(--ink); line-height: 1;
}
.hero-badge span {
  font-size: .7rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--fog);
}

/* ─── INDEX: STRIP ─────────────────────────────── */
.strip {
  display: flex; justify-content: center;
  background: var(--ink); overflow: hidden;
}
.strip-item {
  flex: 1; max-width: 260px;
  padding: 1.7rem 2rem;
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.strip-item:last-child { border-right: none; }
.strip-item .val {
  font-family: var(--ff-serif); font-size: 2rem;
  font-weight: 300; color: var(--white);
  display: block; line-height: 1;
}
.strip-item .lbl {
  font-size: .65rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--fog);
  display: block; margin-top: .4rem;
}

/* ─── INDEX: ABOUT ─────────────────────────────── */
.about {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: center; padding: 6rem 5rem;
  background: var(--white);
}
.about-image-wrap {
  position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 2px;
}
.about-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 8s var(--ease);
}
.about-image-wrap:hover img { transform: scale(1.04); }
.about-accent {
  margin-top: 1.8rem; padding: 1.1rem 1.5rem;
  background: var(--ice); border-left: 3px solid var(--gold);
  font-size: .85rem; color: var(--slate); line-height: 1.7;
}
.about-list { list-style: none; margin-top: 1.8rem; display: flex; flex-direction: column; gap: .6rem; }
.about-list li {
  font-size: .88rem; color: var(--slate);
  display: flex; align-items: center; gap: .7rem;
}
.about-list li::before {
  content: ''; display: block; width: 18px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}

/* ─── INDEX: ROOMS ─────────────────────────────── */
.rooms-section { background: var(--ice); padding: 6rem 5rem; }
.rooms-header { text-align: center; margin-bottom: 3.5rem; }
.rooms-header .section-body { margin: 0 auto; }
.rooms-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5px; background: var(--mist);
}
.room-card { background: var(--white); overflow: hidden; transition: box-shadow .3s; }
.room-card:hover { box-shadow: 0 12px 40px rgba(26,31,46,.09); z-index:1; position:relative; }
.room-card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--mist); }
.room-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.room-card:hover .room-card-img img { transform: scale(1.05); }
.room-card-body { padding: 1.6rem 1.7rem 2rem; }
.room-tag {
  font-size: .63rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--fog); display: block; margin-bottom: .5rem;
}
.room-name {
  font-family: var(--ff-serif); font-size: 1.5rem; font-weight: 400;
  color: var(--ink); margin-bottom: .6rem; line-height: 1.2;
}
.room-desc { font-size: .83rem; color: var(--slate); font-weight: 300; line-height: 1.7; }
.room-price {
  display: flex; align-items: baseline; gap: .4rem;
  margin-top: 1.3rem; padding-top: 1.1rem;
  border-top: 1px solid var(--mist);
}
.room-price .amt {
  font-family: var(--ff-serif); font-size: 1.75rem;
  font-weight: 400; color: var(--ink);
}
.room-price .per {
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--fog);
}

/* ─── INDEX: FOTOS TEASER ──────────────────────── */
.fotos-teaser { position: relative; padding: 0; }
.fotos-teaser-grid {
  display: grid; grid-template-columns: repeat(4,1fr); height: 340px;
}
.fotos-teaser-grid img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.55);
  transition: filter .4s;
}
.fotos-teaser-grid img:hover { filter: brightness(.75); }
.fotos-teaser-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.fotos-teaser-overlay .btn-primary {
  pointer-events: all;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}

/* ─── INDEX: CONTACT SECTION ───────────────────── */
.contact-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center; padding: 6rem 5rem;
  background: var(--ink);
}
.contact-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  padding: 2.5rem; border-radius: 2px;
}
.contact-row {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.1rem 0; border-bottom: 1px solid rgba(255,255,255,.07);
}
.contact-row:last-child { border-bottom: none; }
.contact-row-icon { font-size: 1.05rem; flex-shrink: 0; margin-top: .15rem; }
.contact-row-label {
  font-size: .63rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.3); display: block; margin-bottom: .25rem;
}
.contact-row-value {
  font-size: .88rem; color: var(--white);
  text-decoration: none; display: block; line-height: 1.5;
}
.contact-row-value:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ─── ZIMMER PAGE ──────────────────────────────── */
.zimmer-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.zimmer-detail--reverse { direction: rtl; }
.zimmer-detail--reverse > * { direction: ltr; }
.zimmer-detail-img { aspect-ratio: 4/3; overflow: hidden; border-radius: 2px; }
.zimmer-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.zimmer-divider {
  height: 1px; background: var(--mist);
  margin: 4.5rem 0;
}
.zimmer-features {
  display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem;
}
.feature-item {
  display: flex; align-items: center; gap: .5rem;
  background: var(--ice); padding: .5rem .9rem;
  font-size: .8rem; color: var(--slate); border-radius: 2px;
}
.zimmer-price-box {
  display: flex; align-items: baseline; gap: .5rem;
  margin: 1.8rem 0 1.5rem;
}
.zimmer-price-amt {
  font-family: var(--ff-serif); font-size: 2.2rem;
  font-weight: 400; color: var(--ink);
}
.zimmer-price-per {
  font-size: .75rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--fog);
}

/* ─── PREISE PAGE ──────────────────────────────── */
.preise-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.preise-card--main { background: var(--ice); padding: 2.5rem; border-radius: 2px; }
.price-table { width: 100%; border-collapse: collapse; margin-top: 1.8rem; }
.price-table th {
  font-size: .67rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--fog); font-weight: 500; text-align: left;
  padding: .6rem 0; border-bottom: 1px solid var(--mist);
}
.price-table td {
  padding: .95rem 0; border-bottom: 1px solid var(--mist);
  font-size: .9rem; color: var(--slate);
}
.price-table td:last-child {
  text-align: right;
  font-family: var(--ff-serif); font-size: 1.2rem;
  font-weight: 400; color: var(--ink);
}
.price-table tr:last-child td { border-bottom: none; }
.extra-row { border-top: 2px solid var(--mist) !important; font-weight: 500 !important; }
.price-note {
  margin-top: 1.4rem; padding: 1.1rem 1.4rem;
  background: var(--white); border-radius: 2px;
  font-size: .78rem; color: var(--fog); line-height: 1.75;
}
.price-note p + p { margin-top: .4rem; }
.price-info-list { list-style: none; margin-top: 1.8rem; display: flex; flex-direction: column; gap: 1.1rem; }
.price-info-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  font-size: .88rem; color: var(--slate);
}
.price-info-icon { font-size: 1rem; flex-shrink: 0; margin-top: .1rem; }
.price-info-list strong { display: block; color: var(--ink); margin-bottom: .15rem; }

/* ─── FOTOS PAGE ───────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 4px;
}
.gallery-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  cursor: zoom-in; transition: opacity .2s;
  border-radius: 1px;
}
.gallery-img:hover { opacity: .88; }
.gallery-hint {
  text-align: center; font-size: .75rem; color: var(--fog);
  letter-spacing: .08em; margin-top: 1.2rem;
}

/* Lightbox */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 9000;
  align-items: center; justify-content: center;
  background: rgba(15,19,25,.95);
}
.lb-bg { position: absolute; inset: 0; }
.lb-img {
  position: relative; max-width: 90vw; max-height: 88vh;
  object-fit: contain; border-radius: 2px;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: none; border: none;
  color: rgba(255,255,255,.7); font-size: 1.8rem;
  cursor: pointer; z-index: 1; padding: .5rem;
  transition: color .2s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: white; }
.lb-close { top: 1.5rem; right: 1.5rem; font-size: 1.3rem; }
.lb-prev  { left: 1.5rem; font-size: 3rem; }
.lb-next  { right: 1.5rem; font-size: 3rem; }

/* ─── ANFAHRT PAGE ─────────────────────────────── */
.anfahrt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.anfahrt-address {
  font-style: normal; font-size: 1rem; color: var(--slate);
  line-height: 1.7; margin: 1rem 0 2rem;
  padding: 1.1rem 1.5rem; background: var(--ice);
  border-left: 3px solid var(--gold);
}
.anfahrt-ways { display: flex; flex-direction: column; gap: 1.5rem; }
.anfahrt-way { display: flex; gap: 1rem; align-items: flex-start; }
.anfahrt-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: .1rem; }
.anfahrt-way strong { display: block; color: var(--ink); margin-bottom: .3rem; font-size: .9rem; }
.anfahrt-way p { font-size: .85rem; color: var(--slate); line-height: 1.6; }
.map-wrap { min-height: 320px; }
.map-consent {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.2rem; text-align: center;
  background: var(--ice); border: 1px dashed var(--mist);
  padding: 3rem 2rem; min-height: 280px;
  font-size: .88rem; color: var(--slate);
}
#mapWrapper iframe { width: 100%; border-radius: 2px; }

/* ─── HAUSORDNUNG PAGE ─────────────────────────── */
.hausordnung-content { max-width: 680px; }
.ho-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--mist);
}
.ho-section:last-of-type { border-bottom: none; }
.ho-section h2 {
  font-family: var(--ff-serif); font-size: 1.4rem; font-weight: 400;
  color: var(--ink); margin-bottom: 1rem; line-height: 1.3;
}
.ho-section p {
  font-size: .9rem; color: var(--slate); line-height: 1.8; font-weight: 300;
}
.ho-section p + p { margin-top: .75rem; }
.ho-section ul {
  list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-top: .4rem;
}
.ho-section ul li {
  font-size: .9rem; color: var(--slate); line-height: 1.7;
  padding-left: 1.4rem; position: relative; font-weight: 300;
}
.ho-section ul li::before {
  content: '–'; position: absolute; left: 0; color: var(--gold);
}
.ho-closing {
  margin-top: 3rem; padding: 1.5rem 2rem;
  background: var(--ice); border-left: 3px solid var(--gold);
  font-size: .9rem; color: var(--slate); line-height: 1.8;
}

/* ─── KONTAKT PAGE ─────────────────────────────── */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.kontakt-card {
  margin-top: 2rem;
  border: 1px solid var(--mist); border-radius: 2px; overflow: hidden;
}
.kontakt-card .contact-row {
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--mist);
}
.kontakt-card .contact-row:last-child { border-bottom: none; }
.kontakt-card .contact-row-label { color: var(--fog); }
.kontakt-hinweis { padding-top: .5rem; }

/* ─── LEGAL PAGES ──────────────────────────────── */
.legal-content { max-width: 720px; }
.legal-content h2 {
  font-family: var(--ff-serif); font-size: 1.5rem; font-weight: 400;
  color: var(--ink); margin: 2.5rem 0 .8rem;
  padding-bottom: .6rem; border-bottom: 1px solid var(--mist);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: var(--ff-sans); font-size: .88rem; font-weight: 500;
  color: var(--slate); margin: 1.5rem 0 .5rem;
  letter-spacing: .03em;
}
.legal-content p {
  font-size: .88rem; color: var(--slate); line-height: 1.8;
  font-weight: 300; margin-bottom: .6rem;
}
.legal-content a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* ─── RESPONSIVE ────────────────────────────────── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 3rem 1.5rem; }
  .hero-visual { min-height: 260px; }
  .strip { flex-wrap: wrap; }
  .strip-item { flex: 1 1 130px; }
  .about { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 1.5rem; }
  .rooms-section { padding: 4rem 1.5rem; }
  .rooms-grid { grid-template-columns: 1fr; gap: 1px; }
  .fotos-teaser-grid { grid-template-columns: repeat(2,1fr); height: 280px; }
  .contact-section { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 1.5rem; }
  .zimmer-detail { grid-template-columns: 1fr; gap: 2rem; }
  .zimmer-detail--reverse { direction: ltr; }
  .preise-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .anfahrt-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .lb-prev { left: .5rem; }
  .lb-next { right: .5rem; }
}

@media (max-width: 480px) {
  .fotos-teaser-grid { grid-template-columns: 1fr 1fr; height: 200px; }
  .hero-heading { font-size: 2.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-swan { animation: none; }
  .about-image-wrap img,
  .room-card-img img { transition: none; }
}
