:root{
  /* Palette aus dem Logo abgeleitet */
  --sand: #d8bb9a;
  --sand-2:#cdae8c;
  --ink:#0e0604;
  --char:#2b1a12;
  --line: rgba(14,6,4,.12);
  --card: rgba(255,255,255,.72);
  --card-2: rgba(255,255,255,.55);
  --shadow: 0 18px 50px rgba(14,6,4,.22);
  --radius: 18px;

  --font-head: "Cormorant Garamond", ui-serif, Georgia, serif;
  --font-script: "Allura", cursive;
  --font-body: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;

  --max: 1120px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; background: linear-gradient(180deg, #f3e5d4, var(--sand)); color:var(--ink); }
body{ font-family: var(--font-body); }

a{ color:inherit; }
.container{ width:min(var(--max), 92%); margin:0 auto; }

.row{ display:flex; align-items:center; }
.row.between{ justify-content:space-between; }
.row.end{ justify-content:flex-end; }
.row.gap{ gap:12px; }

.topbar{
  position: sticky; top:0;
  background: rgba(243,229,212,.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  z-index:10;
}
.topbar .container{
  width: 100%;
  margin: 0;
  padding: 0 14px 0 0;
}
.brand{ display:flex; align-items:center; gap:12px; text-decoration:none; margin-left:0; }
.logo{
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(14,6,4,.18);
  box-shadow: 0 8px 24px rgba(14,6,4,.14);
}

.nav{ display:flex; align-items:center; gap:16px; }
.topbar .nav{ margin-left:auto; }
.nav a{ text-decoration:none; opacity:.9; }
.nav a:hover{ opacity:1; text-decoration:underline; }

.btn{
  background: var(--ink);
  color: #fff;
  border:1px solid rgba(255,255,255,.12);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .2px;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.btn:hover{ filter: brightness(1.02); transform: translateY(-1px); }
.btn:disabled{ opacity:.45; cursor:not-allowed; transform:none; }
.btn.small{ padding: 9px 12px; font-size: 14px; }
.btn.ghost{
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.link{ opacity:.8; }
.link:hover{ opacity:1; }

.hero{ padding: 54px 0 26px; }
.hero-grid{ display:grid; grid-template-columns: 1.1fr .9fr; gap: 18px; align-items: stretch; }
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .brand{ margin-left:0; }
  .logo{ width:64px; height:64px; }
}

.kicker{ margin:0 0 10px; opacity:.85; letter-spacing:.3px; }
h1{
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  margin: 0 0 12px;
}
.lead{
  font-size: 18px;
  line-height:1.55;
  margin:0 0 18px;
  max-width: 60ch;
}
.cta{ display:flex; gap:12px; flex-wrap:wrap; margin: 18px 0; }

.info-badges{ display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; margin-top: 18px; }
@media (max-width: 900px){ .info-badges{ grid-template-columns: 1fr; } }
.badge{
  border:1px solid var(--line);
  background: rgba(255,255,255,.55);
  padding: 12px;
  border-radius: var(--radius);
}
.badge-title{ font-weight: 800; margin-bottom: 6px; }
.badge-text{ opacity:.92; }

.hero-card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.55);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.hero-img{
  min-height: 320px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.55), rgba(205,174,140,.0) 60%),
    linear-gradient(135deg, rgba(14,6,4,.75), rgba(14,6,4,.0)),
    url("assets/placeholder-editorial.jpg");
  background-size: cover;
  background-position: center;
  position:relative;
}
.hero-img-overlay{
  position:absolute;
  left:18px; bottom:18px;
  background: rgba(14,6,4,.55);
  color:#fff;
  padding: 14px 14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.16);
}
.hero-img-title{
  font-family: var(--font-script);
  font-size: 34px;
  line-height:1;
}
.hero-img-sub{ opacity:.92; margin-top:6px; }
.hero-card-footer{
  padding: 12px 14px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}

.section{ padding: 44px 0; border-top: 1px solid var(--line); }
.section.alt{ background: rgba(255,255,255,.22); }
.section-head{ margin-bottom: 16px; }
h2{
  font-family: var(--font-head);
  font-size: 34px;
  margin:0 0 6px;
}
h3{
  font-family: var(--font-head);
  font-size: 26px;
  margin:0 0 10px;
}
.muted{ opacity:.82; }
.small{ font-size: 14px; opacity:.84; }
.fineprint{ font-size: 13px; opacity:.8; margin-top: 14px; }

.filters{ display:flex; gap:10px; flex-wrap:wrap; margin: 18px 0; }
.chip{
  border:1px solid var(--line);
  background: rgba(255,255,255,.45);
  padding: 10px 12px;
  border-radius: 999px;
  cursor:pointer;
  font-weight: 700;
}
.chip.active{ background: rgba(14,6,4,.08); }

.grid{ display:grid; grid-template-columns: repeat( auto-fit, minmax(240px, 1fr) ); gap: 12px; }
.card{
  border:1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 12px 32px rgba(14,6,4,.14);
}
.card:hover{ transform: translateY(-1px); }
.price{ font-weight: 900; }
.tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing:.2px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.5);
  margin-top: 10px;
}

.section-actions{ display:flex; gap:12px; margin-top: 16px; flex-wrap:wrap; }

.two-col{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 900px){ .two-col{ grid-template-columns: 1fr; } }

.list{ padding-left: 18px; }
.kv{ display:grid; grid-template-columns: 120px 1fr; gap:10px; align-items:baseline; }
.kv .k{ font-weight: 900; opacity:.9; }

.footer{ padding: 26px 0; border-top: 1px solid var(--line); background: rgba(255,255,255,.18); }
.footer-grid{ display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap; }
.footer-brand{ font-family: var(--font-script); font-size: 28px; }
.footer-links{ display:flex; gap:12px; flex-wrap:wrap; }
.footer-links a{ text-decoration:none; opacity:.85; }
.footer-links a:hover{ opacity:1; text-decoration:underline; }

/* Booking Wizard */
.wizard{ border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; background: rgba(255,255,255,.35); box-shadow: var(--shadow); }
.steps{ display:flex; gap:8px; padding: 12px; border-bottom: 1px solid var(--line); flex-wrap:wrap; }
.step{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.45);
  font-weight: 900;
  opacity:.78;
}
.step.active{ opacity:1; background: rgba(14,6,4,.08); }
.panel{ padding: 16px; }
.hidden{ display:none; }

.calendar{ display:grid; grid-template-columns: repeat(7, 1fr); gap: 8px; margin-top: 12px; }
.day{
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.55);
  cursor:pointer;
  text-align:center;
  font-weight:900;
}
.day.disabled{ opacity:.35; cursor:not-allowed; }
.day.selected{ outline: 3px solid rgba(14,6,4,.22); }
.day .sub{ font-size: 12px; opacity:.7; font-weight: 700; margin-top:6px; }

.slots{ display:flex; flex-wrap:wrap; gap: 8px; margin-top: 12px; }
.slot{
  padding: 10px 12px;
  border:1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.6);
  cursor:pointer;
  font-weight:900;
}
.slot.selected{ outline: 3px solid rgba(14,6,4,.22); }
.slot.full{ opacity:.35; cursor:not-allowed; }

.form{ display:grid; gap: 12px; margin-top: 12px; }
label{ display:grid; gap:6px; font-weight: 900; }
input, textarea, select{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(14,6,4,.18);
  background: rgba(255,255,255,.7);
  font: inherit;
}
textarea{ min-height: 90px; resize: vertical; }

.checkbox{ display:flex; gap:10px; align-items:flex-start; font-weight:700; }
.checkbox input{ margin-top: 4px; }

.summary{ display:grid; gap: 6px; }
.summary .row{ justify-content: space-between; }
.divider{ height:1px; background: var(--line); margin: 14px 0; }
.template{
  background: rgba(14,6,4,.06);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  overflow:auto;
  font-size: 12px;
}

.table{ display:grid; gap: 10px; }
.table .item{
  border:1px solid var(--line);
  background: rgba(255,255,255,.6);
  border-radius: 14px;
  padding: 12px;
}
.pill{
  display:inline-flex;
  padding: 6px 10px;
  border:1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  margin-right:8px;
}
.pill.requested{ background: rgba(255, 206, 87, .25); }
.pill.confirmed{ background: rgba(85, 255, 170, .25); }
.pill.canceled{ background: rgba(255, 85, 85, .18); }

.hintbox{
  margin-top: 16px;
  border:1px dashed rgba(14,6,4,.25);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255,255,255,.35);
}
.hintbox-title{ font-weight: 900; margin-bottom: 6px; }
.narrow{ width:min(640px, 92%); margin: 0 auto; }
.legal{ width:min(900px, 92%); margin:0 auto; }

/* Profile menu */
.profile-menu{ position:relative; }
.profile-trigger{
  background: rgba(255,255,255,.48);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 9px 12px;
}
.profile-trigger:hover{ text-decoration:none; }
.profile-dropdown{
  position:absolute;
  right:0;
  top: calc(100% + 10px);
  min-width: 260px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(14,6,4,.18);
  padding: 10px;
  display:grid;
  gap:6px;
  z-index: 30;
}
.profile-dropdown.hidden{ display:none; }
.profile-meta{
  display:grid;
  gap:4px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.6);
}
.profile-email{
  font-weight: 800;
  overflow-wrap:anywhere;
}
.profile-role{ font-size: 12px; opacity:.75; }
.profile-dropdown a,
.profile-dropdown button{
  width:100%;
  justify-content:flex-start;
}
