/* ==========================================================================
   Die Möglichmacherei – Stylesheet
   Manufaktur-/Hof-/Atelier-Look: warmes Lehm, Sand, gebrochenes Weiß,
   Holz, Anthrazit, dezentes Grün. Viel Weißraum, weiche Bewegungen.
   ========================================================================== */

:root {
  /* Farbwelt */
  --paper:      #FAF6EF;   /* gebrochenes Weiß */
  --paper-deep: #F3EDE2;
  --sand:       #EAE0CE;
  --clay:       #A9603F;   /* warmes Lehm */
  --clay-soft:  #C98B6B;
  --wood:       #7C6248;   /* Holz */
  --ink:        #2F2B26;   /* warmes Anthrazit */
  --ink-soft:   #5E574D;
  --green:      #5C6B57;   /* dezentes Grün */
  --green-deep: #46523F;
  --thread:     #C9A227;   /* der goldene Werkfaden – sparsam einsetzen */

  /* Typografie */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Karla", "Segoe UI", system-ui, sans-serif;

  /* Geometrie */
  --radius: 16px;
  --radius-soft: 10px;
  --shadow-soft: 0 10px 30px -12px rgba(47, 43, 38, .18);
  --shadow-card: 0 6px 24px -10px rgba(47, 43, 38, .16), 0 1px 3px rgba(47, 43, 38, .06);
  --wrap: 1120px;
}

/* --- Grundlayout -------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }
a { color: var(--green-deep); }

img { max-width: 100%; display: block; }

::selection { background: var(--sand); }

/* Die „Naht“ – handgesetzte Stichlinie als Signatur der Marke */
.naht {
  display: block;
  width: 86px;
  height: 8px;
  margin: 14px 0 22px;
  border: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='86' height='8' viewBox='0 0 86 8'%3E%3Cpath d='M1 5 C 12 2, 20 7, 31 4 S 52 2, 62 5 S 78 6, 85 3' stroke='%23A9603F' stroke-width='2' fill='none' stroke-linecap='round' stroke-dasharray='7 6'/%3E%3C/svg%3E") no-repeat center / contain;
}
.naht.center { margin-left: auto; margin-right: auto; }

.eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--wood);
  margin-bottom: .8em;
}

/* --- Kopfbereich ---------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(124, 98, 72, .15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.wordmark { text-decoration: none; line-height: 1.15; }
.wordmark-main {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}
.wordmark-sub {
  display: block;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--wood);
}

.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: .95rem;
  transition: color .2s;
}
.site-nav a:hover { color: var(--clay); }

.nav-toggle { display: none; }

/* --- Buttons -------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 14px 30px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--thread); outline-offset: 2px; }

.btn-primary { background: var(--green); color: var(--paper); }
.btn-primary:hover { background: var(--green-deep); color: var(--paper); }

.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--paper); }

.btn-clay { background: var(--clay); color: var(--paper); }
.btn-clay:hover { background: #8f4f33; color: var(--paper); }

.btn-ghost { background: transparent; color: var(--ink-soft); border-color: rgba(94,87,77,.4); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }

.btn-small { padding: 9px 20px; font-size: .9rem; }
.btn-danger { background: #9c3f2a; color: var(--paper); }
.btn-danger:hover { background: #7e3221; color: var(--paper); }

/* --- Hero ------------------------------------------------------------------ */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 85% -10%, rgba(201,162,39,.10), transparent 60%),
    linear-gradient(165deg, var(--paper) 0%, var(--paper-deep) 55%, var(--sand) 100%);
}
.hero::after { /* feines Korn, wie Papier in der Werkstatt */
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.45 0 0 0 0 0.38 0 0 0 0 0.28 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 56px;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 96px;
}

.hero-kicker {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.2em;
}

.hero h1 { margin-bottom: .35em; }
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--clay);
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 34em;
  margin-bottom: 2em;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Bildfläche: nutzt assets/img/hero.jpg, fällt sonst weich auf die Illustration zurück */
.hero-visual {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  background:
    url("../img/hero.jpg") center / cover no-repeat,
    linear-gradient(200deg, #d9c9a8 0%, #b59a72 45%, #8a7152 100%);
  overflow: hidden;
}
.hero-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* --- Abschnitte -------------------------------------------------------------- */

.section { padding: 96px 0; }
.section-deep { background: var(--paper-deep); }
.section-head { max-width: 640px; }
.section-head.center { margin: 0 auto; text-align: center; }
.lede { font-size: 1.15rem; color: var(--ink-soft); }

/* Karten „Was hier möglich wird“ */
.possible-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-top: 48px;
}
.possible-card {
  background: var(--paper);
  border: 1px solid rgba(124, 98, 72, .14);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}
.possible-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.possible-card .icon {
  width: 46px; height: 46px;
  margin-bottom: 16px;
  color: var(--green);
}
.possible-card h3 { margin-bottom: .35em; }
.possible-card p { color: var(--ink-soft); font-size: .98rem; margin: 0; }

/* Angebots-Doppel (Workshops / Fotografie) */
.offer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
}
.offer + .offer { margin-top: 96px; }
.offer.flip .offer-visual { order: 2; }

.offer-visual {
  position: relative;
  min-height: 380px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.offer-visual.v-workshop {
  background:
    url("../img/workshop.jpg") center / cover no-repeat,
    linear-gradient(160deg, #c8a87e, #9a7b54 60%, #6f5839);
}
.offer-visual.v-foto {
  background:
    url("../img/fotografie.jpg") center / cover no-repeat,
    linear-gradient(200deg, #aab39b, #79836c 55%, #4f5847);
}
.offer-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.offer-text .btn { margin-top: 10px; }

/* CTA-Band */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 64px 56px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,.25), transparent 70%);
}
.cta-band h2 { color: var(--paper); margin: 0 0 .2em; }
.cta-band p { color: rgba(250,246,239,.75); margin: 0; }

/* --- Formulare ---------------------------------------------------------------- */

.form-card {
  background: var(--paper);
  border: 1px solid rgba(124, 98, 72, .14);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 36px;
}

.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-weight: 700;
  font-size: .92rem;
  margin-bottom: 7px;
}
.field .hint-small { font-weight: 400; color: var(--ink-soft); font-size: .85rem; }

input[type="text"], input[type="email"], input[type="tel"],
input[type="date"], input[type="time"], input[type="password"],
select, textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid rgba(124, 98, 72, .3);
  border-radius: var(--radius-soft);
  padding: 13px 15px;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(92, 107, 87, .14);
}
textarea { min-height: 120px; resize: vertical; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* Auswahl Workshop / Fotografie als warme Kacheln */
.type-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.type-choice label { display: block; margin: 0; cursor: pointer; }
.type-choice input { position: absolute; opacity: 0; pointer-events: none; }
.type-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 72px;
  border: 2px solid rgba(124, 98, 72, .3);
  border-radius: var(--radius-soft);
  padding: 16px 12px;
  background: #fff;
  transition: border-color .2s, background-color .2s, box-shadow .2s, transform .2s;
}
.type-name { font-weight: 700; font-size: 1.02rem; }
.type-desc { font-size: .82rem; color: var(--wood); }
.type-choice label:hover .type-card { border-color: var(--green); }
/* Ausgewählter Zustand: grüne Kachel mit Häkchen */
.type-choice input:checked + .type-card {
  border-color: var(--green-deep);
  background: var(--green);
  color: var(--paper);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}
.type-choice input:checked + .type-card .type-desc { color: rgba(250, 246, 239, .85); }
.type-choice input:checked + .type-card::after {
  content: "✓";
  position: absolute;
  top: 7px;
  right: 10px;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1;
}
.type-choice input:focus-visible + .type-card { outline: 3px solid var(--thread); outline-offset: 2px; }

/* Schnellwahl-Zeiträume */
.time-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 10px; }
.time-chips button {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 500;
  border: 1px solid rgba(124, 98, 72, .35);
  background: var(--paper);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 7px 15px;
  cursor: pointer;
  transition: all .18s;
}
.time-chips button:hover { border-color: var(--clay); color: var(--clay); }

.privacy-note {
  font-size: .88rem;
  color: var(--ink-soft);
  background: var(--paper-deep);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius-soft) var(--radius-soft) 0;
  padding: 13px 16px;
  margin-bottom: 24px;
}

/* Honeypot gegen Spam – für Menschen unsichtbar */
.hp-field { position: absolute !important; left: -6000px !important; height: 1px; overflow: hidden; }

.error-list {
  background: #f7e8e2;
  border: 1px solid rgba(169, 96, 63, .4);
  border-radius: var(--radius-soft);
  color: #7e3221;
  padding: 16px 20px;
  margin-bottom: 24px;
}
.error-list ul { margin: 0; padding-left: 20px; }

.notice {
  border-radius: var(--radius-soft);
  padding: 15px 18px;
  margin-bottom: 24px;
  font-size: .95rem;
}
.notice-warn { background: #f6efd8; border: 1px solid rgba(201, 162, 39, .5); color: #6e5710; }
.notice-ok   { background: #e9efe6; border: 1px solid rgba(92, 107, 87, .4); color: var(--green-deep); }
.notice-err  { background: #f7e8e2; border: 1px solid rgba(169, 96, 63, .4); color: #7e3221; }

/* --- Kalender ------------------------------------------------------------------- */

.calendar-card {
  background: var(--paper);
  border: 1px solid rgba(124, 98, 72, .14);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 26px;
}
.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.calendar-head .month-label {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}
.calendar-nav {
  border: 1.5px solid rgba(124, 98, 72, .3);
  background: var(--paper);
  border-radius: 50%;
  width: 38px; height: 38px;
  font-size: 1.05rem;
  cursor: pointer;
  color: var(--ink);
  transition: all .18s;
}
.calendar-nav:hover { border-color: var(--clay); color: var(--clay); }
.calendar-nav:disabled { opacity: .35; cursor: default; }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.calendar-grid .dow {
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wood);
  padding: 6px 0;
}
.day {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 1.5px solid transparent;
  border-radius: var(--radius-soft);
  background: var(--paper-deep);
  font-size: .95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s;
  font-family: var(--font-body);
  color: var(--ink);
}
.day:hover:not(.is-disabled):not(.is-booked) { border-color: var(--green); transform: translateY(-2px); }
.day.is-empty { background: transparent; cursor: default; }
.day.is-disabled { opacity: .35; cursor: default; background: transparent; }
.day.is-today { border-color: rgba(124, 98, 72, .4); }
.day.is-selected { background: var(--green); color: var(--paper); border-color: var(--green); box-shadow: var(--shadow-soft); }
.day.is-booked {
  background: repeating-linear-gradient(-45deg, var(--sand), var(--sand) 5px, #e0d2b8 5px, #e0d2b8 10px);
  color: var(--wood);
  cursor: not-allowed;
}
.day.is-requested::after {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--thread);
}
.day.is-selected.is-requested::after { background: var(--paper); }

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  font-size: .85rem;
  color: var(--ink-soft);
}
.calendar-legend span { display: inline-flex; align-items: center; gap: 7px; }
.legend-dot { width: 13px; height: 13px; border-radius: 4px; display: inline-block; }
.legend-free { background: var(--paper-deep); border: 1px solid rgba(124,98,72,.3); }
.legend-requested { background: var(--thread); border-radius: 50%; width: 9px; height: 9px; }
.legend-booked { background: repeating-linear-gradient(-45deg, var(--sand), var(--sand) 4px, #e0d2b8 4px, #e0d2b8 8px); border: 1px solid rgba(124,98,72,.3); }

/* Buchungsseite: Kalender + Formular nebeneinander */
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
}

/* --- Status & Detailansichten ----------------------------------------------------- */

.status-pill {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: 999px;
  padding: 5px 14px;
}
.status-pending          { background: #f6efd8; color: #6e5710; }
.status-confirmed        { background: #e9efe6; color: var(--green-deep); }
.status-declined         { background: #f7e8e2; color: #7e3221; }
.status-cancelled        { background: #eceae6; color: var(--ink-soft); }
.status-change_requested { background: #f0e6f2; color: #5d3a66; }

.detail-list { list-style: none; margin: 0 0 24px; padding: 0; }
.detail-list li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px dashed rgba(124, 98, 72, .25);
}
.detail-list li:last-child { border-bottom: 0; }
.detail-list .dt { font-weight: 700; font-size: .9rem; color: var(--wood); }

/* Bestätigungsseite */
.success-hero { text-align: center; max-width: 620px; margin: 0 auto; }
.success-hero .seal {
  width: 86px; height: 86px;
  margin: 0 auto 26px;
  color: var(--green);
}
.link-box {
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--paper-deep);
  border: 1px dashed rgba(124, 98, 72, .4);
  border-radius: var(--radius-soft);
  padding: 13px 16px;
  margin: 22px 0;
}
.link-box input {
  flex: 1;
  border: 0;
  background: transparent;
  font-size: .85rem;
  color: var(--ink-soft);
  padding: 0;
}
.link-box input:focus { box-shadow: none; }

/* --- Fußbereich ---------------------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: var(--paper);
  margin-top: 96px;
  padding: 56px 0 40px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}
.footer-wordmark { font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; }
.footer-tag { color: var(--thread); font-size: .95rem; margin-top: 6px; }
.footer-meta { text-align: right; font-size: .92rem; color: rgba(250,246,239,.7); }
.footer-meta a { color: var(--paper); text-decoration: none; border-bottom: 1px solid rgba(250,246,239,.35); }
.footer-meta a:hover { border-color: var(--thread); }
.footer-small { font-size: .8rem; color: rgba(250,246,239,.45); }

/* --- Sanfte Einblendungen -------------------------------------------------------------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .day, .possible-card { transition: none; }
}

/* --- Adminbereich ----------------------------------------------------------------------- */

body.admin { background: var(--paper-deep); }

.admin-bar {
  background: var(--ink);
  color: var(--paper);
  padding: 14px 0;
}
.admin-bar .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.admin-bar .wordmark-main { color: var(--paper); font-size: 1.05rem; }
.admin-bar nav { display: flex; gap: 20px; align-items: center; }
.admin-bar nav a { color: rgba(250,246,239,.8); text-decoration: none; font-size: .92rem; }
.admin-bar nav a:hover { color: var(--thread); }

.admin-main { padding: 44px 0 80px; }

.filter-tabs { display: flex; flex-wrap: wrap; gap: 9px; margin: 22px 0 26px; }
.filter-tabs a {
  text-decoration: none;
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid rgba(124,98,72,.25);
  border-radius: 999px;
  padding: 8px 17px;
  transition: all .15s;
}
.filter-tabs a:hover { border-color: var(--ink); color: var(--ink); }
.filter-tabs a.active { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.filter-tabs .count { opacity: .65; font-weight: 500; margin-left: 4px; }

.admin-table-wrap {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow-x: auto;
}
.admin-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.admin-table th {
  text-align: left;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--wood);
  padding: 16px 18px 12px;
  border-bottom: 2px solid var(--paper-deep);
}
.admin-table td { padding: 15px 18px; border-bottom: 1px solid var(--paper-deep); font-size: .95rem; vertical-align: middle; }
.admin-table tr:hover td { background: rgba(234, 224, 206, .35); }
.admin-table a.row-link { font-weight: 700; color: var(--ink); text-decoration: none; }
.admin-table a.row-link:hover { color: var(--clay); }

.admin-actions { display: flex; flex-wrap: wrap; gap: 11px; margin: 26px 0; }
.admin-actions form { display: inline; }

.admin-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 28px; align-items: start; }

.sync-box {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 24px 26px;
  font-size: .93rem;
}
.sync-box h3 { font-size: 1.05rem; }
.sync-ok { color: var(--green-deep); font-weight: 700; }
.sync-error { color: #7e3221; font-weight: 700; }

.login-card {
  max-width: 420px;
  margin: 90px auto;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 42px;
}

code.inline {
  background: var(--paper-deep);
  border-radius: 6px;
  padding: 2px 7px;
  font-size: .85em;
  word-break: break-all;
}

/* --- Responsiv --------------------------------------------------------------------------- */

@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 56px; padding-bottom: 64px; }
  .hero-visual { min-height: 300px; }
  .offer { grid-template-columns: 1fr; gap: 32px; }
  .offer.flip .offer-visual { order: 0; }
  .booking-layout { grid-template-columns: 1fr; }
  .admin-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .cta-band { padding: 44px 32px; }
}

@media (max-width: 720px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--paper);
    border-bottom: 1px solid rgba(124,98,72,.2);
    padding: 18px 24px 24px;
    gap: 18px;
    box-shadow: var(--shadow-soft);
  }
  .site-nav.open { display: flex; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
  }
  .nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-meta { text-align: left; }
  .detail-list li { grid-template-columns: 1fr; gap: 2px; }
  .form-card { padding: 26px 20px; }
}
