/* ================== RESET & BASE ======================= */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #FAF8F5;
  color: #2C3D4F;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #2C3D4F;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #1E2530;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 16px; font-weight: 600; }
h4 { font-size: 1.1rem; }
strong {
  font-weight: 700;
  color: #2C3D4F;
}

/* ================== BRAND COLORS ======================= */
:root {
  --primary: #2C3D4F;
  --secondary: #DF994E;
  --accent: #FFFFFF;
  --gold: #d4af37;
  --section-bg: #fff;
  --card-bg: #F6F5F1;
  --heading: #1E2530;
}

/* ================== CONTAINER ======================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ========== HEADER, NAVIGATION, MOBILE MENU ========== */
header {
  background: var(--primary);
  color: var(--accent);
  position: relative;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(44,61,79,0.04);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
.header-container img {
  height: 42px;
  display: block;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--accent);
  font-size: 1rem;
  position: relative;
  padding: 4px 0;
}
.main-nav a:after {
  content: '';
  display: block;
  margin: 0 auto;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.24s;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}
.cta-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  background: linear-gradient(92deg, var(--gold), var(--secondary));
  border-radius: 32px;
  padding: 13px 32px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 16px rgba(210, 159, 50, 0.11);
  text-shadow: none;
  font-size: 1.12rem;
  letter-spacing: 0.03em;
  border: none;
  display: inline-block;
  cursor: pointer;
  margin-left: 16px;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(100deg, #f6e27a, var(--gold));
  color: #1E2530;
  box-shadow: 0 4px 24px rgba(210, 159, 50, 0.19);
  outline: none;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: none;
  color: var(--gold);
  border-radius: 8px;
  padding: 6px 13px;
  border: none;
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.2s, color 0.25s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  box-shadow: 0 6px 32px rgba(44, 61, 79, 0.43);
  z-index: 1200;
  padding: 0 24px;
  transform: translateX(-110vw);
  transition: transform 0.45s cubic-bezier(0.57,0.21,0.18,0.97);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.25rem;
  color: var(--gold);
  background: none;
  border: none;
  align-self: flex-end;
  margin-top: 26px;
  margin-bottom: 25px;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 8px;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(212, 175, 55, 0.18);
  color: var(--accent);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--accent);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  transition: color .19s, background .17s;
  border-radius: 2px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.02);
}

/* ========== HERO SECTION ========== */
.hero {
  background: var(--section-bg);
  color: var(--primary);
  padding: 0;
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  min-height: 300px;
  padding-top: 48px;
  padding-bottom: 32px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
}
.hero h1 {
  font-size: 2.5rem;
  color: var(--heading);
}
.hero p {
  font-size: 1.15rem;
  margin-bottom: 28px;
  color: #2C3D4F;
}

/* ========== SECTION STYLES ========== */
.section {
  background: var(--section-bg);
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  box-shadow: 0 6px 22px rgba(44, 61, 79, 0.06);
}

.features, .about, .services, .testimonials, .contact, .legal {
  margin-bottom: 60px;
  padding: 40px 0;
}

.features ul, .about ul {
  padding-top: 4px;
  padding-bottom: 8px;
}
.features li, .about li, .services li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #2C3D4F;
  line-height: 1.55;
}
.features li:last-child, .about li:last-child, .services li:last-child {
  margin-bottom: 0;
}

.feature-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}
.feature {
  flex: 1 1 220px;
  min-width: 240px;
  max-width: 340px;
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(44,61,79,0.07);
  padding: 26px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .22s;
  border: 1.5px solid rgba(212,175,55,0.12);
  position: relative;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 8px 30px rgba(223,153,78,0.15),0 2px 20px rgba(44,61,79,0.04);
  transform: translateY(-4px) scale(1.015);
  z-index: 2;
  border-color: var(--gold);
}
.feature img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}
.feature h3 {
  font-size: 1.1rem;
  color: var(--secondary);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ========== CARDS, TESTIMONIALS, LISTS ========== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border: 1px solid rgba(212,175,55,0.09);
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(44,61,79,0.06);
  padding: 22px 18px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .18s, transform .2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 22px rgba(223,153,78,0.10),0 2px 12px rgba(44,61,79,0.025);
  transform: translateY(-2px) scale(1.01);
}

.testimonials .content-wrapper {
  align-items: flex-start;
  gap: 28px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 28px 20px 24px;
  background: var(--accent);
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 4px 24px rgba(44,61,79,0.08);
  transition: box-shadow 0.2s, border-color 0.2s;
  max-width: 670px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-color: var(--secondary);
  box-shadow: 0 10px 32px rgba(223,153,78,0.10),0 4px 18px rgba(44,61,79,0.035);
}
.testimonial-card p {
  color: #181A20;
  font-size: 1.05rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: var(--primary);
  opacity: 0.95;
}

.service-list, .reiseliste, .workshop-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
  margin-bottom: 24px;
}
.service-list li, .reiseliste li, .workshop-list li {
  background: var(--card-bg);
  border: 1px solid rgba(223,153,78, 0.10);
  border-radius: 12px;
  padding: 21px 18px 17px 21px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 1rem;
  line-height: 1.55;
  color: #181A20;
  box-shadow: 0 2px 10px rgba(44,61,79,0.03);
  position: relative;
}
.service-list span, .reiseliste span, .workshop-list span {
  color: var(--secondary);
  font-weight: 600;
  font-size: 1.03rem;
  margin-top: 2px;
}

.preistabelle {
  background: var(--card-bg);
  border-radius: 15px;
  border-left: 3.5px solid var(--gold);
  padding: 20px 23px;
  margin-top: 12px;
  margin-bottom: 18px;
  box-shadow: 0 1px 8px rgba(212,175,55,0.09);
}
.preistabelle h3 {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}
.preistabelle ul {
  padding-left: 6px;
}
.preistabelle li {
  margin-bottom: 8px;
  color: #2C3D4F;
  font-size: 0.98rem;
}

/* ========== SPECIAL BLOCKS ========== */
.awards-list, .insider-tip, .chef-bios, .chef-profiles, .faq,
.customization, .barrierefreiheit, .corporate-customer {
  background: #fff9f1;
  border-radius: 13px;
  border-left: 4px solid var(--secondary);
  padding: 16px 22px;
  margin-top: 12px;
  margin-bottom: 4px;
  color: #524327;
  font-size: 0.98rem;
  box-shadow: 0 1px 8px rgba(223,153,78,0.06);
}

.map {
  background: #f3ede2;
  padding: 13px 18px;
  border-radius: 11px;
  border-left: 3px solid var(--secondary);
  color: #2C3D4F;
  font-size: 0.99rem;
  margin-top: 12px;
}

/* ========== FOOTER ========== */
footer {
  background: #232c3a;
  color: var(--accent);
  padding: 44px 0 24px 0;
  border-top: 2.5px solid var(--gold);
  box-shadow: 0 -2px 20px rgba(44,61,79,0.08);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}
.footer-branding {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.footer-branding img {
  height: 38px;
}
.footer-branding p {
  font-size: 1rem;
  color: #fff9e6;
  margin-top: 8px;
}
.footer-menu, .footer-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-menu a, .footer-main a {
  color: var(--accent);
  opacity: 0.95;
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.20s, text-decoration .16s;
}
.footer-menu a:hover, .footer-main a:hover {
  color: var(--gold);
  text-decoration: underline;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.footer-social a img {
  height: 30px;
  width: 30px;
  filter: brightness(98%) saturate(70%) sepia(40%) hue-rotate(-10deg);
  transition: filter 0.2s;
}
.footer-social a:hover img {
  filter: drop-shadow(0 0 3px #d4af37) brightness(1.10) saturate(110%);
}

/* ========== LEGAL SECTION ========== */
.legal {
  margin-bottom: 60px;
  padding: 40px 0;
  background: var(--card-bg);
  border-radius: 17px;
  box-shadow: 0 2px 8px rgba(44,61,79,0.07);
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 11000;
  width: 100%;
  background: #fff;
  color: #2C3D4F;
  box-shadow: 0 -4px 24px rgba(223,153,78,0.10);
  border-top: 2.5px solid var(--gold);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: center;
  padding: 20px 20px 18px 20px;
  font-size: 1rem;
  animation: banner-slide-in 0.7s cubic-bezier(.62,.1,.39,1.08) 1;
}
@keyframes banner-slide-in {
  from { transform: translateY(120px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 1 1 200px;
  max-width: 420px;
  font-size: 1rem;
  color: #2C3D4F;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-banner button {
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 24px;
  border: none;
  padding: 10px 22px;
  margin: 0;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s;
  box-shadow: 0 1px 7px rgba(212,175,55,0.09);
}
.cookie-banner .cookie-accept {
  background: linear-gradient(93deg, var(--gold), var(--secondary));
  color: var(--primary);
}
.cookie-banner .cookie-accept:hover,
.cookie-banner .cookie-accept:focus {
  background: linear-gradient(100deg, #f6e27a, var(--gold));
  color: #1E2530;
}
.cookie-banner .cookie-reject {
  background: #f4ecd6;
  color: var(--primary);
  border: 1.5px solid var(--gold);
}
.cookie-banner .cookie-reject:hover,
.cookie-banner .cookie-reject:focus {
  background: #f6f3eb;
  border-color: var(--secondary);
  color: #1E2530;
}
.cookie-banner .cookie-settings {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--secondary);
}
.cookie-banner .cookie-settings:hover,
.cookie-banner .cookie-settings:focus {
  background: #fff9ed;
  color: var(--secondary);
}

/* Cookie modal */
.cookie-modal-backdrop {
  position: fixed;
  left:0;top:0;right:0;bottom:0;
  z-index: 12001;
  background: rgba(44,61,79,.20);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cmfade .3s;
}
@keyframes cmfade { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 380px;
  width: 95%;
  padding: 34px 30px 30px 30px;
  box-shadow: 0 12px 44px rgba(44,61,79,0.12);
  border: 2.5px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 23px;
  animation: modal-pop 0.38s cubic-bezier(.67,-0.26,.49,1.33);
}
@keyframes modal-pop {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.12rem;
  color: var(--primary);
  margin-bottom: 12px;
  margin-top: 0;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
}
.cookie-modal .category-label {
  font-size: 1rem;
  color: #232c3a;
  flex: 1;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 22px; height: 22px;
}
.cookie-modal .category-essential {
  font-weight: 700;
  color: var(--gold);
}
.cookie-modal .cookie-modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal .cookie-accept, .cookie-modal .cookie-reject, .cookie-modal .cookie-settings {
  padding: 8px 22px;
  border-radius: 20px;
  font-size: 1.04rem;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1050px) {
  .container {
    max-width: 1000px;
    padding-left: 14px;
    padding-right: 14px;
  }
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .footer-main, .footer-social, .footer-menu, .footer-branding, .footer-menu {
    flex-basis: 100%;
    align-items: flex-start;
  }
  footer .container {
    gap: 20px;
  }
  .feature-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { max-width: 98vw; }
  .header-container {
    gap: 8px;
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .main-nav {
    display: none;
  }
  .cta-primary {
    margin-left: auto;
    font-size: 1rem;
    padding: 10px 22px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero .container {
    padding-top: 34px; padding-bottom: 18px;
  }
  .content-wrapper {
    gap: 15px;
  }
  .footer-branding p {
    text-align: left;
  }
  .features, .about, .services, .testimonials, .contact, .legal {
    margin-bottom: 38px;
    padding: 28px 0 24px 0;
  }
  .section {
    margin-bottom: 38px;
    padding: 28px 10px;
  }
}
@media (max-width: 600px) {
  html { font-size: 14px; }
  .header-container img,
  .footer-branding img {
    height: 36px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 14px;
  }
  .feature {
    max-width: 100%;
    border-radius: 11px;
    padding: 18px 14px;
  }
  .preistabelle, .awards-list, .insider-tip, .chef-bios, .chef-profiles, .faq, .customization, .barrierefreiheit, .corporate-customer, .map {
    padding: 11px 10px;
    font-size: 0.97rem;
    border-radius: 8px;
  }
  .footer-menu, .footer-main {
    flex-direction: column;
    gap: 7px;
  }
  .footer-social {
    gap: 8px;
  }
  .hero h1 {
    font-size: 1.57rem;
  }
}

/* Flex containers adjust direction on small screens */
@media (max-width: 768px) {
  .feature-grid, .card-container, .content-grid, .features {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    padding: 15px 9px 15px 13px;
    max-width: 100%;
  }
  .hero .content-wrapper {
    padding-left: 4px;
    padding-right: 4px;
  }
}

@media (max-width: 440px) {
  .footer-branding img, .header-container img {
    height: 30px;
  }
}

/* ========== FLEXBOX MANDATORY ALIGNMENTS ========== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========== FOCUS RING FOR ACCESSIBILITY ========== */
a:focus-visible, button:focus-visible, .cta-primary:focus-visible {
  outline: 2.5px solid var(--secondary);
  outline-offset: 1px;
  z-index: 3;
}

/* ========== SCROLLBAR STYLING ========== */
body::-webkit-scrollbar {
  width: 13px;
  background: var(--card-bg);
}
body::-webkit-scrollbar-thumb {
  background: linear-gradient(120deg, #df994e 50%, #d4af37 90%);
  border-radius: 7px;
}
body::-webkit-scrollbar-track {
  background: var(--card-bg);
  border-radius: 7px;
}

/* ========== ANIMATIONS & MICRO-INTERACTIONS ========== */
.cta-primary, .feature, .card, .testimonial-card, .cookie-banner button, .cookie-modal button {
  transition: box-shadow 0.15s, background 0.16s, color 0.16s, border 0.18s, transform 0.19s;
}

/* ========== Z-INDEX CORRECTIONS ========== */
header, .mobile-menu, .cookie-banner, .cookie-modal-backdrop {
  z-index: 1000;
}
.mobile-menu {
  z-index: 1200;
}
.cookie-banner, .cookie-modal-backdrop {
  z-index: 1300;
}

/* ========== TYPOGRAPHY SCALE ========== */
:root {
  --fs-xl: 2.5rem;
  --fs-lg: 2rem;
  --fs-md: 1.3rem;
  --fs-base: 1rem;
  --fs-sm: 0.98rem;
  --fs-xs: 0.89rem;
}

/* ========== PRINT ========== */
@media print {
  header, footer, .cookie-banner, .cookie-modal-backdrop {
    display: none !important;
  }
  body {
    background: #fff;
    color: #1E2530;
  }
  .container, .section, .feature, .card, .testimonial-card {
    box-shadow: none !important;
    background: #fff !important;
    border: none !important;
  }
}
