/* ── Mehlhose & Mehlhose — Shared Styles ── */
:root {
  --amber: #f5b400;
  --amber-light: #fffbf0;
  --dark: #121212;
  --dark2: #1e1e1e;
  --gray: #f8f8f8;
  --border: #e8e8e8;
  --text: #1a1a1a;
  --muted: #666;
  --radius: 10px;
  --max: 1080px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--text); background: #fff; line-height: 1.6; }
a { color: var(--amber); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ── Nav ── */
.nav { background: var(--dark); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid #1e1e1e; }
.nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 60px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 44px; width: 44px; border-radius: 50%; object-fit: cover; display: inline-block; flex-shrink: 0; border: 1.5px solid #333; }
.nav-logo:hover { text-decoration: none; }
.nav-logo-name { font-size: 13px; font-weight: 800; color: var(--amber); letter-spacing: 0.3px; line-height: 1.2; }
.nav-logo-sub { font-size: 11px; color: #666; font-weight: 400; letter-spacing: 0; }
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { color: #aaa; font-size: 13px; font-weight: 500; transition: color 0.15s; }
.nav-links a:hover { color: #fff; text-decoration: none; }
.nav-cta { background: var(--amber); color: var(--dark) !important; padding: 7px 16px; border-radius: 50px; font-weight: 700 !important; font-size: 13px !important; }

/* ── Footer ── */
.footer { background: var(--dark); color: #555; padding: 40px 24px; text-align: center; font-size: 13px; }
.footer a { color: #777; }
.footer a:hover { color: #aaa; }
.footer-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 12px; flex-wrap: wrap; }

/* ── Buttons ── */
.btn { display: inline-block; padding: 13px 32px; border-radius: 50px; font-weight: 700; font-size: 15px; cursor: pointer; border: none; transition: transform 0.15s, box-shadow 0.15s; }
.btn-primary { background: var(--amber); color: var(--dark); box-shadow: 0 4px 16px rgba(245,180,0,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,180,0,0.5); text-decoration: none; }
.btn-outline { background: transparent; color: var(--amber); border: 2px solid var(--amber); }
.btn-outline:hover { background: var(--amber-light); text-decoration: none; }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--dark2); text-decoration: none; }

/* ── Section layouts ── */
.section { padding: 72px 24px; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--amber); margin-bottom: 10px; }
.section-title { font-size: clamp(22px, 4vw, 34px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: var(--muted); max-width: 600px; line-height: 1.7; }
.section-bg { background: var(--gray); }
.section-dark { background: var(--dark); color: #fff; }
.section-dark .section-sub { color: #aaa; }

/* ── Cards ── */
.card { background: #fff; border: 1.5px solid var(--border); border-radius: 14px; padding: 28px; transition: box-shadow 0.2s, transform 0.2s; }
.card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.09); transform: translateY(-2px); }
.card-grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .card-grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .card-grid-3 { grid-template-columns: 1fr 1fr 1fr; } }

/* ── Blog ── */
.blog-card { display: flex; flex-direction: column; }
.blog-card .tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--amber); margin-bottom: 8px; }
.blog-card h3 { font-size: 17px; font-weight: 700; line-height: 1.35; margin-bottom: 8px; color: var(--text); }
.blog-card p { font-size: 14px; color: var(--muted); flex: 1; }
.blog-card .read-more { margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--amber); }

/* ── Product highlight ── */
.product-highlight { background: var(--dark); color: #fff; border-radius: 16px; padding: 36px; }
.product-highlight h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.product-highlight .price { font-size: 36px; font-weight: 800; color: var(--amber); margin: 16px 0; }
.product-highlight ul { list-style: none; margin-bottom: 24px; }
.product-highlight ul li { padding: 6px 0; font-size: 15px; color: #ccc; }
.product-highlight ul li::before { content: "✓ "; color: var(--amber); font-weight: 700; }

/* ── Article content ── */
.article-body { max-width: 720px; margin: 0 auto; padding: 48px 24px; }
.article-body h1 { font-size: clamp(24px, 4vw, 36px); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.article-body h2 { font-size: 22px; font-weight: 700; margin: 40px 0 12px; padding-left: 14px; border-left: 4px solid var(--amber); }
.article-body h3 { font-size: 18px; font-weight: 700; margin: 28px 0 8px; }
.article-body p { margin-bottom: 16px; font-size: 16px; line-height: 1.75; color: #333; }
.article-body ul, .article-body ol { margin: 16px 0 16px 24px; }
.article-body li { margin-bottom: 8px; font-size: 16px; line-height: 1.6; }
.article-body .video-wrap { position: relative; padding-bottom: 56.25%; height: 0; margin: 36px 0; border-radius: 12px; overflow: hidden; }
.article-body .video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.article-cta { background: var(--amber-light); border: 1.5px solid var(--amber); border-radius: 12px; padding: 24px; margin: 36px 0; text-align: center; }
.article-cta h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.article-cta p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }

/* ── Utilities ── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.divider { border: none; border-top: 1.5px solid var(--border); margin: 40px 0; }
