/* RESET & BASELINE ---------------------*/
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #ececec;
  background-color: #222729;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  vertical-align: middle;
  display: block;
}
a {
  color: #D9B394;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #F5FAF7;
}
ul, ol {
  margin-left: 18px;
  margin-bottom: 20px;
}
ul {
  list-style-type: disc;
}
li {
  margin-bottom: 8px;
}
strong, b {
  font-weight: 700;
}
/* SCROLLBARS */
::-webkit-scrollbar {
  width: 14px;
  background: #212526;
}
::-webkit-scrollbar-thumb {
  background: #425252;
  border-radius: 8px;
  border: 3px solid #212526;
}

/* TYPOGRAPHY ------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #F5FAF7;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
h1 { font-size: 2.75rem; margin-bottom: 28px; }
h2 { font-size: 2rem; margin-bottom: 24px; }
h3 { font-size: 1.3rem; margin-bottom: 18px; }
h4 { font-size: 1.1rem; margin-bottom: 14px; }
h5, h6 { font-size: 1rem; margin-bottom: 10px; }
.subtitle {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #D9B394;
  font-size: 1.15rem;
  margin-bottom: 32px;
}
p, .text-section p, .content-wrapper p {
  font-size: 1rem;
  color: #ececec;
  margin-bottom: 20px;
  font-weight: 400;
}

/* CONTAINER & LAYOUT ---------------*/
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(38, 45, 48, 0.91);
  border-radius: 18px;
  box-shadow: 0 2px 24px 0 rgba(48, 63, 71, .12), 0 1.5px 7px 0 rgba(0,0,0,.07);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #262D30;
  border: 1.5px solid #425252;
  margin-bottom: 20px;
  position: relative;
  border-radius: 15px;
  box-shadow: 0 2px 8px 0 rgba(50,60,65,0.14);
  padding: 28px 22px;
  min-width: 230px;
  flex: 1 1 220px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 20px 0 rgba(92,130,156,0.18);
  border-color: #D9B394;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 0;
  background: #fafafd;
  border-radius: 13px;
  box-shadow: 0 1px 9px 0 rgba(42, 40, 38, 0.10);
  border-left: 4px solid #425252;
}
.testimonial-card p {
  color: #212526;
  font-size: 1.09rem;
}
.testimonial-card span,
.testimonial-card strong {
  color: #425252;
  font-weight: 700;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Brand Feature Grid/List -----------*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  list-style: none;
  margin-top: 0;
  padding-left: 0;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #262D30;
  border-radius: 13px;
  box-shadow: 0 1.5px 8px 0 rgba(50,60,65,0.13);
  padding: 24px 14px;
  min-width: 200px;
  flex: 1 1 180px;
  color: #ececec;
  font-size: 1.03rem;
  border: 1px solid #354545;
  transition: border-color .18s, box-shadow .18s, transform .13s;
}
.feature-grid li:hover {
  border-color: #D9B394;
  box-shadow: 0 4px 18px 0 rgba(200, 183, 140, 0.09);
  transform: translateY(-2px) scale(1.025);
}
.feature-grid li span {
  font-size: 0.99rem;
  color: #c0abab;
}
.feature-grid img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

/* Recipes Cards Grid/Teaser --------*/
.recipe-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.recipe-card {
  background: #232A2C;
  border-radius: 12px;
  box-shadow: 0 1px 10px 0 rgba(60,61,65,0.11);
  border: 1.2px solid #354545;
  padding: 24px 16px 16px 16px;
  min-width: 200px;
  flex: 1 1 200px;
  transition: border-color .18s, box-shadow .18s;
  margin-bottom: 20px;
}
.recipe-card h3 {
  font-size: 1.35rem;
  color: #D9B394;
  margin-bottom: 9px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.recipe-card span {
  color: #A1C2B6;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.recipe-card p {
  color: #ececec;
  font-size: 0.99rem;
}
.recipe-card:hover {
  border-color: #D9B394;
  box-shadow: 0 2px 15px 0 rgba(217,179,148,.13);
}

/* Service Cards (Dienstleistungen) */
.service-card {
  background: #232A2C;
  border-radius: 13px;
  box-shadow: 0 1px 9px 0 rgba(44,40,35,0.10);
  border: 1px solid #354545;
  margin-bottom: 20px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
  transition: border-color .18s, box-shadow .18s;
}
.service-card h3 { color: #D9B394; margin-bottom: 5px; }
.service-card span { color: #A1C2B6; font-weight: 700; }
.service-card:hover {
  border-color: #D9B394;
  box-shadow: 0 4px 15px 0 rgba(170,130,70,.11);
}

/* Table Styling (Preistabelle) -----*/
.pricing-table {
  width: 100%;
  background: #232A2C;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(68,68,68,0.07);
  border-collapse: collapse;
  margin: 22px 0 32px 0;
  overflow: hidden;
}
.pricing-table caption {
  caption-side: top;
  font-weight: bold;
  color: #D9B394;
  padding: 10px 0 14px;
  font-size: 1.08rem;
}
.pricing-table thead {
  background: #425252;
  color: #fff;
  font-size: 1.01rem;
}
.pricing-table th, .pricing-table td {
  padding: 13px 10px;
  text-align: left;
  font-size: 1.01rem;
}
.pricing-table tbody tr {
  border-bottom: 1px solid #354545;
}
.pricing-table tbody tr:last-child {
  border-bottom: none;
}
.pricing-table td {
  color: #e9e9ec;
}

/* Country Tabs (Laenderkuechen) ----*/
.country-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 17px;
}
.country-tabs button {
  background: #232A2C;
  color: #ececec;
  border: 1.2px solid #425252;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 20px;
  padding: 8px 20px 8px 16px;
  cursor: pointer;
  transition: background .16s, border-color .16s, color .16s;
  box-shadow: 0 1.5px 6px 0 rgba(45,54,57,0.11);
  letter-spacing: .04em;
}
.country-tabs button:hover, .country-tabs button:focus {
  background: #425252;
  color: #F5FAF7;
  border-color: #D9B394;
}

/* NAVIGATION ----------------------*/
header {
  background: #232A2C;
  width: 100%;
  box-shadow: 0 2px 22px 0 rgba(60,60,55,0.08);
  position: sticky;
  top: 0; left: 0;
  z-index: 220;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 12px 0;
}
.main-nav > a {
  color: #ffffff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.09rem;
  letter-spacing: .03em;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background .15s, color .15s;
}
.main-nav > a:hover, .main-nav > a:focus {
  background: #425252;
  color: #F5FAF7;
}
.main-nav .cta-button {
  margin-left: 17px;
}
.main-nav img {
  width: 54px;
  height: 54px;
}
.cta-button {
  background: #D9B394;
  color: #262D30;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  padding: 12px 24px;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  border: 1.5px solid #D9B394;
  box-shadow: 0 1.4px 6px rgba(80,78,76,0.10);
  transition: background .16s, color .16s, border-color .16s, transform .12s;
}
.cta-button:hover, .cta-button:focus {
  background: #425252;
  color: #F5FAF7;
  border-color: #D9B394;
  transform: translateY(-1px) scale(1.04);
}

/* MOBILE MENU ---------------------*/
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}

/* MOBILE NAV - VISIBLE ON SMALL SCREENS*/
@media (max-width: 1024px) {
  .main-nav > a:not(:first-child),
  .main-nav .cta-button {
    font-size: 1rem;
    padding: 9px 7px;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    position: absolute;
    right: 18px;
    top: 18px;
    background: #232A2C;
    border: 1.8px solid #D9B394;
    color: #D9B394;
    font-size: 2rem;
    padding: 7px 16px 5px 16px;
    border-radius: 9px;
    z-index: 240;
    cursor: pointer;
    transition: background .16s, color .16s;
  }
  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus {
    background: #425252;
    color: #F5FAF7;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: #232A2C;
    z-index: 9999;
    padding: 32px 32px 18px 24px;
    transform: translateX(100%);
    transition: transform .28s cubic-bezier(.73,.01,.37,.99);
    box-shadow: -8px 0 41px 7px rgba(44,41,38,0.22);
    overflow-y: auto;
  }
  .mobile-menu.open {
    transform: translateX(0);
  }
  .mobile-menu-close {
    align-self: flex-end;
    background: none;
    color: #D9B394;
    border: none;
    font-size: 2.2rem;
    margin-bottom: 22px;
    cursor: pointer;
    transition: color .16s;
  }
  .mobile-menu-close:hover,
  .mobile-menu-close:focus {
    color: #F5FAF7;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 26px;
    width: 100%;
  }
  .mobile-nav a {
    color: #D9B394;
    font-size: 1.15rem;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 600;
    padding: 14px 0;
    border-radius: 10px;
    margin-left: 12px;
    transition: background .14s, color .14s;
  }
  .mobile-nav a:hover,
  .mobile-nav a:focus {
    color: #F5FAF7;
    background: #425252;
  }
}

/* FOOTER --------------------------*/
footer {
  background: #232A2C;
  color: #ececec;
  border-top: 2.5px solid #425252;
  padding: 34px 0 20px 0;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #A1C2B6;
  font-size: 1.01rem;
  padding: 3px 9px;
  border-radius: 7px;
  transition: background .12s, color .13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #D9B394;
  background: #425252;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.98rem;
}
.footer-contact img {
  width: 17px;
  height: 17px;
  margin-right: 7px;
  opacity: 0.85;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #ececec;
}

/* TEXT SECTIONS & UTILITIES --------*/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section ul {
  margin-bottom: 10px;
  margin-left: 14px;
}
.text-section li {
  margin-bottom: 7px;
}

/* Recipe Filters -------------------*/
.recipe-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
}
.recipe-filters label {
  font-size: 1.01rem;
  color: #D9B394;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-right: 5px;
}
.recipe-filters select, .recipe-filters input[type="search"] {
  background: #262D30;
  color: #ececec;
  font-size: 1rem;
  border-radius: 9px;
  border: 1.3px solid #425252;
  padding: 8px 12px;
  margin-right: 8px;
  transition: border .15s;
}
.recipe-filters select:focus, .recipe-filters input[type="search"]:focus {
  border-color: #D9B394;
  outline: none;
}

/* BUTTONS ------------------------*/
button, input[type='button'], input[type='submit'] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  border: none;
}
button:active { transform: scale(0.98); }

/* SECTION SPACING/RESPONSIVENESS --*/
section {
  margin-bottom: 60px;
  padding: 40px 0;
}

@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
  }
  .feature-grid li, .card, .service-card, .recipe-card {
    min-width: 145px;
    font-size: 0.99rem;
  }
}
@media (max-width: 900px) {
  .section, section {
    margin-bottom: 36px;
    padding: 29px 0;
  }
  .content-wrapper {
    gap: 15px;
  }
  .feature-grid,
  .recipe-card-grid,
  .card-container {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.45rem; }
  .section, section {
    margin-bottom: 20px;
    padding: 17px 0;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .feature-grid,
  .recipe-card-grid, 
  .card-container {
    gap: 10px;
  }
  .testimonial-card { padding: 13px 10px; gap: 10px; border-radius: 7px; }
  .footer-nav { gap: 10px; margin-bottom: 10px; }

  .content-wrapper,
  .text-section {
    gap: 7px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 10px;
  }
  .country-tabs {
    gap: 7px;
    margin-bottom: 8px;
  }
}

/* FORMS (Newsletter, Kontakt) -------*/
input, select, textarea {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  background: #232A2C;
  color: #ececec;
  border: 1.2px solid #425252;
  border-radius: 9px;
  padding: 9px 14px;
  transition: border .15s;
}
input:focus, select:focus, textarea:focus {
  border-color: #D9B394;
  outline: none;
}

/* ANIMATIONS/TRANSITIONS -------------*/
.section, .card, .card-container, .feature-grid li, .service-card, .recipe-card {
  transition-property: box-shadow, border-color, background, transform;
  transition-duration: .16s;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
}

/* Scroll fade-in animation */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(.4,0,.2,1), transform 0.6s cubic-bezier(.4,0,.2,1);
}
[data-animate].in {
  opacity: 1;
  transform: none;
}

/* COOKIE CONSENT BANNER & MODAL ------*/
.cookie-consent-banner {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 14px;
  z-index: 9001;
  background: #232A2C;
  color: #F5FAF7;
  border-radius: 17px;
  box-shadow: 0 2px 14px 0 rgba(50,55,70,0.23);
  padding: 22px 28px 22px 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-size: 0.98rem;
  animation: cookieBannerIn .65s cubic-bezier(.74,-0.23,.25,1.42) 1;
}
@keyframes cookieBannerIn {
  from {opacity:0; transform:translateY(30px);} to {opacity:1;transform:none;}
}
.cookie-consent-banner strong { color: #D9B394; }
.cookie-consent-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-consent-actions .cookie-btn {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 8px 19px;
  border-radius: 10px;
  background: #425252;
  color: #F5FAF7;
  border: 1.2px solid #D9B394;
  cursor: pointer;
  transition: background .13s, color .13s, border-color .13s;
}
.cookie-consent-actions .cookie-btn.accept {
  background: #D9B394;
  color: #232A2C;
}
.cookie-consent-actions .cookie-btn.reject {
  background: #425252;
  color: #F5FAF7;
}
.cookie-consent-actions .cookie-btn.settings {
  background: #232A2C;
  color: #D9B394;
  border: 1.2px solid #425252;
}
.cookie-consent-actions .cookie-btn:hover, .cookie-consent-actions .cookie-btn:focus {
  background: #D9B394;
  color: #232A2C;
  border-color: #D9B394;
}

/* Cookie Modal Setup */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 9003;
  left: 0; top: 0; right: 0; bottom:0;
  background: rgba(60,60,60,0.55);
}
.cookie-modal-overlay.open {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn .22s cubic-bezier(.68,.03,.41,.95) 1;
}
@keyframes cookieModalFadeIn {
  from { opacity:0; } to { opacity:1; }
}
.cookie-modal {
  background: #232A2C;
  border-radius: 18px;
  box-shadow: 0 6px 34px 0 rgba(40,40,42,0.37);
  max-width: 95vw;
  min-width: 280px;
  width: 420px;
  padding: 34px 26px 24px 26px;
  color: #F5FAF7;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  font-size: 1.04rem;
}
.cookie-modal h2 {
  font-size: 1.2rem;
  color: #D9B394;
  margin-bottom: 7px;
}
.cookie-modal .cookie-modal-close {
  display: block;
  position: absolute;
  top: 19px;
  right: 24px;
  background: none;
  border: none;
  color: #F5FAF7;
  font-size: 1.65rem;
  cursor: pointer;
  transition: color .14s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  color: #D9B394;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 12px 0 8px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-category input[type=checkbox],
.cookie-category input[type=radio] {
  width: 20px; height: 20px;
  accent-color: #D9B394;
}
.cookie-category label {
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial;
  color: #D9B394;
}
.cookie-category.essential label { color: #A1C2B6; }
.cookie-category.essential input { pointer-events: none; opacity: 0.44; }
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-actions .cookie-btn {
  min-width: 85px;
  padding: 8px 17px;
}

@media (max-width: 599px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 13px;
    padding: 14px 10px 16px 12px;
    font-size: 0.95rem;
    align-items: flex-start;
    left: 4px; right: 4px;
  }
  .cookie-modal { width: 98vw; min-width:0; padding: 18px 7px 17px 12px; }
  .cookie-modal h2 { font-size: 1.07rem; }
  .cookie-modal .cookie-modal-close { top: 7px; right: 12px; font-size: 1.2rem; }
}


/* INDUSTRIAL MODERN EXTRAS -----------*/
.section, .container, .card, .feature-grid li, .recipe-card, .service-card {
  /* Metallic highlight border with shadow for modern/industrial style */
  border: 1.3px solid #425252;
  box-shadow: 0 2px 13px 0 rgba(66, 82, 82, 0.07);
}
.section {
  /* Dark, rugged look */
  background: linear-gradient(130deg, #232A2C 90%, #262D30 100%);
  /* A touch of 'steel' – but solid color, fallback for bounds */
}
.card, .feature-grid li, .recipe-card, .service-card {
  background: #232A2C;
  box-shadow: 0 2px 8px 0 rgba(70,80,90,0.10);
}
.cta-button, .cookie-btn, .country-tabs button {
  text-transform: uppercase;
  letter-spacing: .04em;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.card, .feature-grid li, .recipe-card, .service-card, .testimonial-card {
  /* Slightly more industrial */
  border-radius: 13px;
}

/* MICRO-INTERACTIONS ---------------*/
.card:active, .feature-grid li:active, .service-card:active, .recipe-card:active {
  transform: scale(0.98) translateY(1px);
  box-shadow: 0 2px 17px 0 rgba(217, 179, 148, .05);
}
.cta-button:active { transform: scale(0.99); }
.country-tabs button:active { transform: scale(0.98); }

/* ACCESSIBILITY: FOCUS RINGS & CONTRAST */
a:focus, button:focus, .cookie-btn:focus, .country-tabs button:focus {
  outline: 2px solid #D9B394;
  outline-offset: 2px;
}

/* Hide visually but keep accessible */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* SPACING BETWEEN SECTIONS -----------*/
.card-container > *,
.card-grid > *,
.content-grid > *,
.section > *,
.feature-grid > *,
.recipe-card-grid > *,
.service-card + .service-card,
.testimonial-card + .testimonial-card {
  margin-bottom: 20px;
}

/* Ensure no content overlaps at small screen */
@media (max-width: 500px) {
  .recipe-card,
  .feature-grid li,
  .card,
  .service-card {
    min-width: 80vw;
  }
}
