/* ==========================================================================
   Die Fleischkäseguerillas – Stylesheet
   Bewusst ohne externe Font-Requests (DSGVO-freundlich): reine System-Fonts.
   ========================================================================== */

:root {
  /* Farben – angelehnt an das Instagram-Erscheinungsbild (Feuer/Ember, Gold, Wood, Olive) */
  --bg: #0b0b0c;
  --bg-soft: #141311;
  --card: #1c1b18;
  --card-border: #2c2a25;

  --ember-1: #ff8a1e;
  --ember-2: #ff4213;
  --ember-3: #9c0f0f;

  --gold: #ffc93f;
  --gold-soft: #ffe08a;

  --olive: #5c6a34;
  --olive-dark: #3a4420;

  --cream: #f5efe0;
  --text: #f2ede1;
  --muted: #bdb6a4;
  --muted-2: #8c8574;

  --wood: #6f4a2c;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.45);

  --font-display: "Arial Black", "Arial Bold", "Haettenschweiler", Impact, "Franklin Gothic Bold", sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #1a1a1a;
  padding: 12px 18px;
  z-index: 999;
  border-radius: 0 0 8px 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.08;
  margin: 0 0 0.5em;
  color: var(--cream);
  overflow-wrap: break-word;
  word-break: break-word;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4.4vw, 2.9rem); }
h3 { font-size: 1.25rem; }

.text-gold { color: var(--gold); }

p { margin: 0 0 1em; color: var(--text); }

.kicker {
  display: inline-block;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--ember-1);
  margin-bottom: 10px;
}

.section-head { max-width: 760px; margin-bottom: 40px; }
.section-lead { color: var(--muted); font-size: 1.05rem; }

.section { padding: 88px 0; }
.section-dark { background: var(--bg-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--ember-1), var(--ember-2) 60%, var(--ember-3));
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 66, 19, 0.35);
}
.btn-primary:hover { box-shadow: 0 14px 30px rgba(255, 66, 19, 0.48); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 239, 224, 0.35);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 12, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-inner .brand { min-width: 0; flex: 1 1 auto; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ember-1);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.brand-name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--cream);
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-sub { font-size: 0.72rem; color: var(--muted-2); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.primary-nav ul {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav a:not(.btn) {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.15s ease;
}
.primary-nav a:not(.btn):hover { color: var(--gold); }
.nav-cta { padding: 10px 20px; font-size: 0.85rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--cream);
  margin: 0 auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 90px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(60% 60% at 78% 15%, rgba(255, 138, 30, 0.28), transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(92, 106, 52, 0.22), transparent 65%),
    linear-gradient(180deg, #121110 0%, #0b0b0c 65%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero-inner > * { min-width: 0; }
.eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.hero-lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 52ch;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 26px 0 34px; }

.hero-facts {
  list-style: none;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  padding: 18px 0 0;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--muted);
  font-size: 0.88rem;
}
.hero-facts strong { color: var(--cream); }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
}
.hero-photo {
  width: 78%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 4px solid var(--bg-soft);
  object-fit: cover;
  aspect-ratio: 3 / 4;
}
.hero-sticker {
  position: absolute;
  bottom: -6%;
  left: -4%;
  width: 42%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 4px solid var(--bg);
  box-shadow: 0 14px 30px rgba(0,0,0,0.55);
  transform: rotate(-8deg);
  object-fit: cover;
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: linear-gradient(90deg, var(--olive-dark), var(--olive));
  padding: 18px 0;
}
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 34px;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.trust-icon { font-size: 1.1rem; }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.team-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.team-card-img { aspect-ratio: 1 / 1; overflow: hidden; background: var(--bg); }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 20px 22px 24px; }
.team-role {
  color: var(--ember-1);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.team-card-body p:last-child { color: var(--muted); margin-bottom: 0; font-size: 0.92rem; }

/* ---------- Menu ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.menu-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}
.menu-card:hover { transform: translateY(-4px); }
.menu-card-img { aspect-ratio: 3 / 4; overflow: hidden; background: var(--bg); }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; }
.menu-card-img--contain { aspect-ratio: 1 / 1; }
.menu-card-img--contain img { object-fit: contain; }
.menu-card-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.menu-card-body p { color: var(--muted); font-size: 0.92rem; }
.menu-price {
  margin-top: auto;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.menu-note {
  margin-top: 34px;
  color: var(--muted-2);
  font-size: 0.9rem;
  text-align: center;
}
.menu-note a { color: var(--ember-1); font-weight: 700; }

/* ---------- Foodtruck ---------- */
.foodtruck-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.foodtruck-inner > * { min-width: 0; }
.foodtruck-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 4px solid var(--bg-soft);
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* ---------- Instagram grid ---------- */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.insta-item {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  background: var(--bg);
}
.insta-item img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.3s ease, filter 0.3s ease; }
.insta-item:hover img { transform: scale(1.06); filter: brightness(0.8); }
.insta-cta { text-align: center; margin-top: 30px; }

/* ---------- Standort ---------- */
.standort-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.standort-inner > * { min-width: 0; }
.standort-facts {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin: 26px 0 30px;
}
.standort-facts dt {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--ember-1);
  margin-bottom: 6px;
}
.standort-facts dd { margin: 0; color: var(--muted); }
.standort-map {
  position: relative;
  height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 4px solid var(--bg-soft);
}
.standort-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.05);
}
.map-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.map-consent {
  position: relative;
  z-index: 1;
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 32px;
  background: rgba(11, 11, 12, 0.78);
  backdrop-filter: blur(1.5px);
}
.map-consent p { color: var(--muted); font-size: 0.9rem; max-width: 40ch; margin: 0; }
.map-consent-note { font-size: 0.78rem !important; }
.map-consent-note a { color: var(--ember-1); font-weight: 700; }

/* ---------- Kontakt ---------- */
.kontakt-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
}
.kontakt-inner > * { min-width: 0; }
.kontakt-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}
.kontakt-list a { color: var(--ember-1); font-weight: 700; }

.kontakt-form {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row { margin-bottom: 18px; }
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--cream);
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--ember-1);
  box-shadow: 0 0 0 3px rgba(255, 66, 19, 0.2);
}
.form-row textarea { resize: vertical; min-height: 120px; }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
  cursor: pointer;
}
.checkbox-row input { margin-top: 3px; }
.checkbox-row a { color: var(--ember-1); font-weight: 700; }

.form-note { font-size: 0.78rem; color: var(--muted-2); margin: 6px 0 0; }
.form-status { font-weight: 700; margin-top: 14px; min-height: 1.2em; }
.form-status.is-success { color: #7fd88f; }
.form-status.is-error { color: #ff8080; }

/* ---------- Legal pages ---------- */
.legal-wrap { max-width: 800px; }
.legal-h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 28px;
}
.legal-page h2 {
  font-family: var(--font-body);
  text-transform: none;
  font-size: 1.2rem;
  color: var(--gold-soft);
  margin-top: 2em;
}
.legal-page p { color: var(--muted); }
.legal-page a { color: var(--ember-1); font-weight: 700; }
.legal-callout {
  background: rgba(255, 201, 63, 0.1);
  border: 1px solid rgba(255, 201, 63, 0.35);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 36px;
  font-size: 0.9rem;
  color: var(--cream);
}
.legal-callout strong { color: var(--gold); }
.legal-page code {
  background: rgba(255,255,255,0.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85em;
}
.legal-updated { font-size: 0.82rem; color: var(--muted-2); margin-top: 3em; }

/* ---------- Footer ---------- */
.site-footer {
  background: #08080a;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 44px 0 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.footer-name { font-family: var(--font-display); text-transform: uppercase; font-size: 0.95rem; margin: 0; }
.footer-sub { font-size: 0.78rem; color: var(--muted-2); margin: 2px 0 0; }
.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.85rem; color: var(--muted); }
.footer-nav a:hover { color: var(--gold); }
.footer-insta { font-weight: 800; color: var(--ember-1); font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px 0;
  font-size: 0.78rem;
  color: var(--muted-2);
  text-align: center;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero-inner,
  .foodtruck-inner,
  .standort-inner,
  .kontakt-inner {
    grid-template-columns: 1fr;
  }
  .foodtruck-visual, .hero-visual { order: -1; }
  .team-grid, .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }

  /* Nav bereits ab 980px auf Mobile-Menü umstellen: zwischen 760–980px
     reicht der Platz sonst nicht für alle Nav-Punkte + Button nebeneinander. */
  .primary-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg-soft);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-direction: column;
    align-items: stretch;
    padding: 18px 24px 26px;
    gap: 18px;
    transform: translateY(-140%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; }
  .primary-nav ul { flex-direction: column; gap: 14px; }
  .nav-toggle { display: flex; }
  .nav-cta { align-self: flex-start; }
}

@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .team-grid, .menu-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row-split { grid-template-columns: 1fr; }
  .hero-sticker { display: none; }
  .hero-photo { width: 100%; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 18px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .kontakt-form { padding: 22px; }
}

@media (max-width: 360px) {
  .header-inner { gap: 10px; }
  .brand { gap: 8px; }
  .brand-badge { width: 42px; height: 42px; }
  .brand-name { font-size: 0.82rem; max-width: 150px; }
  .brand-sub { display: none; }
  .nav-toggle { width: 36px; height: 36px; }
}
