/* Der Mixbutler — site stylesheet
   Black / gold theme, ported from the Claude Design prototype
   (project/Mixbutler Website.dc.html) into plain, framework-free CSS. */

:root {
  --bg: #08070A;
  --bg-alt: #0C0B10;
  --text: #EDE7DA;
  --text-muted: #B8AF9E;
  --text-dim: #A79E8D;
  --text-dimmer: #8F8778;
  --text-faint: #6F6A5F;
  --cream: #E4DCCB;
  --cream-2: #EBD9A6;
  --cream-3: #E9D9AE;

  --gold: #C9A24B;
  --gold-light: #D8B45C;
  --gold-lighter: #F0D68C;

  --border-gold-faint: rgba(201, 162, 75, 0.14);
  --border-gold-soft: rgba(201, 162, 75, 0.2);
  --border-gold: rgba(201, 162, 75, 0.28);
  --border-gold-strong: rgba(201, 162, 75, 0.45);

  --serif: 'Cormorant Garamond', serif;
  --sans: 'Jost', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--gold-lighter); }

input, select, textarea, button { font-family: inherit; }

::selection { background: #C9A24B; color: var(--bg); }

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

.page {
  min-height: 100vh;
  background: var(--bg);
  overflow-x: hidden;
}

.wrap { max-width: 1280px; margin: 0 auto; }
.wrap--narrow { max-width: 1080px; margin: 0 auto; }

.eyebrow {
  margin: 0 0 16px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.section {
  padding: clamp(70px, 10vh, 130px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--border-gold-faint);
}
.section--alt { background: var(--bg-alt); }

@keyframes mbFade {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(8, 7, 10, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-gold-soft);
}

.site-header__brand { display: flex; align-items: center; gap: 12px; }
.site-header__logo { height: 46px; width: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.site-nav a { color: inherit; }

.site-nav__cta {
  padding: 11px 22px;
  border: 1px solid var(--gold);
  color: var(--cream-2);
  letter-spacing: 0.16em;
  background: rgba(201, 162, 75, 0.08);
  transition: background .2s ease, color .2s ease;
}
.site-nav__cta:hover { background: var(--gold); color: var(--bg); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex: none;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 760px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(8, 7, 10, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-gold-soft);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .site-nav.is-open { max-height: 420px; }
  .site-nav > a:not(.site-nav__cta) {
    padding: 18px 24px;
    border-top: 1px solid var(--border-gold-faint);
    font-size: 14px;
  }
  .site-nav__cta {
    margin: 18px 24px 24px;
    text-align: center;
  }
}

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

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
  padding: clamp(60px, 9vh, 130px) clamp(20px, 5vw, 72px);
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  animation: mbFade .8s ease both;
}

.hero__kicker {
  margin: 0 0 22px;
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 6.6vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.hero__title em { font-style: italic; color: var(--gold-light); }

.hero__lead {
  margin: 26px 0 0;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 300;
  color: #C8C0B1;
  max-width: 42ch;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.btn {
  padding: 17px 38px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  display: inline-block;
}
.btn--primary {
  background: linear-gradient(180deg, #DCBA68, #B98F35);
  color: #0B0906;
}
.btn--primary:hover { background: linear-gradient(180deg, var(--gold-lighter), var(--gold)); color: #0B0906; }

.btn--ghost {
  border: 1px solid var(--border-gold-strong);
  color: var(--cream);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-lighter); }

.hero__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--border-gold-soft);
  font-size: 14px;
  color: var(--text-dim);
}
.hero__price strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--gold-light);
}

.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 400px;
  max-height: 74vh;
  justify-self: stretch;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-alt);
}
.hero__media img { width: 100%; height: 100%; object-fit: contain; }

/* ---------- Feature strip ---------- */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: clamp(28px, 4vw, 64px);
  max-width: 1280px;
  margin: 0 auto;
}
.feature p:first-child {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 34px;
  color: var(--gold-light);
}
.feature p:last-child {
  margin: 0;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  text-wrap: pretty;
}
.feature--tags {
  padding-left: clamp(0px, 2vw, 32px);
  border-left: 1px solid var(--border-gold-soft);
}
.feature--tags .eyebrow { margin: 0 0 14px; }
.feature--tags p:last-child { line-height: 1.8; color: var(--cream); }

/* ---------- Ablauf (two column with steps) ---------- */

.split {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.h2 {
  margin: 0 0 34px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.12;
}

.steps { display: grid; gap: 26px; }
.step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  align-items: start;
}
.step__num {
  font-family: var(--serif);
  font-size: 34px;
  color: rgba(216, 180, 92, 0.55);
  line-height: 1;
}
.step__title { margin: 0 0 6px; font-size: 18px; font-weight: 500; letter-spacing: 0.02em; }
.step__desc { margin: 0; font-weight: 300; font-size: 16px; line-height: 1.6; color: var(--text-dim); }

.split__footnote {
  margin: 34px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--border-gold-soft);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

.media-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 380px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-alt);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Ablauf 4-step grid ---------- */

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 1px;
  background: var(--border-gold-soft);
}
.process-card { padding: 34px 28px; background: var(--bg-alt); }
.process-card__num { margin: 0 0 16px; font-family: var(--serif); font-size: 20px; color: var(--gold-light); }
.process-card__title { margin: 0 0 8px; font-size: 18px; font-weight: 500; }
.process-card__desc { margin: 0; font-weight: 300; font-size: 16px; line-height: 1.6; color: var(--text-dim); }

/* ---------- Karte (menu) ---------- */

.menu-head { text-align: center; margin-bottom: 60px; }
.menu-head h2 { margin: 0; font-family: var(--serif); font-weight: 500; font-size: clamp(38px, 4.4vw, 64px); }

.menu-divider {
  margin: 0 0 30px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--gold-light);
}
.menu-divider--sub {
  margin: -18px 0 34px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-dimmer);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 30px 46px;
}
.menu-item p:first-child { margin: 0 0 5px; font-size: 17px; font-weight: 500; letter-spacing: 0.02em; }
.menu-item p:last-child { margin: 0; font-weight: 300; font-size: 14px; line-height: 1.55; color: var(--text-dimmer); }
.menu-item--special p:first-child { color: var(--gold-light); }

.mocktails {
  margin-top: 70px;
  padding-top: 60px;
  border-top: 1px solid var(--border-gold-soft);
}

/* ---------- Preise (pricing) ---------- */

.price-lead { margin: 0 0 24px; }
.price-copy { margin: 0; font-weight: 300; font-size: 17px; line-height: 1.7; color: var(--text-dim); max-width: 44ch; text-wrap: pretty; }

.price-card { display: grid; gap: 0; border: 1px solid var(--border-gold); }
.price-card__hero { padding: 32px 34px; background: rgba(201, 162, 75, 0.06); }
.price-card__hero .eyebrow { margin: 0 0 8px; font-size: 11px; letter-spacing: 0.24em; }
.price-card__amount { margin: 0 0 8px; font-family: var(--serif); font-size: 54px; font-weight: 600; line-height: 1; color: var(--cream-3); }
.price-card__hero p:last-child { margin: 0; font-weight: 300; font-size: 15px; color: var(--text-dim); }

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 24px 34px;
  border-top: 1px solid rgba(201, 162, 75, 0.22);
}
.price-row__title { margin: 0 0 4px; font-size: 17px; font-weight: 500; }
.price-row__desc { margin: 0; font-weight: 300; font-size: 14px; color: var(--text-dimmer); }
.price-row__amount { margin: 0; white-space: nowrap; font-family: var(--serif); font-size: 26px; color: var(--gold-light); }

/* ---------- Gallery ---------- */

.gallery-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
}
.gallery-head h2 { margin: 0; font-family: var(--serif); font-weight: 500; font-size: clamp(32px, 3.4vw, 48px); }
.gallery-head span { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dimmer); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 20px;
}
.gallery-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-alt);
}
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; }
.gallery-tile--wide {
  aspect-ratio: 21 / 9;
  max-height: 480px;
  grid-column: 1 / -1;
}

/* ---------- Anfrage (request form) ---------- */

.request-head { text-align: center; margin-bottom: 54px; }
.request-head h2 { margin: 0 0 16px; font-family: var(--serif); font-weight: 500; font-size: clamp(38px, 4.4vw, 64px); }
.request-head p { margin: 0 auto; max-width: 52ch; font-weight: 300; font-size: 17px; line-height: 1.7; color: var(--text-dim); text-wrap: pretty; }

.request-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 26px 30px;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--border-gold);
  background: var(--bg-alt);
}

.field { display: grid; gap: 9px; }
.field--full { grid-column: 1 / -1; }
.field span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.field input,
.field select,
.field textarea {
  padding: 14px 16px;
  min-height: 48px;
  background: var(--bg);
  border: 1px solid var(--border-gold);
  color: var(--text);
  font-size: 16px;
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--gold); }
.field input[type="date"] { color-scheme: dark; }
.field textarea { line-height: 1.6; resize: vertical; }

.field-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  grid-column: 1 / -1;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dim);
  cursor: pointer;
}
.field-check input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--gold); flex: none; }

/* honeypot field — hidden from real visitors, catches bots */
.field-hp { position: absolute; left: -9999px; top: -9999px; }

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  padding-top: 6px;
}
.form-actions p { margin: 0; font-weight: 300; font-size: 14px; color: var(--text-dimmer); }

.form-error {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px 18px;
  border: 1px solid rgba(201, 90, 75, 0.5);
  background: rgba(201, 90, 75, 0.08);
  color: #E8B9AE;
  font-size: 14px;
  font-weight: 300;
}

.request-confirm {
  padding: clamp(40px, 6vw, 70px);
  border: 1px solid var(--border-gold-strong);
  background: rgba(201, 162, 75, 0.06);
  text-align: center;
}
.request-confirm h3 { margin: 0 0 14px; font-family: var(--serif); font-size: clamp(30px, 3vw, 42px); color: var(--cream-3); font-weight: 500; }
.request-confirm p { margin: 0 0 30px; font-weight: 300; font-size: 17px; line-height: 1.7; color: var(--text-muted); }
.request-confirm__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

[hidden] { display: none !important; }

/* ---------- Footer ---------- */

.site-footer {
  padding: clamp(60px, 8vh, 100px) clamp(20px, 5vw, 72px) 44px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-gold-soft);
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 44px;
  align-items: start;
}
.footer-logo { height: 84px; width: auto; display: block; margin-bottom: 18px; }
.footer-tagline { margin: 0; font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--gold-light); }
.footer-col p.eyebrow { margin: 0 0 14px; letter-spacing: 0.24em; }
.footer-links { display: grid; gap: 9px; font-weight: 300; font-size: 16px; color: var(--text-muted); }
.footer-links a { color: inherit; }
.footer-area { margin: 0; font-weight: 300; font-size: 16px; line-height: 1.7; color: var(--text-muted); }

.footer-bottom {
  max-width: 1280px;
  margin: 54px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--border-gold-faint);
  font-size: 13px;
  color: var(--text-faint);
}
.footer-bottom a { color: var(--text-faint); text-decoration: underline; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Legal pages (Impressum / Datenschutz) ---------- */

.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(70px, 10vh, 120px) clamp(20px, 5vw, 72px) clamp(60px, 8vh, 100px);
}
.legal h1 { margin: 0 0 12px; font-family: var(--serif); font-weight: 500; font-size: clamp(34px, 4vw, 54px); }
.legal .eyebrow { margin: 0 0 22px; }
.legal h2 {
  margin: 44px 0 14px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  color: var(--gold-light);
}
.legal p, .legal li { font-weight: 300; font-size: 16px; line-height: 1.7; color: var(--text-muted); }
.legal ul { padding-left: 22px; }
.legal .placeholder {
  color: var(--gold-light);
  background: rgba(201, 162, 75, 0.12);
  padding: 1px 6px;
  border-radius: 3px;
  font-style: normal;
}

/* ---------- Mobile refinements ---------- */

@media (max-width: 760px) {
  /* full-width, edge-to-edge buttons stack better with fat-finger targets */
  .hero__actions,
  .request-confirm__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn,
  .request-confirm__actions .btn { text-align: center; }

  /* shorter hero photo so the fold isn't all image on small phones */
  .hero__media { min-height: 300px; aspect-ratio: 4 / 3; }

  /* readable menu type without the two-column optical gap */
  .menu-grid { gap: 22px; }

  /* roomier form controls + bigger checkbox for touch */
  .field input, .field select, .field textarea { font-size: 16px; }
  .field-check input { width: 22px; height: 22px; }

  /* form action row reads better stacked on narrow screens */
  .form-actions { flex-direction: column; align-items: stretch; text-align: center; }
  .form-actions .btn { width: 100%; }

  /* tighter section rhythm once vh-based clamps stop helping */
  .section { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 400px) {
  .hero__title { font-size: 38px; }
  .price-card__amount { font-size: 44px; }
}
