/* ============ Reset & base ============ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { overflow-x: clip; }
body {
  overflow-x: clip;
  font-family: 'Geist', system-ui, -apple-system, "Segoe UI", sans-serif;
  font-feature-settings: "ss01", "ss02";
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* ============ Tokens ============ */
:root {
  --bg: oklch(0.985 0.005 85);
  --bg-2: oklch(0.97 0.008 85);
  --surface: #ffffff;
  --text: oklch(0.18 0.02 255);
  --text-2: oklch(0.42 0.02 255);
  --text-3: oklch(0.60 0.02 255);
  --border: oklch(0.91 0.01 255);
  --border-strong: oklch(0.82 0.015 255);
  --primary: oklch(0.42 0.18 255);
  --primary-deep: oklch(0.30 0.16 255);
  --primary-soft: oklch(0.95 0.04 255);
  --accent: oklch(0.72 0.16 55);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 1px rgba(15, 23, 42, 0.03);
  --shadow: 0 4px 14px -2px rgba(15, 23, 42, 0.08), 0 2px 6px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 18px 40px -12px rgba(15, 23, 42, 0.14), 0 8px 16px -8px rgba(15, 23, 42, 0.08);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --pad: 120px;
  --font-head: 'Manrope', system-ui, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, "SF Mono", monospace;
}

/* ============ Layout primitives ============ */
.container {
  width: min(1240px, 100% - 48px);
  margin-inline: auto;
}
section { padding-block: var(--pad); }
.section-head { margin-bottom: 56px; max-width: 760px; }
.section-head.row { display: flex; gap: 32px; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; max-width: none; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 6px 10px;
  background: var(--primary-soft);
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 14px;
  text-wrap: balance;
}
.section-lead {
  font-size: 17px;
  color: var(--text-2);
  max-width: 60ch;
  margin: 0;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: 160ms ease;
  white-space: nowrap;
}
.btn-lg { padding: 15px 24px; font-size: 15px; }
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px -2px color-mix(in oklch, var(--primary) 50%, transparent);
}
.btn-primary:hover { background: var(--primary-deep); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { background: var(--bg-2); }

/* ============ Logo ============ */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-img {
  height: 48px;
  width: auto;
  max-width: 168px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}
.logo-name,
.logo-sub {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.footer-logo-img {
  height: 56px;
  max-width: 200px;
}
.logo-name { font-family: var(--font-head); font-weight: 700; font-size: 16px; letter-spacing: -0.01em; }
.logo-sub { font-family: var(--font-mono); font-size: 10.5px; color: var(--text-3); margin-top: 2px; letter-spacing: 0.02em; }

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklch, var(--bg) 78%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid color-mix(in oklch, var(--border) 70%, transparent);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
  padding-top: 12px;
  padding-bottom: 12px;
  min-height: 56px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  flex-shrink: 1;
  min-width: 0;
}
.nav-links a {
  white-space: nowrap;
}
.nav-links button {
  padding: 8px 14px;
  font-size: 14px;
  color: var(--text-2);
  border-radius: 8px;
  transition: 140ms;
}
.nav-links button:hover { color: var(--text); background: var(--bg-2); }
.nav-order-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  border-radius: 8px;
  border: 1px solid color-mix(in oklch, var(--primary) 30%, transparent);
  background: var(--primary-soft);
  transition: 140ms;
  display: inline-flex; align-items: center;
  white-space: nowrap;
}
.nav-order-link:hover { background: color-mix(in oklch, var(--primary) 14%, transparent); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-phone {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 13px; color: var(--text-2);
  padding: 8px 12px;
  border-radius: 8px;
  transition: 140ms;
}
.nav-phone:hover { color: var(--primary); }

/* Mobile menu toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 140ms, background 140ms;
}
.nav-toggle:hover { border-color: var(--border-strong); background: var(--bg-2); }
.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 200ms, opacity 200ms;
}
/* Desktop links: .nav-links--desktop in .nav-inner */
.nav-panel-actions { display: none; }
.nav-backdrop { display: none; }
.nav-panel-head { display: none; }

/* Mobile drawer (panel lives outside .nav — avoids backdrop-filter clip) */
aside.nav-panel { display: none; }

/* WooCommerce darf Logo nicht auf volle Breite ziehen */
.woocommerce .nav .logo-img,
.mj-product-single .nav .logo-img,
.nav .logo-img {
  width: auto !important;
  max-width: 168px !important;
  height: 48px !important;
  max-height: 48px !important;
}

body.nav-open { overflow: hidden; }
body.nav-open .nav-toggle .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle .nav-toggle-bar:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ Hero ============ */
.hero {
  padding: 60px 0 100px;
}
.hero-grid {
  width: min(1240px, 100% - 48px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-2);
  padding: 7px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 28px;
}
.eyebrow .dot {
  width: 7px; height: 7px;
  background: oklch(0.65 0.18 145);
  border-radius: 50%;
  box-shadow: 0 0 0 3px color-mix(in oklch, oklch(0.65 0.18 145) 25%, transparent);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4.0vw, 52px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 24px;
  text-wrap: balance;
  color: var(--text);
}
.hero-title em { color: var(--primary); font-style: normal; font-weight: 700; letter-spacing: -0.03em; }
.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 52ch;
  margin: 0 0 36px;
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 12px; margin-bottom: 56px; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  max-width: 520px;
}
.hero-stats > div { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.stat-lbl { font-family: var(--font-mono); font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; }

/* hero right cards */
.hero-right {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.hero-card-main {
  grid-column: 1 / 7;
  padding: 14px;
}
.hero-card-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  position: absolute;
  margin: 14px;
  background: var(--surface);
  border-radius: 999px;
  border: 1px solid var(--border);
  z-index: 2;
}
.hero-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: calc(var(--radius-lg) - 8px);
  background: var(--bg-2);
  overflow: hidden;
}
.hero-card-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center -100px;
}
.img-stripe {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg,
    color-mix(in oklch, var(--primary) 14%, transparent) 0 14px,
    transparent 14px 28px);
}
.img-caption {
  position: relative;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  background: var(--surface);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
}
.hero-card-mini { grid-column: 1 / 5; }
.hero-card-stamp {
  grid-column: 5 / 7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  background: var(--primary-deep);
  color: white;
  border-color: transparent;
}
.stamp-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  line-height: 1.3;
}
.stamp-row svg { flex-shrink: 0; opacity: 0.85; }
.contact-mini { display: flex; flex-direction: column; gap: 14px; }
.contact-mini-row { display: flex; align-items: center; gap: 12px; }
.contact-mini-row svg { color: var(--primary); flex-shrink: 0; }
.cm-label { font-family: var(--font-mono); font-size: 10.5px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; }
.cm-value { font-size: 14px; font-weight: 500; color: var(--text); }

/* ============ Contact strip ============ */
.contact-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.channel-card {
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: 200ms;
  cursor: pointer;
}
.channel-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.channel-top { display: flex; align-items: center; justify-content: space-between; }
.channel-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid; place-items: center;
}
.channel-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 4px 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
}
.channel-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  margin: 4px 0 0;
  letter-spacing: -0.01em;
}
.channel-card p { margin: 0; font-size: 14px; color: var(--text-2); }
.channel-action {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  border-top: 1px dashed var(--border);
}

/* ============ Catalog ============ */
.catalog-search {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  min-width: 280px;
  transition: 140ms;
}
.catalog-search:focus-within { border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-soft); }
.catalog-search input {
  border: 0; outline: 0; background: transparent;
  flex: 1; font-size: 14px;
}
.catalog-search svg { color: var(--text-3); }
.cat-tabs {
  display: flex;
  gap: 6px;
  padding: 6px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: 140ms;
}
.cat-tab:hover { color: var(--text); }
.cat-tab.is-active {
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.cat-tab-count {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-3);
  background: var(--bg);
  padding: 2px 7px;
  border-radius: 999px;
}
.cat-tab.is-active .cat-tab-count { background: var(--primary-soft); color: var(--primary); }

.catalog-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px;
  font-size: 14px;
  color: var(--text-2);
}
.catalog-loading-spinner {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: mj-spin 0.7s linear infinite;
}
@keyframes mj-spin {
  to { transform: rotate(360deg); }
}
.product-image-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: var(--bg-2);
}

.product-grid--preview {
  grid-template-rows: repeat(2, auto);
}
.catalog-more-hint {
  margin: 20px 0 0;
  padding: 14px 18px;
  background: var(--primary-soft);
  border: 1px solid color-mix(in oklch, var(--primary) 22%, var(--border));
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-2);
  text-align: center;
}
.catalog-more-hint .link-arrow {
  font-weight: 600;
  color: var(--primary);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  transition: opacity 200ms;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: 200ms;
}
.product-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--border-strong); }
.product-image--preview {
  padding: 16px;
}
.mj-preview-img {
  max-height: 120px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.product-image {
  position: relative;
  aspect-ratio: 5 / 4;
  background:
    radial-gradient(circle at 50% 60%, var(--bg) 0%, var(--bg-2) 75%);
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--border);
}
.product-tag {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--text-2);
}

/* SVG-like bottle placeholder */
.bottle {
  display: flex; flex-direction: column; align-items: center;
  filter: drop-shadow(0 8px 14px rgba(15, 23, 42, 0.08));
}
.bottle-cap {
  width: 26px; height: 14px;
  background: linear-gradient(180deg, color-mix(in oklch, var(--primary) 70%, black), var(--primary));
  border-radius: 4px 4px 2px 2px;
  margin-bottom: -2px;
}
.bottle-body {
  width: 78px; height: 110px;
  background: linear-gradient(180deg,
    color-mix(in oklch, var(--surface) 92%, var(--primary)),
    var(--surface));
  border-radius: 14px 14px 10px 10px;
  border: 1px solid color-mix(in oklch, var(--primary) 12%, var(--border));
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 0 8px;
}
.bottle-body::before {
  content: "";
  position: absolute;
  top: 18px; bottom: 18px; left: 8px;
  width: 5px;
  background: color-mix(in oklch, var(--primary) 60%, white);
  border-radius: 999px;
}
.bottle-label {
  font-family: var(--font-mono);
  font-size: 9px;
  text-align: center;
  color: var(--primary-deep);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
  font-weight: 600;
  background: color-mix(in oklch, var(--primary) 14%, white);
  border-radius: 4px;
  padding: 4px 6px;
  max-width: 56px;
}

.product-body { padding: 18px 18px 14px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.product-body h4 {
  font-family: var(--font-head);
  font-size: 16px;
  margin: 0;
  letter-spacing: -0.01em;
  font-weight: 600;
  text-wrap: balance;
}
.product-spec { font-size: 13px; color: var(--text-3); margin: 0; }
.product-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto;
  padding-top: 12px;
  font-size: 12.5px;
}
.stock { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); color: var(--text-2); font-size: 11.5px; }
.stock-dot { width: 7px; height: 7px; border-radius: 50%; background: oklch(0.7 0.16 145); }
.stock-mid .stock-dot { background: oklch(0.78 0.15 75); }
.price { font-family: var(--font-mono); color: var(--text); font-weight: 500; }
.product-action {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  transition: 140ms;
}
.product-action:hover { background: var(--primary-soft); }

.empty { text-align: center; padding: 60px; color: var(--text-3); font-style: italic; }
.catalog-footer {
  margin-top: 48px;
  padding: 24px 32px;
  background: var(--surface);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 14.5px;
  color: var(--text-2);
}
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary);
  font-weight: 600;
}
.link-arrow:hover { gap: 10px; }

/* ============ Region ============ */
.region { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.region-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.region-lead { font-size: 17px; color: var(--text-2); margin: 0 0 36px; max-width: 50ch; }
.region-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 20px; }
.region-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.region-points li svg {
  margin-top: 2px;
  color: var(--primary);
}
.region-points strong {
  display: block;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}
.region-points span { font-size: 14px; color: var(--text-2); }

.map-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.map-bg {
  position: relative;
  aspect-ratio: 5 / 4;
  background:
    linear-gradient(180deg, color-mix(in oklch, var(--primary-soft) 50%, var(--surface)), var(--surface));
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--primary);
}
.map-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-pin {
  position: absolute;
  left: var(--pin-x, 50%);
  top: var(--pin-y, 50%);
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  text-decoration: none;
  pointer-events: auto;
  transition: transform 160ms;
}
.map-pin:hover { transform: translate(-50%, -50%) scale(1.05); }
.pin-dot {
  width: 9px; height: 9px;
  background: var(--text-2);
  border-radius: 50%;
  border: 2px solid var(--surface);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.pin-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2px 7px;
  border-radius: 999px;
  color: var(--text);
  white-space: nowrap;
}
.map-pin.is-hq .pin-dot {
  width: 14px; height: 14px;
  background: var(--primary);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--primary) 22%, transparent), 0 1px 3px rgba(0,0,0,0.2);
}
.map-pin.is-hq .pin-label {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  font-weight: 600;
}
.map-legend {
  display: flex; gap: 24px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-2);
}
.legend-row { display: flex; align-items: center; gap: 8px; }
.lg-dot { width: 8px; height: 8px; background: var(--text-2); border-radius: 50%; }
.lg-dot.lg-hq { background: var(--primary); width: 10px; height: 10px; }

/* ============ Process ============ */
.process--photo {
  position: relative;
  padding: var(--pad) 0;
  background-image: url('https://mj-vertrieb.com/wp-content/uploads/2025/02/DSC09789-scaled.jpg');
  background-size: cover;
  background-position: center;
}
.process--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.82);
  pointer-events: none;
}
.process--photo .container {
  position: relative;
  z-index: 1;
}
.process--photo .section-head h2,
.process--photo .process-step {
  color: #fff;
}
.process--photo .process-step {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}
.process--photo .step-num {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-soft);
}
.process--photo .process-step p {
  color: rgba(255, 255, 255, 0.7);
}
.process--photo .step-arrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.4);
}
.process-grid {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding: 28px 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--primary);
  background: var(--primary-soft);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.process-step h4 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.process-step p { margin: 0; font-size: 14.5px; color: var(--text-2); }
.step-arrow {
  position: absolute;
  right: -22px; top: 36px;
  width: 28px; height: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--text-3);
  z-index: 1;
}

/* ============ Testimonials / Google Reviews ============ */
.testimonials { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.reviews-aggregate {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 8px;
}
.reviews-aggregate-score {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.reviews-aggregate-stars .t-stars { gap: 1px; }
.reviews-aggregate-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
}
.reviews-google-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.reviews-slider {
  position: relative;
  display: block;
}
.reviews-slider-viewport {
  overflow: hidden;
  min-width: 0;
  width: 100%;
}
.reviews-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.reviews-slide {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
}
.reviews-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text-2);
  cursor: pointer;
  transition: 160ms;
  box-shadow: var(--shadow-sm);
}
.reviews-nav--prev {
  left: 0;
  transform: translate(calc(-100% - 14px), -50%);
}
.reviews-nav--next {
  right: 0;
  transform: translate(calc(100% + 14px), -50%);
}
.reviews-nav:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
}
.reviews-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.testimonials .container {
  overflow: visible;
}
.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--border);
  cursor: pointer;
  transition: 160ms;
}
.reviews-dot.is-active {
  background: var(--primary);
  transform: scale(1.15);
}
.t-star--off { opacity: 0.28; }
.t-star--off svg { fill: none; }
.t-star--on svg { fill: currentColor; }
.t-avatar--img {
  object-fit: cover;
  background: var(--bg-2);
}
.t-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.t-stars { display: flex; gap: 2px; color: var(--accent, var(--primary)); }
.t-stars svg { fill: currentColor; stroke: currentColor; }
.t-card blockquote {
  margin: 0;
  font-family: var(--font-head);
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.t-card figcaption {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.02em;
}
.t-name { font-weight: 600; font-size: 14px; }
.t-role { font-size: 12.5px; color: var(--text-3); font-family: var(--font-mono); }

/* ============ FAQ ============ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: 140ms;
}
.faq-list details[open] { border-color: var(--border-strong); }
.faq-list summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg);
  display: grid; place-items: center;
  color: var(--text-2);
}
.faq-answer {
  padding: 0 24px 22px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
  max-width: 70ch;
}

/* ============ Contact ============ */
.contact { background: var(--text); color: oklch(0.95 0 0); border-top: 1px solid var(--text); }
.contact .section-eyebrow { background: color-mix(in oklch, var(--primary) 30%, var(--text)); color: oklch(0.95 0.04 255); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: flex-start;
}
.contact-left h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 14px;
  color: white;
  text-wrap: balance;
}
.contact-left p { color: oklch(0.78 0.01 255); font-size: 16px; margin: 0 0 36px; }
.contact-channels { display: flex; flex-direction: column; gap: 10px; }
.cc-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: color-mix(in oklch, white 6%, var(--text));
  border: 1px solid color-mix(in oklch, white 10%, var(--text));
  border-radius: var(--radius);
  color: white;
  transition: 160ms;
}
.cc-row:hover { background: color-mix(in oklch, white 10%, var(--text)); transform: translateX(2px); }
.cc-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--primary);
  display: grid; place-items: center;
}
.cc-label { font-size: 13px; color: oklch(0.7 0.02 255); font-family: var(--font-mono); }
.cc-value { font-size: 15px; font-weight: 500; margin-top: 1px; }

.contact-form {
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  font-size: 14.5px;
  color: var(--text);
  transition: 140ms;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-soft);
}
.topic-row { display: flex; gap: 6px; flex-wrap: wrap; }
.topic-pill {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  background: var(--bg);
  color: var(--text-2);
  transition: 140ms;
}
.topic-pill.is-active { background: var(--primary); border-color: var(--primary); color: white; }
.form-submit {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  margin-top: 8px;
}
.dsgvo {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 8px;
  font-size: 12.5px !important;
  color: var(--text-3) !important;
}
.dsgvo input { width: 16px; height: 16px; accent-color: var(--primary); padding: 0; }
.sent {
  text-align: center;
  padding: 30px 10px;
}
.sent-check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: oklch(0.92 0.1 145);
  color: oklch(0.4 0.18 145);
  display: grid; place-items: center;
  margin: 0 auto 16px;
}
.sent h3 { font-family: var(--font-head); font-size: 24px; margin: 0 0 8px; }
.sent p { color: var(--text-2); margin: 0 0 20px; }

/* ============ Footer ============ */
.footer {
  background: var(--surface);
  color: var(--text-2);
  border-top: 1px solid var(--border);
  padding-top: 72px;
  padding-bottom: 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  font-size: 14px;
  margin-top: 16px;
  max-width: 36ch;
  line-height: 1.55;
  color: var(--text-2);
}
.footer .logo-name { color: var(--text); }
.footer .logo-sub { color: var(--text-3); }
.footer h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer ul a {
  font-size: 14px;
  color: var(--text-2);
  transition: 140ms;
}
.footer ul a:hover { color: var(--primary); }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 24px;
  font-size: 12.5px;
  font-family: var(--font-mono);
  color: var(--text-3);
  flex-wrap: wrap; gap: 12px;
}

/* ============ FAB ============ */
.fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: oklch(0.55 0.16 145);
  color: white;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 28px -8px color-mix(in oklch, oklch(0.55 0.16 145) 80%, transparent);
  transition: 200ms;
}
.fab:hover { transform: translateY(-2px) scale(1.02); }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  :root { --pad: 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { max-width: 540px; }
  .region-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid--preview .product-card:nth-child(n+5) { display: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .step-arrow { display: none; }
  .reviews-slide { flex: 0 0 100%; }
  .reviews-nav { display: none; }
  .channel-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .nav-links--desktop { display: none !important; }
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 110;
  }
  .nav-cta {
    display: flex;
    gap: 8px;
    position: relative;
    z-index: 110;
  }
  .nav-inner .logo { flex: 1; min-width: 0; }
  .nav-cta .btn { display: none; }
  .nav-cta .nav-phone-text { display: none; }
  .nav-cta .nav-phone { padding: 10px; border-radius: var(--radius-sm); }
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }
  body.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  aside.nav-panel {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 105;
    width: min(340px, 92vw);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex: none;
    gap: 0;
    background: var(--surface);
    border-left: 1px solid var(--border);
    box-shadow: -12px 0 40px rgba(15, 23, 42, 0.18);
    padding: 0;
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
    visibility: hidden;
  }
  body.nav-open .nav-panel {
    transform: translateX(0);
    visibility: visible;
  }
  aside.nav-panel .nav-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: max(16px, env(safe-area-inset-top)) 16px 16px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
  }
  .nav-panel-brand {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text);
  }
  .nav-panel-close {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-2);
    font-size: 24px;
    line-height: 1;
    color: var(--text-2);
    transition: 140ms;
  }
  .nav-panel-close:hover {
    color: var(--text);
    border-color: var(--border-strong);
  }
  .nav-panel .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    flex-wrap: nowrap;
    min-width: 0;
    padding: 16px;
    flex: 1;
  }
  .nav-panel .nav-links a {
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    white-space: normal;
  }
  .nav-panel .nav-order-link {
    justify-content: center;
    padding: 14px 16px;
    font-size: 16px;
  }
  .nav-panel-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding: 20px 16px 0;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
  }
  .nav-panel-actions .nav-phone {
    justify-content: center;
    padding: 12px;
    font-size: 15px;
    background: var(--bg-2);
    border-radius: var(--radius-sm);
  }
  .nav-panel-actions .nav-phone span { display: inline; }
  .nav-panel-actions .btn { width: 100%; justify-content: center; }
}
@media (max-width: 720px) {
  :root { --pad: 60px; }
  .nav-inner { gap: 10px; }
  .logo-sub { display: none; }
  .logo-img { height: 42px; max-width: 152px; }
  .nav .logo-img {
    height: 42px !important;
    max-height: 42px !important;
    max-width: 152px !important;
  }
  .footer-logo-img { height: 50px; }
  .container { width: calc(100% - 32px); }
  .section-head.row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .mj-contact-hero { padding: 40px 0 32px; }
  .mj-contact-hero h1 { font-size: 32px; }
  .mj-contact-channels { padding: 28px 0; }
  .mj-contact-main { padding: 40px 0 56px; }
  .mj-loc-hero { padding: 40px 0 32px; }
  .mj-loc-content { padding: 40px 0; }
  .hero { padding-top: 28px; padding-bottom: 60px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 18px; }
  .stat-num { font-size: 22px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-image { aspect-ratio: 1 / 1; }
  .bottle-body { width: 60px; height: 86px; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section-head h2 { font-size: 26px; }
  .hero-title { font-size: 42px; }
  .hero-right { display: none; }
  .fab span { display: none; }
}

/* ============ Photo Strip ============ */
.photo-strip { overflow: hidden; }
.photo-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.4fr;
  height: 280px;
}
.photo-strip-item { position: relative; overflow: hidden; }
.photo-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
  filter: brightness(0.9);
}
.photo-strip-item:hover img { transform: scale(1.04); filter: brightness(1); }
.photo-strip-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(15,23,42,0.7) 0%, transparent 100%);
  color: white;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
@media (max-width: 720px) {
  .photo-strip-inner { grid-template-columns: 1fr 1fr; height: 180px; }
  .photo-strip-item:nth-child(n+3) { display: none; }
}

/* ============ FAQ Layout ============ */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.faq-left .section-head { max-width: none; }
.faq-list { max-width: none; margin: 0; }
.faq-photo {
  position: sticky;
  top: 80px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.faq-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.faq-photo-caption {
  padding: 20px;
  background: var(--primary-deep);
  color: white;
}
.faq-photo-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.faq-photo-caption p {
  margin: 0;
  font-size: 13.5px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq .faq-photo { display: none; }
}

/* ===================================================================
   Kontaktseite  (page-kontakt.php)
   =================================================================== */

/* ── Hero ── */
.mj-contact-hero {
  padding: 56px 0 48px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.mj-contact-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 12px 0 16px;
}
.mj-contact-hero-lead {
  font-size: 18px;
  color: var(--text-2);
  max-width: 600px;
  line-height: 1.6;
  margin: 0;
}

/* ── Channel cards ── */
.mj-contact-channels {
  padding: 40px 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.mj-contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
.mj-channel-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: border-color 140ms, transform 140ms, box-shadow 140ms;
  position: relative;
}
.mj-channel-card:hover {
  border-color: color-mix(in oklch, var(--primary) 40%, var(--border));
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.mj-channel-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mj-channel-wa   .mj-channel-icon { background: #dcfce7; color: #16a34a; }
.mj-channel-phone .mj-channel-icon { background: #dbeafe; color: var(--primary); }
.mj-channel-mail  .mj-channel-icon { background: #fef9c3; color: #ca8a04; }
.mj-channel-addr  .mj-channel-icon { background: #fce7f3; color: #db2777; }
.mj-channel-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.mj-channel-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}
.mj-channel-body strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mj-channel-hint {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.4;
}
.mj-channel-arrow {
  flex-shrink: 0;
  color: var(--text-3);
  display: flex;
  align-items: center;
}

/* ── Main content ── */
.mj-contact-main {
  padding: 56px 0 72px;
}
.mj-contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

/* ── Form ── */
.mj-contact-form-wrap h2 {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.mj-contact-form-lead {
  font-size: 16px;
  color: var(--text-2);
  margin: 0 0 28px;
  line-height: 1.6;
}
.mj-form { display: flex; flex-direction: column; gap: 16px; }
.mj-form-row { display: flex; flex-direction: column; gap: 6px; }
.mj-form-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mj-form-field { display: flex; flex-direction: column; gap: 5px; }
.mj-form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.mj-form-field label span { color: var(--primary); }
.mj-form-field input,
.mj-form-field select,
.mj-form-field textarea {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  transition: border-color 140ms, box-shadow 140ms;
  width: 100%;
  box-sizing: border-box;
}
.mj-form-field input:focus,
.mj-form-field select:focus,
.mj-form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--primary) 18%, transparent);
}
.mj-form-field textarea { resize: vertical; min-height: 120px; }
.mj-form-row--submit {
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
}
.mj-form-privacy {
  font-size: 12px;
  color: var(--text-3);
  margin: 0;
  line-height: 1.5;
}
.mj-form-privacy a { color: var(--primary); }
.mj-form-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.mj-form-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
}
.mj-form-success svg { flex-shrink: 0; }
.mj-form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}

/* ── Aside / Info ── */
.mj-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 80px;
}
.mj-contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.mj-contact-info-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.mj-contact-info-card h3,
.mj-contact-info-card p,
.mj-contact-info-card .btn,
.mj-hours-table {
  padding-left: 20px;
  padding-right: 20px;
}
.mj-contact-info-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  margin: 20px 20px 12px;
  padding: 0;
}
.mj-contact-info-card > p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0 0 14px;
}
.mj-contact-info-card .btn {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
  justify-content: center;
}
.mj-hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-bottom: 20px;
  padding: 0;
}
.mj-hours-table th,
.mj-hours-table td {
  padding: 7px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.mj-hours-table tr:last-child th,
.mj-hours-table tr:last-child td { border-bottom: none; }
.mj-hours-table th { font-weight: 600; color: var(--text); width: 110px; }
.mj-hours-table td { color: var(--text-2); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .mj-contact-main-grid { grid-template-columns: 1fr; }
  .mj-contact-info { position: static; }
  .mj-contact-info-card img { height: 240px; }
}
@media (max-width: 600px) {
  .mj-form-row--2 { grid-template-columns: 1fr; }
  .mj-form-row--submit { flex-direction: column; align-items: stretch; }
  .mj-contact-channel-grid { grid-template-columns: 1fr; }
}

/* ============ Mobile polish (768 / 600) ============ */
@media (max-width: 768px) {
  .nav {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-bottom: 40px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .cat-tabs {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    scrollbar-width: none;
    border-radius: var(--radius);
    padding: 6px 8px;
  }
  .cat-tabs::-webkit-scrollbar { display: none; }
  .cat-tab {
    flex-shrink: 0;
    white-space: nowrap;
    min-height: 44px;
  }
  .reviews-aggregate {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .reviews-google-link {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }
  .section-head.row .btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-photo {
    position: static;
  }
  .map-frame {
    min-height: 260px;
  }
  .fab {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    right: calc(16px + env(safe-area-inset-right, 0px));
  }
  .form-submit .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .topic-pill {
    min-height: 40px;
  }
}
@media (max-width: 600px) {
  .hero-title { font-size: 34px; }
  .hero-stats { grid-template-columns: 1fr; gap: 14px; }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .product-grid--preview .product-card:nth-child(n+5) { display: none; }
  .t-card { padding: 22px 20px; }
  .channel-card { min-height: 44px; }
  .mj-page-hero h1,
  .mj-shop-hero h1 { font-size: 28px; }
}
