/*
Theme Name: LüneBase
Theme URI: https://luenebase.de
Description: Custom theme for LüneBase Ferienwohnung Lüneburg
Author: LüneBase
Version: 1.0
*/

/* ── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'DM Sans', system-ui, sans-serif; background: #fff; color: #111318; overflow-x: hidden; }
img { display: block; }
a { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: pointer; padding: 0; font-family: inherit; color: inherit; }
p { margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; margin: 0; padding: 0; }

/* ── Tokens ─────────────────────────────────────── */
:root {
  --navy:      #1C3B6E;
  --navy-dk:   #142D56;
  --navy-800:  #0D1E3A;
  --navy-50:   #EEF2FA;
  --navy-100:  #D4DFEF;
  --navy-200:  #A8BEDE;
  --navy-400:  #3D6AA8;
  --gold:      #9A8F82;

  --ink:       #111318;
  --ink-muted: #4A5270;
  --stone:     #8A96B2;
  --gray-50:   #F5F7FB;
  --gray-100:  #EAECF2;
  --gray-200:  #D2D6E3;
  --white:     #FFFFFF;
  --display:   'Cormorant Garamond', Georgia, serif;
  --body:      'DM Sans', system-ui, sans-serif;
}

/* ── Navigation ─────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 130px;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  transition: height 0.4s ease, box-shadow 0.3s;
}
.nav.scrolled,
.nav.compact { height: 72px; box-shadow: 0 2px 24px rgba(28,59,110,0.08); }
.nav.compact .nav-logo { height: 46px; }
.nav-logo { height: 86px; width: auto; object-fit: contain; transition: height 0.4s ease; }
.nav.scrolled .nav-logo { height: 46px; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 13px; color: var(--ink-muted); letter-spacing: 0.04em; transition: color 0.2s; }
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--navy); color: var(--white) !important;
  font-size: 12px !important; font-weight: 600 !important;
  letter-spacing: 0.12em !important; text-transform: uppercase;
  padding: 10px 22px; border-radius: 4px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--navy-dk) !important; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; color: var(--navy); padding: 4px; }

/* ── Mobile Menu ─────────────────────────────────── */
.mobile-menu {
  display: none; position: fixed; top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw); background: var(--white); z-index: 200;
  padding: 80px 40px 40px;
  box-shadow: -4px 0 40px rgba(28,59,110,0.15);
  flex-direction: column; gap: 8px;
  transform: translateX(100%); transition: transform 0.35s ease;
}
.mobile-menu.open { display: flex; transform: translateX(0); }
.mobile-close { position: absolute; top: 20px; right: 20px; background: none; border: none; cursor: pointer; color: var(--navy); }
.mobile-link { font-size: 18px; color: var(--ink); padding: 14px 0; border-bottom: 1px solid var(--gray-100); font-weight: 400; letter-spacing: 0.02em; }
.mobile-link:hover { color: var(--navy); }
.mobile-cta { display: block; margin-top: 24px; background: var(--navy); color: var(--white); text-align: center; padding: 16px; border-radius: 4px; font-size: 14px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.mobile-overlay { display: none; position: fixed; inset: 0; z-index: 190; background: rgba(13,30,58,0.4); backdrop-filter: blur(4px); }
.mobile-overlay.open { display: block; }

/* ── Hero ────────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://luenebase.de/wp-content/uploads/2025/10/P1001863-HDR.jpg');
  background-size: cover; background-position: center;
  transform: scale(1.05); transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,30,58,0.92) 0%, rgba(13,30,58,0.45) 45%, rgba(13,30,58,0.10) 100%);
}
.hero-content { position: relative; padding: 0 56px 88px; max-width: 820px; }
.eyebrow { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.hero h1 { font-family: var(--display); font-size: clamp(3rem, 5.5vw, 5.5rem); font-weight: 300; color: var(--white); line-height: 1.05; letter-spacing: -0.025em; margin-bottom: 24px; }
.hero-sub { font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.68); line-height: 1.7; max-width: 500px; margin-bottom: 44px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-hero-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--navy); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 15px 32px; border-radius: 4px; transition: background 0.2s, transform 0.15s; }
.btn-hero-primary:hover { background: var(--navy-50); transform: translateY(-1px); }
.btn-hero-secondary { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 400; letter-spacing: 0.06em; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.3); transition: color 0.2s, border-color 0.2s; }
.btn-hero-secondary:hover { color: var(--white); border-color: rgba(255,255,255,0.6); }
.hero-scroll { position: absolute; bottom: 36px; right: 56px; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.35); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,0.25); }

/* ── Stats Bar ───────────────────────────────────── */
.stats-bar { background: var(--navy); }
.stats-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: stretch; padding: 0 56px; }
.stat-item { flex: 1; display: flex; align-items: center; gap: 14px; padding: 26px 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-icon { color: var(--gold); flex-shrink: 0; }
.stat-num { font-family: var(--display); font-size: 32px; color: var(--white); font-weight: 400; line-height: 1; font-variant-numeric: lining-nums; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.4; margin-top: 4px; }

/* ── Section Base ────────────────────────────────── */
.section { padding: 100px 56px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-white { background: var(--white); }
.section-tint  { background: var(--gray-50); }
.section-navy  { background: var(--navy-50); }
.section-dark  { background: var(--navy); }
.section-darkest { background: var(--navy-800); }
.section-gray { background: var(--gray-50); }

.label-sm { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy); margin-bottom: 16px; }
.label-sm-gold { color: var(--gold); }
.label-sm-muted { color: var(--stone); }

.h2 { font-family: var(--display); font-size: clamp(2.2rem, 3.5vw, 3.5rem); font-weight: 300; line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 20px; }
.h2-light { color: var(--white); }
.lead-text { font-size: 18px; color: var(--ink-muted); line-height: 1.75; max-width: 580px; font-weight: 300; }
.lead-text-light { color: rgba(255,255,255,0.65); }

/* ── Gallery ─────────────────────────────────────── */
.gallery-header { max-width: 1200px; margin: 0 auto 48px; display: flex; align-items: flex-end; justify-content: space-between; }
.gallery-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 280px; gap: 6px; }
.g-cell { overflow: hidden; background: var(--gray-100); position: relative; cursor: pointer; }
.g-cell.large { grid-column: span 2; grid-row: span 2; }
.g-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.g-cell:hover img { transform: scale(1.05); }
.g-more { position: absolute; inset: 0; background: rgba(13,30,58,0.62); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; gap: 10px; }
.ghost-link { display: inline-flex; align-items: center; gap: 6px; color: var(--navy); font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; border-bottom: 1px solid var(--navy-200); padding-bottom: 3px; transition: color 0.2s, border-color 0.2s; }
.ghost-link:hover { color: var(--navy-dk); border-color: var(--navy-400); }

/* ── Highlight Cards ─────────────────────────────── */
.highlights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--gray-200); border: 1px solid var(--gray-200); margin-top: 64px; }
.highlights-grid-3 { grid-template-columns: repeat(3, 1fr); }
.h-card { background: var(--white); padding: 36px 28px; transition: background 0.3s; position: relative; }
.h-card:hover { background: var(--navy-50); }
.h-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--navy); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
.h-card:hover::after { transform: scaleX(1); }
.h-icon { color: var(--navy); margin-bottom: 20px; }
.h-title { font-family: var(--display); font-size: 22px; font-weight: 400; color: var(--ink); margin-bottom: 8px; }
.h-desc { font-size: 14px; color: var(--ink-muted); line-height: 1.65; }

/* ── Amenities ───────────────────────────────────── */
.amenities-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.amen-img { position: sticky; top: 88px; overflow: hidden; aspect-ratio: 3/4; }
.amen-img img { width: 100%; height: 100%; object-fit: cover; }
.amen-group { margin-bottom: 36px; }
.amen-group-title { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); padding-bottom: 12px; margin-bottom: 4px; border-bottom: 1px solid var(--gray-200); }
.amen-row { display: flex; align-items: center; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--gray-100); }
.amen-row:last-child { border-bottom: none; }
.amen-row i { color: var(--navy); flex-shrink: 0; }
.amen-name { font-size: 15px; color: var(--ink); }

/* ── Location ────────────────────────────────────── */
.location-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.loc-img { aspect-ratio: 4/3; overflow: hidden; }
.loc-img img { width: 100%; height: 100%; object-fit: cover; }
.loc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0; }
.tag { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--ink-muted); background: var(--white); border: 1px solid var(--gray-200); padding: 7px 14px; border-radius: 9999px; }
.discover-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--gray-200); margin-top: 32px; }
.disc-item { display: flex; align-items: center; gap: 12px; padding: 13px 18px; font-size: 14px; color: var(--ink-muted); border-bottom: 1px solid var(--gray-100); border-right: 1px solid var(--gray-100); }
.disc-item:nth-child(2n) { border-right: none; }
.disc-item:nth-last-child(-n+2) { border-bottom: none; }
.disc-item i { color: var(--navy); flex-shrink: 0; }

/* ── Booking ─────────────────────────────────────── */
.booking-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-card { background: var(--white); border-radius: 4px; border: 1px solid var(--gray-200); padding: 32px; box-shadow: 0 2px 16px rgba(28,59,110,0.07); margin-top: 36px; }
.contact-row { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--gray-100); }
.contact-row:last-child { border-bottom: none; }
.contact-row i { color: var(--navy); flex-shrink: 0; }
.c-label { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); }
.c-value { font-size: 15px; color: var(--ink); margin-top: 1px; }
.c-value a { color: var(--navy); transition: color 0.2s; }
.c-value a:hover { color: var(--navy-dk); }
.smoobu-note { font-size: 12px; color: var(--stone); margin-top: 12px; }
.verfuegbarkeit-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: center; }
.verfuegbarkeit-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.verfuegbarkeit-checklist li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-muted); }
.verfuegbarkeit-checklist li i { color: var(--navy); flex-shrink: 0; }
.book-center { max-width: 860px; margin: 0 auto; }
.book-col-label { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); padding-bottom: 14px; margin-bottom: 20px; border-bottom: 1px solid var(--gray-200); }
.cal-col-wrap { border: 1px solid var(--gray-200); border-radius: 6px; overflow: hidden; background: var(--white); box-shadow: 0 2px 16px rgba(28,59,110,0.07); }
.contact-card-h { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; background: var(--white); border-radius: 4px; border: 1px solid var(--gray-200); padding: 32px; box-shadow: 0 2px 16px rgba(28,59,110,0.07); margin-top: 48px; }
.host-block { display:flex; align-items:center; gap:14px; padding-bottom:20px; margin-bottom:20px; border-bottom:1px solid var(--gray-100); }
.host-avatar { width:44px; height:44px; border-radius:50%; background:var(--navy-50); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.host-name { font-size:15px; font-weight:600; color:var(--ink); margin-top:2px; }
.host-label { font-size:10px; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; color:var(--stone); }
.osm-map { margin-top:16px; border-radius:3px; overflow:hidden; border:1px solid var(--gray-200); height:240px; }
.osm-map iframe { display:block; width:100%; height:100%; border:none; }
#apartmentIframeAll { min-height:80px; }

/* ── CTA Band ────────────────────────────────────── */
.cta-band { background: var(--navy); padding: 72px 56px; }
.cta-band-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────── */
.footer { background: var(--navy-800); padding: 52px 56px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.3); letter-spacing: 0.06em; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.65); }
.footer-links a.active { color: rgba(255,255,255,0.75); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ── Lightbox ────────────────────────────────────── */
.lightbox { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(7,15,30,0.97); align-items: center; justify-content: center; padding: 40px; }
.lightbox.open { display: flex; }
.lb-img { max-width: 1100px; max-height: 80vh; object-fit: contain; width: 100%; }
.lb-close { position: absolute; top: 24px; right: 32px; color: rgba(255,255,255,0.5); cursor: pointer; transition: color 0.2s; background: none; border: none; }
.lb-close:hover { color: #fff; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.4); cursor: pointer; padding: 20px; background: none; border: none; transition: color 0.2s; }
.lb-nav:hover { color: #fff; }
.lb-prev { left: 12px; }
.lb-next { right: 12px; }
.lb-counter { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.5); font-size: 13px; letter-spacing: 0.1em; font-family: 'DM Sans', sans-serif; }

/* ── Review Carousel ─────────────────────────────── */
.review-carousel-outer { display: flex; align-items: flex-start; gap: 12px; }
.review-carousel-wrapper { flex: 1; overflow: hidden; }
.review-track { display: flex; gap: 16px; transition: transform 0.45s cubic-bezier(0.4,0,0.2,1); }
.carousel-btn { flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--gray-100) !important; background: var(--white) !important; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--navy) !important; box-shadow: 0 1px 4px rgba(0,0,0,0.08); margin-top: 66px; transition: box-shadow 0.2s; }
.carousel-btn:hover { box-shadow: 0 3px 10px rgba(28,59,110,0.15); }
.carousel-dots { display: flex; justify-content: center; gap: 6px; margin-top: 20px; }
.carousel-dot { width: 7px !important; height: 7px !important; border-radius: 50% !important; background: var(--gray-100) !important; border: none !important; cursor: pointer; padding: 0 !important; transition: background 0.2s, transform 0.2s; }
.carousel-dot.active { background: var(--navy) !important; transform: scale(1.3); }
.review-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: 6px; padding: 28px 24px 64px; display: flex; flex-direction: column; flex-shrink: 0; height: 170px; overflow: hidden; position: relative; transition: box-shadow 0.2s; }
.review-card:hover { box-shadow: 0 4px 20px rgba(28,59,110,0.1); }
.review-card.expanded { height: auto; overflow: visible; padding-bottom: 28px; }
.review-stars { color: var(--navy); font-size: 14px; margin-bottom: 14px; flex-shrink: 0; }
.review-text { font-size: 15px; color: var(--ink); line-height: 1.65; font-style: italic; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.review-card.expanded .review-text { display: block; overflow: visible; }
.review-meta { display: none; padding-top: 16px; }
.review-card.expanded .review-meta { display: block; }
.review-name { font-size: 13px; font-weight: 600; color: var(--navy); }
.review-date { font-size: 12px; color: var(--stone); margin-top: 2px; }
.review-toggle { position: absolute; bottom: 20px; left: 24px; background: none !important; border: none !important; padding: 0 !important; color: var(--navy) !important; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; display: flex; align-items: center; gap: 5px; font-family: var(--body); }
.review-card.expanded .review-toggle { position: static; margin-top: 14px; }

/* ── Sub-page Banner ─────────────────────────────── */
.page-banner { background: var(--navy-800); padding: 148px 56px 72px; }
.page-banner-inner { max-width: 1200px; margin: 0 auto; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 28px; transition: color 0.2s; }
.back-link:hover { color: rgba(255,255,255,0.7); }
.page-eyebrow { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.page-h1 { font-family: var(--display); font-size: clamp(2.8rem, 4.5vw, 4.5rem); font-weight: 300; color: var(--white); letter-spacing: -0.02em; line-height: 1.1; }

/* ── Legal Pages ─────────────────────────────────── */
.legal-content { max-width: 760px; }
.legal-block { margin-bottom: 52px; }
.legal-block:last-child { margin-bottom: 0; }
.legal-h2 { font-family: var(--display); font-size: 1.9rem; font-weight: 400; color: var(--ink); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--gray-200); }
.legal-h3 { font-size: 15px; font-weight: 600; color: var(--ink); margin: 24px 0 10px; }
.legal-p { font-size: 15px; color: var(--ink-muted); line-height: 1.85; margin-bottom: 14px; }
.legal-p:last-child { margin-bottom: 0; }
.legal-p a { color: var(--navy); border-bottom: 1px solid var(--navy-200); transition: color 0.2s; }
.legal-p a:hover { color: var(--navy-dk); }
.legal-ul { list-style: none; margin: 8px 0 20px; display: flex; flex-direction: column; gap: 8px; }
.legal-ul li { font-size: 15px; color: var(--ink-muted); line-height: 1.7; padding-left: 22px; position: relative; }
.legal-ul li::before { content: '—'; position: absolute; left: 0; color: var(--stone); }

/* ── Contact Page ────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info-block { display: flex; flex-direction: column; gap: 40px; }
.contact-card-page { display: flex; gap: 20px; align-items: flex-start; padding: 28px 32px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 6px; transition: box-shadow 0.2s; }
.contact-card-page:hover { box-shadow: 0 4px 24px rgba(28,59,110,0.07); }
.contact-card-icon { flex-shrink: 0; width: 44px; height: 44px; background: var(--navy-50); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--navy); }
.contact-card-label { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone); margin-bottom: 6px; }
.contact-card-value { font-size: 16px; color: var(--ink); font-weight: 400; }
.contact-card-value a { color: var(--navy); transition: color 0.2s; }
.contact-card-value a:hover { color: var(--navy-dk); }
.contact-card-sub { font-size: 13px; color: var(--ink-muted); margin-top: 4px; line-height: 1.6; }
.booking-note { margin-top: 56px; padding: 28px 32px; background: var(--navy-50); border-left: 3px solid var(--navy); border-radius: 0 6px 6px 0; }
.booking-note p { font-size: 14px; color: var(--ink-muted); line-height: 1.75; }
.booking-note strong { color: var(--ink); }
.booking-note a { color: var(--navy); font-weight: 600; border-bottom: 1px solid var(--navy-200); transition: color 0.2s; }
.booking-note a:hover { color: var(--navy-dk); }

/* ── WPForms overrides ───────────────────────────── */
.contact-form-wrap .wpforms-container { margin-top: 0; }
.contact-form-wrap .wpforms-form .wpforms-field input,
.contact-form-wrap .wpforms-form .wpforms-field textarea,
.contact-form-wrap .wpforms-form .wpforms-field select {
  font-family: var(--body) !important;
  font-size: 14px !important;
  color: var(--ink) !important;
  border: 1px solid var(--gray-200) !important;
  border-radius: 4px !important;
  padding: 14px 16px !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}
.contact-form-wrap .wpforms-form .wpforms-field input:focus,
.contact-form-wrap .wpforms-form .wpforms-field textarea:focus {
  border-color: var(--navy-400) !important;
  box-shadow: 0 0 0 3px rgba(28,59,110,0.08) !important;
  outline: none !important;
}
.contact-form-wrap .wpforms-form .wpforms-field label.wpforms-field-label {
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--ink-muted) !important;
}
.contact-form-wrap .wpforms-form button[type=submit],
.contact-form-wrap .wpforms-form .wpforms-submit {
  background: var(--navy) !important;
  color: var(--white) !important;
  font-family: var(--body) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 16px 32px !important;
  border-radius: 4px !important;
  border: none !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
}
.contact-form-wrap .wpforms-form button[type=submit]:hover,
.contact-form-wrap .wpforms-form .wpforms-submit:hover {
  background: var(--navy-dk) !important;
}
.contact-form-wrap .wpforms-form .wpforms-field-label-hide + input { margin-top: 0; }
.form-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.form-title { font-family: var(--display); font-size: clamp(1.8rem, 2.5vw, 2.4rem); font-weight: 300; color: var(--ink); margin-bottom: 8px; line-height: 1.2; }
.form-subtitle { font-size: 14px; color: var(--ink-muted); margin-bottom: 36px; line-height: 1.7; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 960px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .section { padding: 72px 24px; }
  .hero-content { padding: 0 24px 64px; }
  .stats-inner { flex-wrap: wrap; padding: 0 24px; }
  .stat-item { flex: 1 1 calc(50% - 48px); border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .highlights-grid-3 { grid-template-columns: 1fr 1fr; }
  .amenities-layout, .location-layout, .booking-layout { grid-template-columns: 1fr; gap: 40px; }
  .amen-img { position: relative; top: 0; aspect-ratio: 4/3; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .g-cell.large { grid-column: 1; grid-row: 1; }
  .verfuegbarkeit-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-card-h { grid-template-columns: 1fr; }
  .cta-band { padding: 56px 24px; }
  .footer { padding: 36px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .page-banner { padding: 120px 24px 56px; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
}
@media (max-width: 560px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .highlights-grid-3 { grid-template-columns: 1fr; }
  .discover-grid { grid-template-columns: 1fr; }
  .disc-item { border-right: none !important; }
  .disc-item:nth-last-child(-n+1) { border-bottom: none; }
  .disc-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--gray-100); }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ── FAQ Page ────────────────────────────────────── */
.faq-layout { display: grid; grid-template-columns: 1fr 340px; gap: 80px; align-items: start; }
.faq-group { margin-bottom: 52px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group-label { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy); padding-bottom: 16px; margin-bottom: 0; border-bottom: 2px solid var(--navy); }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; text-align: left; background: none; border: none; cursor: pointer; transition: color 0.2s; }
.faq-question:hover .faq-question-text { color: var(--navy); }
.faq-question-text { font-family: var(--display); font-size: 21px; font-weight: 400; color: var(--ink); line-height: 1.3; }
.faq-icon { flex-shrink: 0; color: var(--navy); transition: transform 0.25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
.faq-answer-inner { padding: 2px 0 24px; font-size: 15px; color: var(--ink-muted); line-height: 1.85; }
.faq-answer-inner a { color: var(--navy); border-bottom: 1px solid var(--navy-200); transition: color 0.2s; }
.faq-answer-inner a:hover { color: var(--navy-dk); }
.faq-sidebar { position: sticky; top: 100px; }
.faq-contact-card { background: var(--white); border: 1px solid var(--gray-200); padding: 28px; border-radius: 4px; box-shadow: 0 2px 16px rgba(28,59,110,0.07); }
@media (max-width: 960px) {
  .faq-layout { grid-template-columns: 1fr; gap: 56px; }
  .faq-sidebar { position: relative; top: 0; }
  .faq-question-text { font-size: 18px; }
}

/* ── Smoobu Mobile Fallback ──────────────────────── */
.smoobu-mobile-fallback {
  display: none;
  text-align: center;
  padding: 48px 24px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
}
.btn-book-mobile {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 48px;
  border-radius: 4px;
  transition: background 0.2s;
}
.btn-book-mobile:hover { background: var(--navy-dk); }
@media (max-width: 768px) {
  #apartmentIframeAll { width: 100%; min-height: 500px; }
  #smoobuApartment2969606de,
  #smoobuApartment2969606de .calendarContent {
    min-height: 520px;
    width: 100%;
    overflow: visible;
  }
  #smoobuApartment2969606de iframe {
    width: 100% !important;
    min-height: 520px !important;
    border: 0;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    display: block;
    padding: 0;
  }
  .gallery-grid .g-cell,
  .gallery-grid .g-cell.large {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 6px;
    overflow: hidden;
    aspect-ratio: auto;
  }
  .gallery-grid .g-cell img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .lb-nav { padding: 12px; }
  .lb-prev { left: 4px; }
  .lb-next { right: 4px; }
}
