/* ===========================================================
   saintbnb — shared stylesheet (Awakening network)
   =========================================================== */
:root {
  --surface:        #FFFFFF;
  --surface-alt:    #F4F3EF;   /* cream */
  --surface-warm:   #ECEAE3;   /* warm light grey */
  --surface-deep:   #111111;   /* charcoal (dark sections) */
  --border:         #E5E3DC;
  --border-light:   #EFEEE9;
  --text:           #111111;   /* charcoal */
  --text-2:         #555555;
  --text-muted:     #999999;
  --primary:        #FF4D1C;   /* signal orange */
  --primary-dark:   #E04010;   /* deep signal orange */
  --primary-soft:   #FFEDE6;   /* soft peach tint */
  --primary-border: #FFCDBB;   /* peach border */
  --amber:          #FF8A66;   /* light flame */
  --error:          #D63A0F;
  --success:        #2F6B2F;
  --font-drama: "Cormorant Garamond", Georgia, serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--text); background: var(--surface);
  -webkit-font-smoothing: antialiased; line-height: 1.5; letter-spacing: -0.011em;
}
/* sharp top accent bar */
body::before {
  content: ""; position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--amber), var(--primary));
  z-index: 9999; pointer-events: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }
h1, h2, h3, h4 { letter-spacing: -0.025em; line-height: 1.1; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: transparent; padding: 14px 16px 6px;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px 10px 22px; gap: 16px;
  background: rgba(17,17,17,0.6);
  backdrop-filter: blur(24px) saturate(1.4); -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-radius: 60px; border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.05);
}
.brand {
  display: flex; align-items: center; gap: 9px;
  font-weight: 900; font-size: 17px; color: #fff; letter-spacing: -0.02em;
  flex-shrink: 0;
}
.brand-mark {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  font-size: 0; /* verbirgt das 🔥-Emoji im Markup */
}
/* eigene Flammen-Silhouette statt Emoji — Farbe = weiß auf orangem Kreis */
.brand-mark::after {
  content: ""; position: absolute; inset: 0;
  background: #fff;
  -webkit-mask: url("/assets/flame-mark.svg") center / 62% 62% no-repeat;
          mask: url("/assets/flame-mark.svg") center / 62% 62% no-repeat;
}
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-link { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(244,243,239,0.72); white-space: nowrap; transition: color 0.2s; }
.nav-link:hover { color: #fff; }
.nav-link.accent { color: var(--amber); font-weight: 700; }
.nav-right { display: flex; align-items: center; gap: 14px; }

.lang-switch {
  display: inline-flex; border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px; overflow: hidden; background: transparent;
}
.lang-switch button {
  padding: 6px 11px; font-size: 11px; font-weight: 700; color: rgba(244,243,239,0.6);
}
.lang-switch button.on { background: #fff; color: #111; }

.nav-cta {
  background: var(--primary); color: white;
  padding: 10px 18px; border-radius: 999px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  white-space: nowrap; transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }
.nav-login { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; white-space: nowrap; }
.nav-login:hover { color: var(--amber); }

@media (max-width: 900px) {
  .nav-links .nav-link { display: none; }
  .nav-login { display: none; }
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  background: var(--primary); color: white;
  padding: 16px 30px; border-radius: 999px; font-weight: 700; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,77,28,0.4); }
.btn-ghost {
  background: transparent; border: 2px solid rgba(255,255,255,0.85); color: white;
  padding: 14px 28px; border-radius: 999px; font-weight: 700; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-ghost:hover { background: #fff; color: var(--text); transform: translateY(-2px); }
.btn-outline {
  border: 2px solid var(--text); color: var(--text); background: transparent;
  padding: 14px 28px; border-radius: 999px; font-weight: 700; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-outline:hover { background: var(--text); color: #fff; transform: translateY(-2px); }

/* ---------- SECTIONS ---------- */
section { padding: 100px 0; }
.section-head { margin-bottom: 56px; max-width: 760px; }
.section-eyebrow {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px;
}
.section-title { font-size: clamp(32px, 4.5vw, 56px); font-weight: 900; margin-bottom: 16px; letter-spacing: -0.03em; text-transform: uppercase; }
.section-title em, .section-title i { font-family: var(--font-drama); font-style: italic; font-weight: 600; text-transform: none; font-size: 1.12em; }
.section-sub { font-size: clamp(16px, 1.4vw, 19px); color: var(--text-2); line-height: 1.55; }
@media (max-width: 640px) { section { padding: 64px 0; } .section-head { margin-bottom: 32px; } }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 92vh; color: white; overflow: hidden; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; background: #111111; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 1; filter: grayscale(25%) brightness(0.45) contrast(1.1) saturate(1.3); }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(17,17,17,0.75) 0%, rgba(17,17,17,0.3) 60%, rgba(17,17,17,0.5) 100%),
    linear-gradient(180deg, transparent 55%, rgba(17,17,17,0.92) 100%),
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,255,255,0.025) 59px, rgba(255,255,255,0.025) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,0.025) 59px, rgba(255,255,255,0.025) 60px);
}
.hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 100px 24px 80px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; min-height: 92vh;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 7px 14px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,243,239,0.85);
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px rgba(255,77,28,0.25); }
.hero-title { font-size: clamp(44px, 7vw, 80px); font-weight: 900; line-height: 0.98; margin: 22px 0 24px; letter-spacing: -0.03em; text-transform: uppercase; }
.hero-title .accent { font-family: var(--font-drama); font-style: italic; font-weight: 600; text-transform: none; font-size: 1.3em; line-height: 0.85; color: var(--surface-alt); }
.hero-sub { font-family: var(--font-mono); font-size: 12px; font-weight: 400; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(244,243,239,0.65); max-width: 520px; margin-bottom: 32px; line-height: 1.8; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* phone preview */
.hero-phone {
  position: relative; width: 100%; max-width: 320px; aspect-ratio: 9 / 19.5;
  margin-left: auto; border-radius: 36px; background: #1A1A1A; padding: 8px;
  box-shadow: var(--shadow-lg), 0 40px 80px rgba(255,77,28,0.12); transform: rotate(2deg);
}
.hero-phone::after { content: ""; position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 90px; height: 24px; background: #1A1A1A; border-radius: 14px; z-index: 5; }
.hero-phone-screen { width: 100%; height: 100%; border-radius: 28px; background: white; overflow: hidden; display: flex; flex-direction: column; }
.phone-search-pill { margin: 50px 12px 8px; padding: 9px 12px; border-radius: 999px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); font-size: 11px; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 8px; }
.phone-search-pill .sub { font-size: 9px; color: var(--text-2); margin-top: 1px; font-weight: 500; }
.phone-cats { display: flex; gap: 16px; overflow-x: auto; padding: 6px 12px; border-bottom: 1px solid var(--border-light); scrollbar-width: none; }
.phone-cats::-webkit-scrollbar { display: none; }
.phone-cat { flex-shrink: 0; text-align: center; opacity: 0.55; padding-bottom: 4px; }
.phone-cat.active { opacity: 1; border-bottom: 2px solid var(--text); }
.phone-cat .glyph { font-size: 14px; }
.phone-cat .lbl { font-size: 8px; font-weight: 600; margin-top: 2px; color: var(--text-2); }
.phone-cat.active .lbl { color: var(--text); }
.phone-card { margin: 10px 12px 0; }
.phone-card img { width: 100%; aspect-ratio: 1.1/1; object-fit: cover; border-radius: 10px; }
.phone-card .meta { padding: 6px 0; font-size: 9px; }
.phone-card .row { display: flex; justify-content: space-between; }
.phone-card .name { font-weight: 700; color: var(--text); }
.phone-card .sub { color: var(--text-2); margin-top: 1px; font-size: 8px; }

@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding-top: 70px; padding-bottom: 50px; }
  .hero-phone { display: none; }
}

/* ---------- STATS ---------- */
.stats { background: var(--surface-deep); color: white; padding: 28px 0; }
.stats-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .n { font-size: clamp(28px, 4vw, 36px); font-weight: 800; color: var(--primary); line-height: 1; }
.stat .l { font-family: var(--font-mono); font-size: 10.5px; color: rgba(244,243,239,0.55); margin-top: 6px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; }
@media (max-width: 640px) { .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

/* ---------- AWAKENING GRID ---------- */
.awakening { background: linear-gradient(180deg, #F4F3EF 0%, #FFFFFF 100%); position: relative; }
.awakening::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 50% at 80% 0%, rgba(255,77,28,0.05) 0%, transparent 60%); pointer-events: none; }
.awakening .section-head { position: relative; z-index: 1; }
.awakening-logo-row { display: inline-flex; align-items: center; gap: 10px; background: white; border: 1px solid var(--primary-border); padding: 8px 14px; border-radius: 999px; margin-bottom: 18px; box-shadow: var(--shadow-sm); }
.awakening-logo-row .mark { width: 22px; height: 22px; border-radius: 6px; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-size: 11px; }
.awakening-logo-row .label { font-size: 12px; font-weight: 700; color: var(--primary-dark); letter-spacing: 0.3px; }
.awakening-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; position: relative; z-index: 1; }
.aw-card { background: white; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; cursor: pointer; display: flex; flex-direction: column; }
.aw-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-border); }
.aw-card-img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--surface-alt); }
.aw-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.aw-card:hover .aw-card-img img { transform: scale(1.05); }
.aw-card-flag { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,0.96); padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; color: var(--text); display: inline-flex; align-items: center; gap: 5px; box-shadow: var(--shadow-sm); }
.aw-card-flag.flagship { background: var(--primary); color: white; }
.aw-card-country { position: absolute; top: 12px; right: 12px; font-size: 18px; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3)); }
.aw-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.aw-card-city { font-size: 11px; font-weight: 700; color: var(--text-2); letter-spacing: 1px; text-transform: uppercase; }
.aw-card-name { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; color: var(--text); }
.aw-card-meta { font-size: 13px; color: var(--text-2); margin-top: 2px; }
.aw-card-foot { margin-top: auto; padding-top: 14px; display: flex; justify-content: space-between; align-items: baseline; }
.aw-card-stays { font-size: 13px; color: var(--text); }
.aw-card-stays b { font-weight: 700; }
.aw-card-arrow { font-size: 16px; color: var(--primary); transition: transform 0.2s; }
.aw-card:hover .aw-card-arrow { transform: translateX(4px); }
@media (max-width: 920px) { .awakening-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .awakening-grid { grid-template-columns: 1fr; } }

/* ---------- DESTINATIONS (other communities) ---------- */
.destinations { background: var(--surface-alt); }
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.dest-card { position: relative; aspect-ratio: 0.78; border-radius: 18px; overflow: hidden; cursor: pointer; transition: transform 0.25s; }
.dest-card:hover { transform: translateY(-4px); }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.dest-card:hover img { transform: scale(1.06); }
.dest-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.78) 100%); }
.dest-card .label { position: absolute; left: 18px; right: 18px; bottom: 16px; color: white; z-index: 1; }
.dest-card .label .city { font-size: 11px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; opacity: 0.85; }
.dest-card .label .name { font-size: 18px; font-weight: 700; margin-top: 2px; letter-spacing: -0.02em; }
.dest-card .label .meta { font-size: 12px; font-weight: 500; opacity: 0.78; margin-top: 4px; }
.dest-card .heat { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,0.94); color: var(--primary); padding: 4px 9px; border-radius: 999px; font-size: 10px; font-weight: 700; z-index: 1; display: inline-flex; align-items: center; gap: 4px; }
@media (max-width: 920px) { .dest-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- HOW IT WORKS ---------- */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.how-card { background: var(--surface); border: 1px solid var(--border); border-radius: 24px; padding: 32px 28px; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.how-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary-border); }
.how-num { width: 44px; height: 44px; border-radius: 12px; background: var(--primary-soft); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; margin-bottom: 22px; }
.how-card h3 { font-size: 22px; font-weight: 700; margin: 0 0 10px; }
.how-card p { font-size: 15px; color: var(--text-2); line-height: 1.55; margin: 0; }
@media (max-width: 760px) { .how-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ---------- FAITH ---------- */
.faith { background: var(--surface-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faith-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.faith-card { background: white; border: 1px solid var(--primary-border); border-radius: 22px; padding: 28px; box-shadow: var(--shadow-md); }
.faith-card-head { display: flex; align-items: center; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid var(--border); margin-bottom: 18px; }
.faith-card-head .av { width: 48px; height: 48px; border-radius: 50%; background: #ECEAE3 url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&w=140&q=70") center/cover; }
.faith-card-head .name { font-weight: 700; }
.faith-card-head .sub { font-size: 13px; color: var(--text-2); }
.faith-card .field { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.faith-card .field .k { color: var(--text-2); }
.faith-card .field .v { font-weight: 600; }
.faith-card .pill { margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; background: var(--surface-warm); border: 1px solid var(--primary-border); color: var(--primary-dark); padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; }
@media (max-width: 920px) { .faith-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial { background: var(--surface-alt); border-radius: 22px; padding: 26px; }
.testimonial .stars { color: var(--primary); margin-bottom: 14px; font-size: 14px; }
.testimonial .quote { font-size: 16px; line-height: 1.55; color: var(--text); margin-bottom: 18px; }
.testimonial .by { display: flex; align-items: center; gap: 12px; }
.testimonial .by img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.testimonial .by .n { font-weight: 700; font-size: 14px; }
.testimonial .by .l { font-size: 12px; color: var(--text-2); }
@media (max-width: 760px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ---------- HOST CTA ---------- */
.host-cta { background: var(--surface-deep); color: white; overflow: hidden; position: relative; }
.host-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 70% at 20% 0%, rgba(255,77,28,0.14) 0%, transparent 60%), repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,255,255,0.02) 59px, rgba(255,255,255,0.02) 60px); }
.host-cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.host-cta h2 { font-size: clamp(36px, 5vw, 58px); font-weight: 800; letter-spacing: -0.03em; margin: 0 0 20px; }
.host-cta p { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.6; margin: 0 0 32px; max-width: 480px; }
.host-bullets { margin: 0 0 32px; padding: 0; list-style: none; }
.host-bullets li { padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; gap: 14px; font-size: 16px; }
.host-bullets li:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.host-bullets .ck { width: 26px; height: 26px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.host-stats { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 36px; }
.host-stat { margin-bottom: 24px; }
.host-stat:last-child { margin: 0; }
.host-stat .v { font-size: clamp(36px, 5vw, 52px); font-weight: 800; color: white; letter-spacing: -0.03em; line-height: 1; }
.host-stat .k { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 6px; }
@media (max-width: 920px) { .host-cta-inner { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- EMAIL SIGNUP ---------- */
.signup { background: var(--surface); border-top: 1px solid var(--border); }
.signup-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.signup-title { font-size: clamp(32px, 4.5vw, 52px); font-weight: 800; margin-bottom: 14px; letter-spacing: -0.03em; }
.signup-sub { color: var(--text-2); font-size: 17px; margin-bottom: 28px; }
.signup-form { display: flex; gap: 8px; max-width: 480px; margin: 0 auto; }
.signup-form input { flex: 1; height: 56px; padding: 0 20px; border-radius: 14px; border: 1.5px solid var(--border); font-size: 15px; font-family: inherit; color: var(--text); background: white; }
.signup-form input:focus { outline: none; border-color: var(--primary); }
.signup-form input { border-radius: 999px; }
.signup-form button { height: 56px; padding: 0 30px; background: var(--primary); color: white; border-radius: 999px; font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; transition: background 0.15s; }
.signup-form button:hover { background: var(--primary-dark); }
.signup-foot { margin-top: 14px; font-size: 12px; color: var(--text-muted); }
@media (max-width: 520px) { .signup-form { flex-direction: column; } .signup-form input, .signup-form button { width: 100%; } }

/* ---------- FOOTER ---------- */
.footer { background: var(--surface-deep); padding: 70px 0 40px; color: rgba(244,243,239,0.65); }
.footer .brand { color: #fff; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.foot-brand p { font-size: 14px; color: rgba(244,243,239,0.55); line-height: 1.55; max-width: 280px; margin-top: 14px; }
.foot-col h4 { font-family: var(--font-mono); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.16em; color: #fff; margin: 0 0 16px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin-bottom: 10px; }
.foot-col a { font-size: 14px; color: rgba(244,243,239,0.55); transition: color 0.2s; }
.foot-col a:hover { color: #fff; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 13px; color: rgba(244,243,239,0.4); }
.foot-bottom .socials { display: flex; gap: 14px; }
.foot-bottom .socials a { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(244,243,239,0.7); transition: background 0.15s, color 0.15s; }
.foot-bottom .socials a:hover { background: var(--primary); color: #fff; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; } .foot-brand { grid-column: 1 / -1; } .foot-bottom { flex-direction: column; gap: 14px; } }

/* ===========================================================
   LOCATION DETAIL PAGE
   =========================================================== */
.loc-hero { position: relative; height: 56vh; min-height: 420px; color: white; overflow: hidden; }
.loc-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.loc-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.8) 100%); z-index: -1; }
.loc-hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px 44px; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.loc-back { position: absolute; top: 24px; left: 24px; display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.92); color: var(--text); padding: 9px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; box-shadow: var(--shadow-sm); z-index: 2; }
.loc-back:hover { background: white; }
.loc-flag-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; width: fit-content; margin-bottom: 16px; }
.loc-title { font-size: clamp(40px, 7vw, 72px); font-weight: 900; letter-spacing: -0.04em; line-height: 0.98; }
.loc-tagline { font-size: clamp(17px, 2vw, 22px); color: rgba(255,255,255,0.9); margin-top: 14px; max-width: 640px; }

.loc-body { max-width: 1280px; margin: 0 auto; padding: 56px 24px; display: grid; grid-template-columns: 1.6fr 1fr; gap: 56px; align-items: start; }
.loc-main h2 { font-size: 26px; font-weight: 700; margin: 0 0 16px; letter-spacing: -0.02em; }
.loc-about-text { font-size: 17px; color: var(--text-2); line-height: 1.65; }
.loc-divider { height: 1px; background: var(--border); margin: 40px 0; }

.loc-gallery { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; height: 320px; border-radius: 18px; overflow: hidden; margin-top: 28px; }
.loc-gallery img { width: 100%; height: 100%; object-fit: cover; }
.loc-gallery img:first-child { grid-row: 1 / 3; }
@media (max-width: 600px) { .loc-gallery { grid-template-columns: 1fr; grid-template-rows: none; height: auto; } .loc-gallery img { height: 200px; } .loc-gallery img:first-child { grid-row: auto; } }

.loc-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
.loc-hl { background: var(--surface-alt); border: 1px solid var(--border); border-radius: 16px; padding: 20px; }
.loc-hl .ico { font-size: 26px; margin-bottom: 10px; }
.loc-hl .t { font-size: 15px; font-weight: 700; }
.loc-hl .p { font-size: 13px; color: var(--text-2); margin-top: 4px; line-height: 1.5; }
@media (max-width: 760px) { .loc-highlights { grid-template-columns: 1fr; } }

/* sticky side card */
.loc-side { position: sticky; top: 90px; }
.loc-card { background: white; border: 1px solid var(--border); border-radius: 20px; padding: 24px; box-shadow: var(--shadow-md); }
.loc-card .price { font-size: 26px; font-weight: 800; }
.loc-card .price span { font-size: 15px; font-weight: 500; color: var(--text-2); }
.loc-card .rating { font-size: 14px; margin: 4px 0 18px; color: var(--text); }
.loc-service { border-top: 1px solid var(--border); padding-top: 16px; margin-top: 4px; }
.loc-service h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-2); margin: 0 0 12px; }
.loc-service-row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 14px; }
.loc-service-row .d { color: var(--text); }
.loc-service-row .ti { font-weight: 700; color: var(--primary-dark); }
.loc-card .btn-primary { width: 100%; margin-top: 18px; }
.loc-meta-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.loc-meta-pill { font-size: 12px; font-weight: 600; color: var(--text-2); background: var(--surface-alt); border: 1px solid var(--border); padding: 5px 11px; border-radius: 999px; }
.loc-ig { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 10px; height: 46px; border: 1.5px solid var(--border); border-radius: 12px; font-size: 14px; font-weight: 600; color: var(--text); }
.loc-ig:hover { background: var(--surface-warm); border-color: var(--primary-border); }
.loc-ig-mark { font-size: 15px; }

@media (max-width: 920px) {
  .loc-body { grid-template-columns: 1fr; gap: 36px; }
  .loc-side { position: static; }
}

/* stays nearby (mini cards) */
.loc-stays { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
.loc-stay { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.loc-stay img { width: 100%; aspect-ratio: 1.3/1; object-fit: cover; }
.loc-stay .b { padding: 12px 14px; }
.loc-stay .nm { font-size: 14px; font-weight: 700; }
.loc-stay .mt { font-size: 12px; color: var(--text-2); margin-top: 2px; }
.loc-stay .pr { font-size: 13px; margin-top: 6px; }
.loc-stay .pr b { font-weight: 700; }
@media (max-width: 760px) { .loc-stays { grid-template-columns: 1fr 1fr; } }

/* other locations strip */
.loc-others { background: var(--surface-alt); }
.loc-others-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 920px) { .loc-others-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .loc-others-grid { grid-template-columns: 1fr; } }

/* ===========================================================
   AUTH PAGE
   =========================================================== */
.auth-wrap { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-visual { position: relative; overflow: hidden; color: white; display: flex; flex-direction: column; justify-content: space-between; padding: 40px; }
.auth-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.auth-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(224,64,16,0.35) 0%, rgba(17,17,17,0.88) 100%); z-index: -1; }
.auth-visual .brand { color: white; }
.auth-visual .brand-mark { background: white; }
.auth-visual .brand-mark::after { background: var(--primary); }
.auth-visual-body h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; }
.auth-visual-body p { font-size: 16px; color: rgba(255,255,255,0.85); margin-top: 14px; max-width: 380px; line-height: 1.55; }
.auth-quote { font-size: 14px; color: rgba(255,255,255,0.8); border-left: 3px solid var(--primary); padding-left: 14px; }

.auth-panel { display: flex; align-items: center; justify-content: center; padding: 40px 24px; background: var(--surface); }
.auth-box { width: 100%; max-width: 420px; }
.auth-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.auth-h1 { font-size: 26px; font-weight: 800; letter-spacing: -0.03em; }

.auth-tabs { display: flex; background: var(--surface-alt); border: 1px solid var(--border); border-radius: 12px; padding: 4px; margin-bottom: 24px; }
.auth-tab { flex: 1; padding: 11px; border-radius: 9px; font-size: 14px; font-weight: 700; color: var(--text-2); text-align: center; transition: all 0.15s; }
.auth-tab.on { background: white; color: var(--text); box-shadow: var(--shadow-sm); }

.auth-intro { font-size: 14px; color: var(--text-2); margin-bottom: 20px; }
.auth-field { margin-bottom: 14px; }
.auth-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.auth-field input { width: 100%; height: 50px; padding: 0 14px; border: 1.5px solid var(--border); border-radius: 12px; font-size: 15px; font-family: inherit; color: var(--text); background: white; }
.auth-field input:focus { outline: none; border-color: var(--primary); }
/* Passwort anzeigen/verbergen */
.pw-wrap { position: relative; }
.pw-wrap input { padding-right: 48px; }
.pw-toggle { position: absolute; top: 50%; right: 6px; transform: translateY(-50%); width: 38px; height: 38px; border-radius: 9px; display: flex; align-items: center; justify-content: center; background: transparent; border: 0; cursor: pointer; opacity: .6; transition: opacity .15s, background .15s; }
.pw-toggle:hover { opacity: 1; background: var(--surface-alt); }
.pw-toggle .pw-eye { font-size: 17px; line-height: 1; }
.pw-toggle.on { opacity: 1; }

.auth-faith { background: var(--surface-warm); border: 1px solid var(--primary-border); border-radius: 14px; padding: 16px; margin: 8px 0 18px; }
.auth-faith-note { font-size: 12px; color: var(--text-2); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.auth-submit { width: 100%; height: 52px; background: var(--primary); color: white; border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; transition: background 0.15s; }
.auth-submit:hover { background: var(--primary-dark); }
.auth-or { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: var(--text-muted); font-size: 13px; }
.auth-or::before, .auth-or::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.auth-social { display: flex; flex-direction: column; gap: 10px; }
.auth-social-btn { height: 50px; border: 1.5px solid var(--border); border-radius: 12px; font-size: 14px; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 10px; background: white; }
.auth-social-btn:hover { background: var(--surface-alt); }
.auth-toggle { text-align: center; margin-top: 22px; font-size: 14px; color: var(--text-2); }
.auth-toggle a { color: var(--primary); font-weight: 700; }
.auth-forgot { text-align: right; font-size: 13px; margin-top: -6px; margin-bottom: 14px; }
.auth-forgot a { color: var(--primary); font-weight: 600; }
.auth-terms { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 16px; line-height: 1.5; }
.auth-success { background: var(--primary-soft); border: 1px solid var(--primary-border); color: var(--primary-dark); border-radius: 12px; padding: 14px; font-size: 14px; font-weight: 600; text-align: center; margin-bottom: 16px; }
.hidden { display: none !important; }

@media (max-width: 860px) {
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
}

/* ===========================================================
   SEARCH PAGE + STAY PAGE
   =========================================================== */
.search-wrap { max-width: 1280px; margin: 0 auto; padding: 28px 24px 80px; }
.search-head { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 14px; margin-bottom: 24px; }
.search-head h1 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; letter-spacing: -0.03em; margin: 0; flex: 1; }
.search-count { font-size: 14px; color: var(--text-2); }

.search-filters {
  display: grid; grid-template-columns: 2fr 1.4fr 1fr 1fr 1fr 1fr auto;
  gap: 10px; align-items: end;
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px;
  padding: 16px; margin-bottom: 28px; box-shadow: var(--shadow-sm);
}
.sf-field label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-2); margin-bottom: 6px; }
.sf-field input, .sf-field select {
  width: 100%; height: 46px; padding: 0 12px; border: 1.5px solid var(--border); border-radius: 11px;
  font-size: 14px; font-family: inherit; color: var(--text); background: white;
}
.sf-field input:focus, .sf-field select:focus { outline: none; border-color: var(--primary); }
.sf-btn { height: 46px; padding: 0 24px; background: var(--primary); color: white; border-radius: 999px; font-weight: 700; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; }
.sf-btn:hover { background: var(--primary-dark); }
@media (max-width: 1000px) { .search-filters { grid-template-columns: 1fr 1fr; } .sf-btn { grid-column: 1 / -1; } }
@media (max-width: 540px) { .search-filters { grid-template-columns: 1fr; } }

.stays-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1100px) { .stays-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .stays-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .stays-grid { grid-template-columns: 1fr; } }

.stay-card { display: block; }
.stay-card-img { position: relative; aspect-ratio: 1.05/1; border-radius: 16px; overflow: hidden; background: var(--surface-alt); }
.stay-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.stay-card:hover .stay-card-img img { transform: scale(1.04); }
.stay-card-loc-badge { position: absolute; top: 10px; left: 10px; background: rgba(255,255,255,0.95); color: var(--primary-dark); font-size: 10px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; padding: 5px 9px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.stay-card-new { position: absolute; top: 10px; right: 10px; background: var(--primary); color: white; font-size: 10px; font-weight: 700; padding: 5px 9px; border-radius: 999px; }
.stay-card-meta { padding: 10px 2px 0; }
.stay-card-row { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.stay-card-title { font-size: 15px; font-weight: 700; color: var(--text); overflow: hidden; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; }
.stay-card-rate { font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap; }
.stay-card-sub { font-size: 13px; color: var(--text-2); margin-top: 2px; }
.stay-card-host { font-size: 12px; color: var(--primary-dark); font-weight: 600; margin-top: 3px; }
.stay-card-price { margin-top: 6px; font-size: 14px; }
.stay-card-price b { font-weight: 800; }

.search-empty { text-align: center; padding: 70px 20px; color: var(--text-2); }
.search-empty .ic { font-size: 42px; }
.search-empty .t { font-weight: 700; font-size: 18px; color: var(--text); margin-top: 10px; }

/* Hero search bar (Startseite) */
.hero-search {
  display: flex; align-items: center; gap: 10px;
  background: white; border-radius: 999px; padding: 8px 8px 8px 22px;
  max-width: 560px; margin-top: 28px; box-shadow: var(--shadow-lg);
}
.hero-search input { flex: 1; border: 0; outline: none; font-size: 15px; font-family: inherit; color: var(--text); background: transparent; min-width: 0; }
.hero-search button { background: var(--primary); color: white; border-radius: 999px; padding: 13px 26px; font-weight: 700; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; cursor: pointer; }
.hero-search button:hover { background: var(--primary-dark); }

/* Stay detail page — Galerie: skaliert proportional zur Viewport-Breite */
.stay-hero-gallery {
  display: grid; gap: 6px;
  max-width: 1280px; margin: 14px auto 0; padding: 0 20px;
  /* Höhe = 38% der Viewport-Breite, min 260px, max 460px */
  height: clamp(260px, 38vw, 460px);
  overflow: hidden;
}
.stay-hero-gallery img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; background: var(--surface-warm); }
/* 1 Foto */
.stay-hero-gallery.n1 { grid-template-columns: 1fr; }
.stay-hero-gallery.n1 img { border-radius: 14px; }
/* 2 Fotos */
.stay-hero-gallery.n2 { grid-template-columns: 1fr 1fr; }
.stay-hero-gallery.n2 img:first-child { border-radius: 14px 6px 6px 14px; }
.stay-hero-gallery.n2 img:last-child  { border-radius: 6px 14px 14px 6px; }
/* 3 Fotos: groß links, 2 gestapelt rechts */
.stay-hero-gallery.n3 { grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; }
.stay-hero-gallery.n3 img:first-child { grid-row: 1/3; border-radius: 14px 0 0 14px; }
.stay-hero-gallery.n3 img:nth-child(2) { border-radius: 0 14px 0 0; }
.stay-hero-gallery.n3 img:nth-child(3) { border-radius: 0 0 14px 0; }
/* 4 Fotos: groß links, 3 rechts */
.stay-hero-gallery.n4 { grid-template-columns: 1.8fr 1fr 1fr; grid-template-rows: 1fr 1fr; }
.stay-hero-gallery.n4 img:first-child { grid-row: 1/3; border-radius: 14px 0 0 14px; }
.stay-hero-gallery.n4 img:nth-child(3) { border-radius: 0 14px 0 0; }
.stay-hero-gallery.n4 img:nth-child(4) { grid-column: 2/4; border-radius: 0 0 14px 0; }
/* 5 Fotos: klassisches Airbnb-Raster (links groß, rechts 2×2) */
.stay-hero-gallery.n5 { grid-template-columns: 1.8fr 1fr 1fr; grid-template-rows: 1fr 1fr; }
.stay-hero-gallery.n5 img:first-child { grid-row: 1/3; border-radius: 14px 0 0 14px; }
.stay-hero-gallery.n5 img:nth-child(2) { border-radius: 0 0 0 0; }
.stay-hero-gallery.n5 img:nth-child(3) { border-radius: 0 14px 0 0; }
.stay-hero-gallery.n5 img:nth-child(4) { border-radius: 0 0 0 0; }
.stay-hero-gallery.n5 img:nth-child(5) { border-radius: 0 0 14px 0; }
/* Mobil: wischbare Galerie */
@media (max-width: 800px) {
  .stay-hero-gallery, .stay-hero-gallery.n1, .stay-hero-gallery.n2, .stay-hero-gallery.n3, .stay-hero-gallery.n4, .stay-hero-gallery.n5 {
    display: flex; height: 280px; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; gap: 8px; padding: 0 16px; scrollbar-width: none;
  }
  .stay-hero-gallery::-webkit-scrollbar { display: none; }
  .stay-hero-gallery img, .stay-hero-gallery.n1 img, .stay-hero-gallery.n2 img, .stay-hero-gallery.n3 img, .stay-hero-gallery.n4 img, .stay-hero-gallery.n5 img {
    flex: 0 0 86%; width: 86%; height: 100%; scroll-snap-align: center; border-radius: 14px !important; grid-row: auto; grid-column: auto;
  }
  .stay-hero-gallery.n1 img { flex: 0 0 100%; width: 100%; }
}
/* Lightbox: Foto unbeschnitten im Vollbild (wichtig für Hochformat-Handyfotos) */
.sb-lightbox { position: fixed; inset: 0; z-index: 9500; background: rgba(20,17,12,.94); display: flex; align-items: center; justify-content: center; }
.sb-lightbox img { max-width: 94vw; max-height: 88vh; object-fit: contain; border-radius: 8px; }
.sb-lightbox .lb-close { position: absolute; top: 18px; right: 22px; background: rgba(255,255,255,.12); color: #fff; border: none; width: 42px; height: 42px; border-radius: 50%; font-size: 20px; cursor: pointer; }
.sb-lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); color: #fff; border: none; width: 46px; height: 46px; border-radius: 50%; font-size: 22px; cursor: pointer; }
.sb-lightbox .lb-prev { left: 16px; } .sb-lightbox .lb-next { right: 16px; }
.sb-lightbox .lb-count { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 13px; opacity: .8; }

.stay-body { max-width: 1280px; margin: 0 auto; padding: 32px 24px 90px; display: grid; grid-template-columns: 1.6fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 920px) { .stay-body { grid-template-columns: 1fr; gap: 32px; } }
.stay-title { font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; letter-spacing: -0.03em; margin: 0 0 6px; }
.stay-loc { font-size: 15px; color: var(--text-2); }
.stay-loc a { color: var(--primary-dark); font-weight: 600; }
.stay-specs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.stay-spec { font-size: 13px; font-weight: 600; color: var(--text-2); background: var(--surface-alt); border: 1px solid var(--border); padding: 6px 12px; border-radius: 999px; }

.book-card { position: sticky; top: 90px; background: white; border: 1px solid var(--border); border-radius: 20px; padding: 24px; box-shadow: var(--shadow-md); }
.book-price { font-size: 24px; font-weight: 800; }
.book-price span { font-size: 14px; font-weight: 500; color: var(--text-2); }
.book-dates { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden; margin-top: 16px; }
.book-dates > div { padding: 10px 12px; }
.book-dates > div:first-child { border-right: 1.5px solid var(--border); }
.book-dates label { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: var(--text-2); }
.book-dates input { width: 100%; border: 0; outline: none; font-size: 14px; font-family: inherit; color: var(--text); background: transparent; padding: 2px 0 0; }
.book-guests { border: 1.5px solid var(--border); border-radius: 12px; padding: 10px 12px; margin-top: 8px; }
.book-guests label { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: var(--text-2); }
.book-guests select { width: 100%; border: 0; outline: none; font-size: 14px; font-family: inherit; background: transparent; padding: 2px 0 0; }
.book-cta { width: 100%; height: 52px; margin-top: 14px; background: var(--primary); color: white; border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; }
.book-cta:hover { background: var(--primary-dark); }
.book-cta:disabled { opacity: 0.5; cursor: not-allowed; }
.book-break { margin-top: 16px; }
.book-break .r { display: flex; justify-content: space-between; font-size: 14px; padding: 4px 0; color: var(--text-2); }
.book-break .r b { color: var(--text); font-weight: 600; }
.book-break .r.total { border-top: 1px solid var(--border); margin-top: 8px; padding-top: 12px; }
.book-break .r.total span, .book-break .r.total b { font-weight: 800; color: var(--text); font-size: 15px; }
.book-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 10px; }
.book-err { font-size: 13px; color: var(--error); margin-top: 10px; text-align: center; }

/* ===== Buchungskalender (Range-Auswahl) ===== */
.book-cal-wrap { position: relative; margin-top: 16px; }
.book-cal-trigger {
  width: 100%; display: flex; align-items: center; gap: 8px; text-align: left;
  border: 1.5px solid var(--border); border-radius: 12px; padding: 10px 14px;
  background: #fff; cursor: pointer; font-family: inherit;
}
.book-cal-trigger:hover { border-color: var(--primary); }
.book-cal-trigger[aria-expanded="true"] { border-color: var(--primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 15%, transparent); }
.bct-col { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.bct-lbl { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: var(--text-2); }
.bct-val { font-size: 14px; color: var(--text); font-weight: 600; margin-top: 2px; }
.bct-arrow { color: var(--text-muted); font-size: 14px; flex-shrink: 0; }
.book-cal {
  position: absolute; z-index: 30; left: 0; right: 0; margin-top: 6px;
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  box-shadow: var(--shadow-lg, 0 12px 40px rgba(0,0,0,0.18)); padding: 14px;
}
.book-cal[hidden] { display: none; }
.bc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.bc-title { font-size: 14px; font-weight: 800; color: var(--text); }
.bc-nav {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border);
  background: #fff; cursor: pointer; font-size: 18px; line-height: 1; color: var(--text);
  display: inline-flex; align-items: center; justify-content: center;
}
.bc-nav:hover:not(:disabled) { background: var(--surface-alt); border-color: var(--primary); }
.bc-nav:disabled { opacity: 0.3; cursor: not-allowed; }
.bc-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.bc-dow { margin-bottom: 4px; }
.bc-dowcell { text-align: center; font-size: 11px; font-weight: 700; color: var(--text-muted); padding: 4px 0; }
.bc-cell {
  aspect-ratio: 1 / 1; border: 0; background: transparent; cursor: pointer;
  font-family: inherit; font-size: 13px; color: var(--text); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; padding: 0;
}
.bc-cell.empty { visibility: hidden; }
.bc-cell:hover:not(.disabled):not(.sel) { background: var(--surface-alt); }
.bc-cell.disabled { color: var(--text-muted); opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }
.bc-cell.range { background: color-mix(in srgb, var(--primary) 16%, transparent); border-radius: 0; }
.bc-cell.sel { background: var(--primary-dark, var(--primary)); color: #fff; font-weight: 800; }
.bc-cell.sel.start { border-radius: 8px 0 0 8px; }
.bc-cell.sel.end { border-radius: 0 8px 8px 0; }
.bc-cell.sel.start.end { border-radius: 8px; }

.stay-host-card { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; }
.stay-host-card img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; background: var(--surface-warm); }

/* ---------- animations ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.7s ease-out both; }
.fade-up.d1 { animation-delay: 0.1s; }
.fade-up.d2 { animation-delay: 0.2s; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }

/* Gastgeber kontaktieren (stay.html) */
.contact-form input, .contact-form textarea { border: 1px solid var(--border); border-radius: 10px; padding: 11px 13px; font-size: 14px; font-family: inherit; outline: none; width: 100%; background: #fff; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--primary); }
.contact-form textarea { margin-top: 10px; resize: vertical; }
.contact-form button { margin-top: 12px; }
