/* ===== DESIGN SYSTEM – moscow-mule-becher.de ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  --copper: #C27B3E;
  --copper-light: #D4956A;
  --copper-dark: #8B4513;
  --copper-glow: #E8A96850;
  --gold: #D4A754;
  --gold-light: #F0D48A;
  --bg-dark: #0F0D0B;
  --bg-darker: #0A0908;
  --bg-card: #1A1714;
  --bg-card-hover: #221E19;
  --glass-bg: rgba(26, 23, 20, 0.75);
  --glass-border: rgba(194, 123, 62, 0.15);
  --glass-border-hover: rgba(194, 123, 62, 0.35);
  --text-primary: #F5EDE4;
  --text-secondary: #B8A898;
  --text-muted: #7A6F63;
  --success: #4CAF50;
  --danger: #E53935;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-copper: 0 4px 30px rgba(194, 123, 62, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

/* --- Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--copper-light);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gold-light);
}

ul {
  list-style: none;
}

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Utility --- */
.text-copper {
  color: var(--copper);
}

.text-gold {
  color: var(--gold);
}

.section-padding {
  padding: 100px 0;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 13, 11, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(15, 13, 11, 0.92);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  /* Enhanced height for better logo fit */
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  /* Extra bold for better recognition */
  color: #fff;
  /* High contrast */
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
  letter-spacing: -0.5px;
}

.nav-logo .logo-img {
  height: 72px;
  /* Even larger for better visibility */
  width: auto;
  border-radius: 4px;
  object-fit: contain;
  transition: var(--transition);
}

.nav-logo:hover .logo-img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: rgba(194, 123, 62, 0.1);
}

.nav-cta {
  background: linear-gradient(135deg, var(--copper), var(--gold)) !important;
  color: #111 !important;
  font-weight: 700 !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  /* Pill style for premium feel */
  margin-left: 10px;
  box-shadow: 0 4px 15px rgba(194, 123, 62, 0.2);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194, 123, 62, 0.4);
}

/* Icon Replacement */
.tipp-icon i {
  font-size: 2rem;
  color: var(--copper);
  margin-bottom: 0;
}

.benefit-icon i {
  font-size: 1.2rem;
  color: var(--copper);
}

/* Mobile burger */
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-burger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 9, 8, 0.82) 0%, rgba(10, 9, 8, 0.55) 50%, rgba(10, 9, 8, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(194, 123, 62, 0.12);
  border: 1px solid rgba(194, 123, 62, 0.25);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--copper-light);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease;
}

.hero-badge::before {
  content: '🥃';
}

h1.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

h1.hero-title .highlight {
  background: linear-gradient(135deg, var(--copper), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(194, 123, 62, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(194, 123, 62, 0.4);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--glass-border-hover);
  color: var(--text-primary);
}

.btn-outline:hover {
  background: rgba(194, 123, 62, 0.1);
  border-color: var(--copper);
  color: var(--text-primary);
}

.btn-amazon {
  background: linear-gradient(135deg, #FF9900, #E88B00);
  color: #111 !important;
  font-weight: 700;
}

.btn-amazon:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 153, 0, 0.35);
  color: #111 !important;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-header .section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
}

.section-header h1,
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.glass-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-copper);
}

/* ===== PRODUCT CARDS (Affiliate) ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-copper);
}

.product-card .product-image {
  position: relative;
  padding: 24px;
  background: #ffffff;
  /* uniform white background */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.product-card .product-image img {
  width: 160px;
  height: 160px;
  padding: 12px;
  background-color: #ffffff;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-card .product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--copper), var(--gold));
  color: #111;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 10;
  /* Ensure it stays in front on hover */
  pointer-events: none;
  /* Decoration only */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.product-card .product-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.35;
}

.product-card .product-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
  flex: 1;
}

.product-card .product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--copper-light);
  margin-bottom: 4px;
}

.product-card .product-price small {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

.product-card .product-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.product-card .product-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.product-card .btn {
  flex: 1;
  justify-content: center;
  padding: 12px 16px;
  font-size: 0.85rem;
}

/* ===== REZEPT SECTION ===== */
.rezept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.rezept-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.rezept-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-copper);
}

.rezept-card .rezept-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.rezept-card .rezept-body {
  padding: 32px;
}

.rezept-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.rezept-card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.ingredient-list {
  margin-bottom: 24px;
}

.ingredient-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(194, 123, 62, 0.08);
  font-size: 0.95rem;
}

.ingredient-list li::before {
  content: '▸';
  color: var(--copper);
  font-weight: 700;
}

/* ===== RENTAL / CALCULATOR ===== */
.rental-section {
  background: var(--bg-darker);
}

.rental-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.rental-info h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 20px;
}

.rental-info p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 1rem;
}

.rental-steps {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rental-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.rental-step .step-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(194, 123, 62, 0.12);
  border: 1px solid rgba(194, 123, 62, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.rental-step h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.rental-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Calculator Box */
.calculator-box {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.calculator-box h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.calculator-box .calc-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.calc-field {
  margin-bottom: 22px;
}

.calc-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.calc-field input,
.calc-field select,
.calc-field textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-darker);
  border: 1px solid rgba(194, 123, 62, 0.15);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.calc-field input:focus,
.calc-field select:focus,
.calc-field textarea:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(194, 123, 62, 0.12);
}

.calc-field textarea {
  resize: vertical;
  min-height: 100px;
}

.calc-range-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.calc-range-wrapper input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--copper) 0%, rgba(194, 123, 62, 0.2) 100%);
  border: none;
  padding: 0;
}

.calc-range-wrapper input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--copper), var(--gold));
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(194, 123, 62, 0.4);
}

.calc-range-value {
  min-width: 50px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--copper-light);
}

/* Price display */
.calc-result {
  background: linear-gradient(135deg, rgba(194, 123, 62, 0.1), rgba(212, 167, 84, 0.05));
  border: 1px solid rgba(194, 123, 62, 0.2);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 8px;
  margin-bottom: 24px;
}

.calc-result .result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.calc-result .result-row.total {
  border-top: 1px solid rgba(194, 123, 62, 0.2);
  margin-top: 10px;
  padding-top: 14px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
}

.calc-result .result-row span:last-child {
  font-weight: 600;
  color: var(--text-primary);
}

.calc-result .result-row.total span:last-child {
  font-size: 1.4rem;
  color: var(--copper-light);
}

/* ===== ABOUT / HISTORY ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 1rem;
}

.fact-grid,
.packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.fact-card {
  background: rgba(194, 123, 62, 0.06);
  border: 1px solid rgba(194, 123, 62, 0.12);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.fact-card .fact-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.fact-card .fact-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--copper-light);
}

.fact-card .fact-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== TIPPS SECTION ===== */
.tipps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}

.tipp-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.tipp-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-copper);
}

.tipp-card .tipp-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(194, 123, 62, 0.15), rgba(194, 123, 62, 0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.tipp-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.tipp-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer ul a:hover {
  color: var(--copper-light);
}

.footer-bottom {
  border-top: 1px solid rgba(194, 123, 62, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SCROLL-TO-TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 100;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-3px);
}

/* ===== PAGE-SPECIFIC: SUB-PAGES ===== */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, var(--bg-darker), var(--bg-dark));
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.content-section {
  padding: 80px 0;
}

.content-section .prose {
  max-width: 760px;
  margin: 0 auto;
}

.prose h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin: 40px 0 16px;
}

.prose h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin: 32px 0 12px;
  color: var(--copper-light);
}

.prose p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 1rem;
}

.prose ul {
  margin: 16px 0;
  padding-left: 20px;
}

.prose ul li {
  color: var(--text-secondary);
  margin-bottom: 8px;
  padding-left: 8px;
  position: relative;
}

.prose ul li::before {
  content: '▸';
  color: var(--copper);
  position: absolute;
  left: -16px;
  font-weight: 700;
}

/* ===== AFFILIATE DISCLAIMER ===== */
.affiliate-note {
  background: rgba(194, 123, 62, 0.06);
  border: 1px solid rgba(194, 123, 62, 0.12);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 32px;
}

.affiliate-note strong {
  color: var(--text-secondary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(15, 13, 11, 0.97);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--glass-border);
  }

  .rezept-grid,
  .rental-grid,
  .about-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .nav-links {
    display: none;
    /* We'll use the burger menu for this screen size */
  }

  .nav-burger {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero-content {
    padding-top: 100px;
  }
}

@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .tipps-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fact-grid {
    grid-template-columns: 1fr;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .calculator-box {
    padding: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .section-padding {
    padding: 60px 0;
  }

  .calculator-box {
    padding: 20px;
  }

  .calc-field {
    flex-direction: column;
    align-items: flex-start;
  }

  .calc-field label {
    width: 100%;
    margin-bottom: 8px;
  }

  .calc-field input,
  .calc-field select,
  .calc-field textarea {
    width: 100% !important;
  }
}

/* ===== HERO STATS ===== */
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--copper-light);
  font-family: var(--font-heading);
}

.hero-stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.highlight {
  background: linear-gradient(135deg, var(--copper), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 640px) {
  .hero-stats {
    gap: 20px;
    justify-content: center;
  }

  .hero-stat-value {
    font-size: 1.2rem;
  }
}