@charset "UTF-8";
:root {
  /* ── Цвета фона ── */
  --color-dark:    #0A0E1A;   /* основной фон сайта */
  --color-mid:     #0C1220;   /* промежуточный фон секций */
  --color-panel:   #0F1025;   /* сайдбар, панели */
  --color-surface: #1A2332;   /* поверхность карточек / модалок */
  --color-border:  #2A3550;   /* разделители, второстепенные рамки */
  --color-light:   #F0F4F8;   /* основной текст */
  --color-white:   #FFFFFF;

  /* ── Бренд-акцент ── */
  --color-cyan:      #1ABCAC;
  --color-teal:      #0D9E90;
  --color-teal-hover:#0A8880;
  --color-cyan-rgb:  26, 188, 172;  /* для rgba(var(--color-cyan-rgb), 0.x) */

  /* ── Градиенты ── */
  --gradient-brand:       linear-gradient(to right, #1ABCAC, #0D9E90);
  --gradient-brand-hover: linear-gradient(to right, #0D9E90, #0A8880);
  --gradient-teal-dark:   linear-gradient(135deg, #0D9E90, #0A8880);
  --bg-fade-down:         linear-gradient(180deg, #0C1220 0%, #0A0E1A 100%);
  --bg-fade-up:           linear-gradient(180deg, #0A0E1A 0%, #0C1220 100%);

  /* ── Модальные окна ── */
  --modal-overlay-bg:    rgba(0, 0, 0, 0.85);
  --modal-bg:            linear-gradient(135deg, #1A2332 0%, #0F1025 100%);
  --modal-border-radius: 0;
  --close-btn-size:      32px;

  /* ── Шрифты ── */
  --font-body: 'Orbitron', sans-serif;
  --font-text: 'Exo 2', sans-serif;

  /* ── Типографика ── */
  --fs-title:    36px;   /* H1 hero + все H2 секций */
  --fs-subtitle: 20px;   /* H3 карточки, подзаголовки */
  --fs-body:     16px;   /* основной текст */
  --fs-label:    11px;   /* eyebrow, теги, UI-лейблы */
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--color-light);
  background-color: var(--color-dark);
  font-family: var(--font-text);
  letter-spacing: 0.01em;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.button, .link, nav, .header__menu,
.mobile-menu__link, .hero-section__location {
  font-family: var(--font-body);
}

@media screen and (min-width: 768px) {
  body {
    font-size: 18px;
    font-weight: 400;
  }
}
h1, h2, h3, h4, h5, h6, p {
  margin-top: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  display: inline-block;
}

address {
  font-style: normal;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.text-brand {
  color: var(--color-teal);
}

.text-brand-dark {
  color: var(--color-dark);
}

.text-bold {
  font-weight: 600;
}

.text-uppercase {
  text-transform: uppercase;
}

.hero-gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.is-scroll-disabled {
  overflow: hidden;
}

.button {
  display: block;
  padding: 10px 24px;
  color: var(--color-white);
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  background-color: transparent;
  border: 1px solid var(--color-cyan);
  border-radius: 0;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.button:hover {
  color: var(--color-white);
  background: var(--gradient-brand);
  border-color: transparent;
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0px);
}

@media screen and (min-width: 768px) {
  .button {
    padding: 8px 16px;
  }
}
.carousel-button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  fill: var(--color-light);
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid var(--color-light);
  cursor: pointer;
}

.carousel-button:hover {
  background-color: var(--color-light);
  fill: var(--color-dark);
}

.carousel-button.next {
  transform: rotate(180deg);
}

.carousel-button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  fill: var(--color-dark);
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid var(--color-dark);
  cursor: pointer;
}
.carousel-button:hover {
  background-color: var(--color-dark);
  fill: var(--color-light);
}
.carousel-button.next {
  transform: rotate(180deg);
}

.chef-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
@media screen and (min-width: 1200px) {
  .chef-card {
    gap: 30px;
  }
}
.chef-card__photo {
  width: 140px;
  border-radius: 2px 2px 2px 116px;
  box-shadow: -8px 8px 0 0 var(--color-light), -8px 8px 0 2px var(--color-border);
}
@media screen and (min-width: 1200px) {
  .chef-card__photo {
    width: 240px;
    border-radius: 4px 4px 4px 200px;
    box-shadow: -16px 16px 0 0 var(--color-light), -16px 16px 0 2px var(--color-border);
  }
}
.chef-card__title {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .chef-card__title {
    font-size: 40px;
  }
}
.chef-card__text {
  font-size: 14px;
  margin-bottom: 24px;
}
.chef-card__text:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .chef-card__text {
    font-size: 18px;
  }
}

.format-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 444px;
  padding: 24px;
  background-image: linear-gradient(180deg, rgba(10, 14, 26, 0) 40%, rgba(10, 14, 26, 0.7) 70%, var(--color-dark) 100%); /* цвета под твой dark стиль */
  border-radius: 0; /* было 16px */
  overflow: hidden;
  border: 1px solid rgba(0, 191, 255, 0.15); /* тонкая cyan обводка */
}

.format-card__image {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.format-card__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-light);
}

.format-card__text {
  font-size: 14px;
  font-weight: 300;
  color: rgba(240, 244, 248, 0.75);
}

.header__lang-switcher {
  position: relative;
  display: inline-block;
  margin-right: 16px;
}

.header__lang-switcher .header__lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__lang-switcher .header__lang-btn .header__icon-globe {
  width: 28px;
  height: 28px;
  color: rgba(240, 244, 248, 0.85);
  transition: color 0.25s, filter 0.25s;
}

.header__lang-switcher .header__lang-btn:hover .header__icon-globe {
  color: var(--color-teal);
}

.header__lang-switcher .header__lang-list {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-dark);
  border: 1px solid rgba(0, 191, 255, 0.25);
  list-style: none;
  padding: 4px 0;
  margin: 0;
  min-width: 64px;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 12px rgba(0, 191, 255, 0.1);
  border-radius: 0;
}

.header__lang-switcher .header__lang-list.is-open {
  display: block;
}

.header__lang-switcher .header__lang-list li a {
  display: block;
  padding: 7px 12px;
  color: var(--color-light);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}

.header__lang-switcher .header__lang-list li a:hover {
  background: var(--gradient-brand);
  color: var(--color-dark);
}

.input__control {
  padding: 8px 24px;
  width: 100%;
  font-size: 16px;
  line-height: 1.17;
  border: 1px solid var(--color-border);
  border-radius: 0; /* было 8px */
  background-color: transparent;
  color: var(--color-light);
}

.input__control:focus {
  border-color: var(--color-teal);
  outline: none;
}

.input__control::-moz-placeholder {
  color: var(--color-border);
  font-size: 16px;
  line-height: 1.17;
}

.input__control::placeholder {
  color: var(--color-border);
  font-size: 16px;
  line-height: 1.17;
}

.input__control:focus::-moz-placeholder {
  color: var(--color-light);
}

.input__control:focus::placeholder {
  color: var(--color-light);
}

@media screen and (min-width: 768px) {
  .input__control {
    padding: 16px 42px;
  }
}
.link {
  color: rgba(240, 244, 248, 0.85);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: color 0.25s, text-shadow 0.25s;
  position: relative;
}

.link:hover {
  color: var(--color-white);
  text-shadow: 0 0 18px rgba(0, 191, 255, 0.55);
}

.link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  transition: width 0.25s ease;
  box-shadow: 0 0 6px rgba(0, 191, 255, 0.4);
}

.link:hover::after {
  width: 100%;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.pagination__button {
  width: 12px;
  height: 12px;
  padding: 0;
  background-color: var(--color-border);
  border-radius: 50%;
}

.pagination__button--active {
  background-color: var(--color-teal);
}

/* === Quick Menu Specific Styles === */
#quick-menu-container {
  position: fixed;
  right: 0;
  bottom: 100px;
  z-index: 1000;
}
#quick-menu-container #toggle-btn {
  position: relative;
  width: 100px;
  padding: 20px 10px;
  background: var(--modal-bg);
  backdrop-filter: blur(8px);
  color: var(--color-light);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: var(--modal-border-radius) 0 0 var(--modal-border-radius);
  transition: border-radius 0.3s ease-in-out, background-color 0.2s, color 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
}
#quick-menu-container #toggle-btn .dots {
  line-height: 1;
}
#quick-menu-container #toggle-btn:hover {
  background-color: var(--color-teal);
  color: var(--color-light);
}
#quick-menu-container .menu-items {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 100%;
  background: var(--modal-bg);
  border-radius: var(--modal-border-radius) 0 0 0;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}
#quick-menu-container .menu-items li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#quick-menu-container .menu-items li:last-child {
  border-bottom: none;
}
#quick-menu-container .menu-items li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 10px;
  color: var(--color-light);
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
  font-size: 12px;
}
#quick-menu-container .menu-items li a:hover {
  background-color: var(--color-teal);
  color: var(--color-light);
}
#quick-menu-container .menu-items li a i {
  font-size: 24px;
}
#quick-menu-container .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s;
}
#quick-menu-container:not(.is-open) .menu-items {
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
}
#quick-menu-container:not(.is-open) .state-open {
  display: none;
}
#quick-menu-container.is-open .menu-items {
  transform: translateX(0);
  opacity: 1;
}
#quick-menu-container.is-open .state-closed {
  display: none;
}
#quick-menu-container.is-open #toggle-btn {
  border-top-left-radius: 0;
}
#quick-menu-container.is-open .close-btn {
  opacity: 1;
  pointer-events: all;
}

#social-panel,
#contact-panel {
  position: fixed;
  top: 50%;
  right: 0;
  margin-top: 70px;
  transform: translate(110%, -50%);
  transition: transform 0.4s ease-in-out;
  height: auto;
  min-height: 280px;
  border-radius: 4px 0 0 4px;
  box-shadow: -5px 0px 30px rgba(0, 0, 0, 0.4);
  z-index: 950;
  width: 100%;
  max-width: 380px;
  background: var(--modal-bg);
  color: var(--color-light);
  display: flex;
  flex-direction: column;
}

.is-visible#social-panel,
.is-visible#contact-panel {
  transform: translate(0, -50%);
}

#social-panel .close-btn,
#contact-panel .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  font-size: 20px;
}

#contact-panel .panel-body {
  padding: 60px 30px;
  padding-right: 120px;
}

#contact-panel .panel-body h3 {
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 24px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#contact-panel .panel-body .studio-name {
  margin-bottom: 25px;
  color: var(--color-light);
  font-size: 18px;
  font-weight: 600;
}

#contact-panel .panel-body .contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 0;
  text-decoration: none;
  color: var(--color-light);
  background: transparent;
  border-radius: 0;
  transition: all 0.2s ease;
}

#contact-panel .panel-body .contact-info:hover {
  color: var(--color-teal);
}

#contact-panel .panel-body .contact-info:hover .contact-icon {
  transform: scale(1.1);
}

#contact-panel .panel-body .contact-info span {
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
}

#contact-panel .panel-body .contact-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  color: var(--color-teal);
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

#social-panel .panel-body {
  padding: 60px 30px;
  padding-right: 120px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
}

#social-panel .panel-body h3 {
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 24px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#social-panel .panel-body .social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

#social-panel .panel-body .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: var(--color-teal);
  border: 1px solid rgba(0, 191, 255, 0.25);
  border-radius: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

#social-panel .panel-body .social-links a:hover {
  background: var(--gradient-brand);
  border-color: transparent;
  color: var(--color-dark);
  transform: none;
}

.social-panel-icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Quick Menu */
#quick-menu-container {
  position: fixed;
  right: 0;
  bottom: 100px;
  z-index: 1000;
}

#quick-menu-container #toggle-btn {
  position: relative;
  width: 100px;
  padding: 20px 10px;
  background: var(--modal-bg);
  backdrop-filter: blur(8px);
  color: var(--color-light);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid rgba(0, 191, 255, 0.2);
  transition: background 0.2s, color 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
}

#quick-menu-container #toggle-btn:hover {
  background: var(--gradient-brand);
  color: var(--color-light);
}

#quick-menu-container .menu-items {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 100%;
  background: var(--modal-bg);
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

#quick-menu-container .menu-items li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#quick-menu-container .menu-items li:last-child {
  border-bottom: none;
}

#quick-menu-container .menu-items li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 10px;
  color: var(--color-light);
  text-decoration: none;
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 0;
}

#quick-menu-container .menu-items li a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

#quick-menu-container .menu-items li a:hover::before {
  opacity: 1;
}

#quick-menu-container .menu-items li a:hover {
  color: var(--color-white);
}

#quick-menu-container .menu-items li a i {
  font-size: 24px;
}

#quick-menu-container .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s;
  border-radius: 0;
  border: 1px solid var(--color-cyan);
  color: var(--color-cyan);
}

#quick-menu-container:not(.is-open) .menu-items {
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
}

#quick-menu-container:not(.is-open) .state-open {
  display: none;
}

#quick-menu-container.is-open .menu-items {
  transform: translateX(0);
  opacity: 1;
}

#quick-menu-container.is-open .state-closed {
  display: none;
}

#quick-menu-container.is-open #toggle-btn {
  border-top-left-radius: 0;
}

#quick-menu-container.is-open .close-btn {
  opacity: 1;
  pointer-events: all;
}

.cookie-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  cursor: pointer;
  box-shadow: none;
  transition: all 0.3s ease;
  z-index: 9999;
  overflow: visible;
  white-space: nowrap;
  border: none;
  width: 44px; /* Фиксированная ширина = размер иконки */
  height: 44px;
  padding: 2px;
  justify-content: flex-start; /* ИЗМЕНИЛ: всегда слева */
  border-radius: 22px;
}

.cookie-widget:hover {
  background-color: var(--color-panel);
  box-shadow: 0 4px 12px rgba(0, 191, 255, 0.15);
  border: 1px solid var(--color-cyan);
  width: auto;
  padding: 2px 20px 2px 2px;
  overflow: hidden;
}

.widget-text {
  margin-left: 10px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease, max-width 0.3s ease;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.cookie-widget:hover .widget-text {
  opacity: 1;
  max-width: 200px;
}

.cookie-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.cookie-icon svg {
  display: block;
  width: 36px;
  height: 36px;
}

/* === Cookie Modal Specific Styles === */
/* Cookie modal content - уменьшенный max-width */
.cookie-modal-content {
  max-width: 600px;
}

/* Cookie заголовок - градиентный */
.cookie-modal-content h2 {
  font-size: 22px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
}

/* === Cookie Buttons === */
.cookie-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.btn-option {
  flex: 1;
  padding: 10px 20px;
  color: var(--color-light);
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  font-size: 13px;
  text-transform: uppercase;
  background-color: transparent;
  border: 1px solid rgba(240, 244, 248, 0.3);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-option:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
}

/* === Cookie Text === */
.cookie-text-scroll {
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-light);
}

/* === Cookie Options === */
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 0;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.cookie-option:not(.disabled):hover {
  border-color: rgba(0, 191, 255, 0.3);
}
.cookie-option.disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.cookie-option span:first-child {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-light);
}
.cookie-option input[type=checkbox] {
  display: none;
}

/* === Custom Checkbox === */
.checkmark {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(32, 178, 170, 0.5);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  transition: all 0.3s ease;
  font-size: 14px;
  color: transparent;
  flex-shrink: 0;
}
.checkmark.disabled {
  background-color: var(--color-teal);
  border-color: var(--color-teal);
  color: var(--color-dark);
}

/* Когда чекбокс выбран */
.cookie-option input:checked + .checkmark {
  background-color: var(--color-teal);
  border-color: var(--color-teal);
  color: var(--color-dark);
}

/* === Cookie Legal Links === */
.cookie-legal-links {
  text-align: center;
  font-size: 12px;
  flex-shrink: 0;
}
.cookie-legal-links a {
  color: var(--color-teal);
  text-decoration: none;
  transition: color 0.2s;
}
.cookie-legal-links a:hover {
  color: var(--color-teal-hover);
  text-decoration: underline;
}

.separator {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.3);
}

.container {
  width: 100%;
  max-width: 1288px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 20px 0;
}

@media screen and (min-width: 768px) {
  .section {
    padding: 48px 0;
  }
}
.section__title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .section__title {
    font-size: 64px;
    line-height: 1.3;
  }
}
.section__title--centered {
  text-align: center;
}

/* Advantages */
.advantages-section {
  padding: 40px 0 20px;
}

@media screen and (min-width: 768px) {
  .advantages-section {
    padding: 16px 0;
  }
}
.advantages-section__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 40px;
  background-color: #A8C4C8;
  border-radius: 24px;
}

@media screen and (min-width: 768px) {
  .advantages-section__list {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    background-color: transparent;
    padding: 0;
  }
}
.advantages-section__item {
  font-size: 14px;
  font-weight: 300;
}

@media screen and (min-width: 768px) {
  .advantages-section__item {
    color: var(--color-light);
    font-size: 20px;
  }
}
/* Chefs */
.chefs-section__title {
  position: relative;
  margin: 0 auto 24px;
}

@media screen and (min-width: 1280px) {
  .chefs-section__title {
    margin-bottom: 80px;
  }
}
.chefs-section__list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 30px;
}

@media screen and (min-width: 768px) {
  .chefs-section__list {
    flex-direction: row;
    gap: 40px 30px;
  }
  .chefs-section__item {
    flex-basis: calc((100% - 30px) / 2);
  }
}
/* Formats */
.formats-section__slider {
  display: flex;
  align-items: center;
  gap: 32px;
}

.formats-section__container {
  overflow: hidden;
}

.formats-section__list {
  margin-bottom: 32px;
}

.formats-section__button {
  display: none;
}

@media screen and (min-width: 768px) {
  .formats-section__button {
    display: flex;
  }
}
/* Traditions */
.traditions-section {
  padding-top: 40px;
}

@media screen and (min-width: 768px) {
  .traditions-section {
    padding-top: 96px;
  }
}
.traditions-section__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.traditions-section__content {
  max-width: 710px;
}

.traditions-section__title {
  margin-bottom: 42px;
}

.traditions-section__text--limited {
  max-width: 340px;
}

.traditions-section__image {
  display: none;
  border-radius: 400px 400px 0 0;
}

@media screen and (min-width: 768px) {
  .traditions-section__image {
    display: block;
  }
}
/* Contact */
.contact-section {
  padding-bottom: 0;
}

@media screen and (min-width: 768px) {
  .contact-section {
    padding-bottom: 96px;
  }
}
.contact-section__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media screen and (min-width: 768px) {
  .contact-section__container {
    flex-direction: row;
    gap: 32px;
  }
}
.contact-section__title {
  margin-bottom: 16px;
}

.contact-section__form-field {
  margin-bottom: 24px;
}

.contact-section__button {
  display: block;
  margin: 0 auto 16px;
}

.contact-section__map {
  flex-shrink: 0;
  height: 176px;
  margin: 0 -24px;
  border-radius: 16px;
  border: none;
}

@media screen and (min-width: 768px) {
  .contact-section__map {
    margin: auto;
    width: 320px;
    height: 500px;
  }
}
@media screen and (min-width: 1280px) {
  .contact-section__map {
    width: 600px;
    height: 595px;
  }
}
.advantages-section {
  padding: 40px 0 20px;
}
@media screen and (min-width: 768px) {
  .advantages-section {
    padding: 16px 0;
    background-color: var(--color-teal);
  }
}
.advantages-section__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 40px;
  background-color: rgba(26,188,172,0.15);
  border-radius: 24px;
}
@media screen and (min-width: 768px) {
  .advantages-section__list {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    background-color: transparent;
    padding: 0;
  }
}
.advantages-section__item {
  font-size: 14px;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .advantages-section__item {
    color: var(--color-light);
    font-size: 20px;
  }
}

.chefs-section__title {
  position: relative;
  margin: 0 auto 24px;
}
@media screen and (min-width: 1280px) {
  .chefs-section__title {
    margin-bottom: 80px;
  }
}
.chefs-section__title::before, .chefs-section__title::after {
  display: none;
  position: absolute;
  bottom: 24px;
  width: 352px;
  border: 2px solid rgba(26,188,172,0.15);
  content: "";
}
@media screen and (min-width: 1280px) {
  .chefs-section__title::before, .chefs-section__title::after {
    display: block;
  }
}
.chefs-section__title::before {
  left: 0;
}
.chefs-section__title::after {
  right: 0;
}
.chefs-section__list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .chefs-section__list {
    flex-direction: row;
    gap: 40px 30px;
  }
}
@media screen and (min-width: 768px) {
  .chefs-section__item {
    flex-basis: calc((100% - 30px) / 2);
  }
}

.contact-section {
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .contact-section {
    padding-bottom: 96px;
  }
}
.contact-section__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .contact-section__container {
    flex-direction: row;
    gap: 32px;
  }
}
.contact-section__title {
  margin-bottom: 16px;
}
.contact-section__form-field {
  margin-bottom: 24px;
}
.contact-section__button {
  display: block;
  margin: 0 auto 16px;
}
.contact-section__map {
  flex-shrink: 0;
  height: 176px;
  margin: 0 -24px;
  border-radius: 16px;
  border: none;
}
@media screen and (min-width: 768px) {
  .contact-section__map {
    margin: auto;
    width: 320px;
    height: 500px;
  }
}
@media screen and (min-width: 1280px) {
  .contact-section__map {
    width: 600px;
    height: 595px;
  }
}

.container {
  width: 100%;
  max-width: 1288px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer {
  padding: 32px 0;
  position: relative;
  background-color: var(--color-dark);
  background-size: cover;
  background-position: center;
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .footer__container {
    flex-direction: row;
  }
}
.footer__nav,
.footer__address {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .footer__nav,
  .footer__address {
    flex-direction: row;
    flex-basis: 50%;
    text-align: left;
  }
}
.footer__logo {
  flex-grow: 1;
}

.footer__menu {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 16px;
}

.footer__address-list,
.footer__address-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 16px;
}

.footer__address-link {
  color: var(--color-light);
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
}

.footer__address-link:hover {
  color: var(--color-teal);
}

.footer__socials {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .footer__socials {
    justify-content: flex-start;
  }
}
.footer__socials-icon {
  display: block;
  color: var(--color-light);
  transition: color 0.3s, transform 0.3s;
}

.footer__socials-icon:hover {
  color: var(--color-teal);
  transform: scale(1.1);
}

.footer__address-copyright {
  color: var(--color-border);
  font-size: 14px;
}

.form-terms {
  margin: 0 auto;
  max-width: 220px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.form-terms__link {
  color: var(--color-dark);
  text-underline-offset: 2px;
}

.formats-section__slider {
  display: flex;
  align-items: center;
  gap: 32px;
}
.formats-section__container {
  overflow: hidden;
}
.formats-section__list {
  margin-bottom: 32px;
}
.formats-section__button {
  display: none;
}
@media screen and (min-width: 768px) {
  .formats-section__button {
    display: flex;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(10, 14, 26, 0.94);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

@media screen and (min-width: 1280px) {
  .header {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.header__container {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 70px;
}

.header__nav {
  display: flex;
  align-items: center;
  flex-grow: 1;
  gap: 40px;
}

.header__logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

@media screen and (min-width: 1280px) {
  .header__logo {
    margin-left: 32px;
  }
}

.header__logo img,
.footer__logo img {
  width: auto;
  height: 100px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(1) sepia(1) saturate(3) hue-rotate(125deg) brightness(0.84);
}

.header__menu {
  display: none;
}

@media screen and (min-width: 768px) {
  .header__menu {
    display: flex;
    gap: 64px;
    flex-grow: 1;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 1280px) {
  .header__menu {
    justify-content: center;
  }
}
.header__button {
  display: none;
  background: var(--gradient-brand);
  border: 1px solid rgba(26, 188, 172, 0.6);
  color: var(--color-dark);
  font-weight: 700;
  white-space: nowrap;
  font-size: 11px;
  padding: 11px 28px;
  clip-path: polygon(4% 0%, 96% 0%, 100% 5%, 100% 95%, 96% 100%, 4% 100%, 0% 95%, 0% 5%);
  transition: all 0.25s ease;
}

.header__button:hover {
  background: var(--gradient-brand-hover);
  border-color: transparent;
  color: var(--color-dark);
  box-shadow: 0 0 22px rgba(26, 188, 172, 0.60);
}

@media screen and (min-width: 1280px) {
  .header__button {
    display: block;
  }
}
.header__burger {
  width: 24px;
  height: 24px;
  padding: 0;
  background-color: transparent;
  border: none;
  fill: var(--color-light);
}

@media screen and (min-width: 768px) {
  .header__burger {
    display: none;
  }
}
.hero-section {
  position: relative;
  padding: 80px 0 60px;
  background: var(--color-dark);
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .hero-section {
    padding: 120px 0 80px;
  }
}
.hero-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
  opacity: 1;
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
  padding-top: 20px;
  padding-left: 96px;
}

@media screen and (min-width: 1340px) {
  .hero-section .container {
    padding-left: 48px;
  }
}

.hero-section__location {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 244, 248, 0.55);
  margin-bottom: 20px;
  margin-left: 0;
  padding-left: 12px;
  border-left: 2px solid var(--color-cyan);
}

.hero-section__title {
  margin-bottom: 32px;
  margin-top: 12px;
  color: var(--color-light);
  font-family: var(--font-text);
  font-size: clamp(1.6rem, 0.8rem + 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-align: left;
}

@media screen and (min-width: 1280px) {
  .hero-section__title {
    font-size: clamp(2rem, 1rem + 2.5vw, 3.2rem);
    margin-bottom: 40px;
  }
}
.hero-section__subtitle {
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(240, 244, 248, 0.68);
  max-width: 500px;
  margin-bottom: 48px;
}

@media screen and (min-width: 768px) {
  .hero-section__subtitle {
    font-size: 18px;
  }
}
.hero-section__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.hero-section__button.button {
  background: var(--gradient-brand);
  border: 1px solid rgba(26, 188, 172, 0.6);
  color: var(--color-dark);
  font-weight: 700;
  padding: 14px 40px;
  clip-path: polygon(4% 0%, 96% 0%, 100% 5%, 100% 95%, 96% 100%, 4% 100%, 0% 95%, 0% 5%);
  transition: all 0.25s ease;
}

.hero-section__button.button:hover {
  background: var(--gradient-brand-hover);
  border-color: rgba(26, 188, 172, 0.9);
  transform: translateY(-2px);
  color: var(--color-dark);
}

.hero-section__button-ghost {
  display: block;
  padding: 14px 40px;
  color: rgba(240, 244, 248, 0.85);
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  background-color: rgba(26, 188, 172, 0.06);
  border: 1px solid rgba(26, 188, 172, 0.55);
  cursor: pointer;
  clip-path: polygon(4% 0%, 96% 0%, 100% 5%, 100% 95%, 96% 100%, 4% 100%, 0% 95%, 0% 5%);
  transition: all 0.25s ease;
}

.hero-section__button-ghost:hover {
  background-color: rgba(26, 188, 172, 0.13);
  border-color: rgba(26, 188, 172, 0.80);
  color: var(--color-cyan);
}

@media screen and (min-width: 768px) {
  .hero-section__button {
    padding: 14px 40px;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 24px;
  background: linear-gradient(160deg, var(--color-mid) 0%, var(--color-dark) 100%);
  border-left: 1px solid rgba(0, 191, 255, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s;
}
.mobile-menu.is-open {
  transform: translateX(0);
}
.mobile-menu__btn-close {
  position: absolute;
  top: 16px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  fill: transparent;
  stroke: var(--color-light);
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: stroke 0.2s;
}
.mobile-menu__btn-close:hover {
  stroke: var(--color-teal);
}
.mobile-menu__logo {
  margin-bottom: 48px;
}
.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu__link {
  color: var(--color-light);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: block;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu__link:hover {
  color: var(--color-teal);
  padding-left: 8px;
}

.modal-overlay,
.legal-modal,
.cookie-modal-overlay,
.modal-input {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--modal-overlay-bg);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.modal-overlay:not(.is-hidden),
.legal-modal:not(.is-hidden),
.cookie-modal-overlay:not(.is-hidden),
.modal-input:not(.is-hidden) {
  display: flex;
}

.modal-content,
.legal-modal-content,
.cookie-modal-content,
.modal-input__content {
  background: var(--modal-bg);
  border-radius: var(--modal-border-radius);
  padding: 40px 30px;
  max-width: 800px;
  width: 90%;
  max-height: 85vh;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  color: var(--color-light);
  display: flex;
  flex-direction: column;
}

.modal-title,
.modal-input__title,
.legal-modal-content h2,
.cookie-modal-content h2 {
  color: var(--color-light);
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
  padding-right: 40px;
  flex-shrink: 0;
}

.modal-close-btn,
.close-legal,
.close-btn,
.modal-input__btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: 1px solid var(--color-teal);
  border-radius: 0;
  width: var(--close-btn-size);
  height: var(--close-btn-size);
  font-size: 24px;
  font-weight: 300;
  color: var(--color-teal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.3s ease;
  z-index: 10;
  padding: 0;
  margin: 0;
}

.modal-close-btn:hover,
.close-legal:hover,
.close-btn:hover,
.modal-input__btn-close:hover {
  background: var(--gradient-brand);
  color: var(--color-light);
  transform: rotate(90deg);
}

.modal-scrollable,
.legal-text,
.cookie-scrollable-content,
.modal-input__scrollable-content {
  overflow-y: auto;
  padding-right: 15px;
  margin-right: -10px;
  flex: 1;
  margin-bottom: 20px;
}

.modal-scrollable::-webkit-scrollbar,
.legal-text::-webkit-scrollbar,
.cookie-scrollable-content::-webkit-scrollbar,
.modal-input__scrollable-content::-webkit-scrollbar {
  width: 6px;
}

.modal-scrollable::-webkit-scrollbar-track,
.legal-text::-webkit-scrollbar-track,
.cookie-scrollable-content::-webkit-scrollbar-track,
.modal-input__scrollable-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin: 10px 0;
}

.modal-scrollable::-webkit-scrollbar-thumb,
.legal-text::-webkit-scrollbar-thumb,
.cookie-scrollable-content::-webkit-scrollbar-thumb,
.modal-input__scrollable-content::-webkit-scrollbar-thumb {
  background: var(--color-teal);
  border-radius: 10px;
}

.modal-scrollable::-webkit-scrollbar-thumb:hover,
.legal-text::-webkit-scrollbar-thumb:hover,
.cookie-scrollable-content::-webkit-scrollbar-thumb:hover,
.modal-input__scrollable-content::-webkit-scrollbar-thumb:hover {
  background: var(--color-teal-hover);
}

.modal-input__form-field input,
.modal-input__form-field textarea,
.modal-input__form-field select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-light);
  border-radius: 0; /* было 22px */
  padding: 12px 16px;
  width: 100%;
  transition: all 0.3s ease;
}

.modal-input__form-field input:focus,
.modal-input__form-field textarea:focus,
.modal-input__form-field select:focus {
  border-color: var(--color-teal);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.modal-input__form-field input::-moz-placeholder, .modal-input__form-field textarea::-moz-placeholder, .modal-input__form-field select::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.modal-input__form-field input::placeholder,
.modal-input__form-field textarea::placeholder,
.modal-input__form-field select::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.modal-input__form-field label {
  color: var(--color-light);
  margin-bottom: 8px;
  display: block;
  font-size: 14px;
}

.traditions-section {
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .traditions-section {
    padding-top: 96px;
  }
}
.traditions-section__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.traditions-section__content {
  max-width: 710px;
}
.traditions-section__title {
  margin-bottom: 42px;
}
.traditions-section__text--limited {
  max-width: 340px;
}
.traditions-section__image {
  display: none;
  border-radius: 400px 400px 0px 0px;
}
@media screen and (min-width: 768px) {
  .traditions-section__image {
    display: block;
  }
}

/* Legal modal */
.legal-modal-content {
  max-width: 800px;
}

.legal-text h3 {
  color: var(--color-teal);
  margin-top: 25px;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-text);
}

.legal-text h4 {
  color: var(--color-light);
  margin-top: 18px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
  font-family: var(--font-text);
}

.legal-text p,
.legal-text ul {
  font-family: var(--font-text);
  color: var(--color-light);
  line-height: 1.7;
  margin-bottom: 15px;
  opacity: 0.85;
  font-size: 15px;
}

.legal-text ul {
  list-style: none;
  padding-left: 8px;
}

.legal-text ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}

.legal-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-teal);
  box-shadow: 0 0 6px rgba(32, 178, 170, 0.4);
}

.legal-text a {
  color: var(--color-teal);
  text-decoration: none;
  transition: all 0.2s ease;
}

.legal-text a:hover {
  color: var(--color-teal-hover);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .legal-text h3 {
    font-size: 18px;
    margin-top: 20px;
  }
  .legal-text h4 {
    font-size: 15px;
  }
  .legal-text p, .legal-text ul {
    font-size: 13px;
  }
  .legal-text {
    padding-right: 10px;
  }
}

/* ═══════════════════════════════════════════════════
   SECTION REDESIGN — idnex dark teal style
   ═══════════════════════════════════════════════════ */

/* ── Section backgrounds & transitions ── */
.traditions-section {
  background: var(--bg-fade-up);
  border-top: 1px solid rgba(26,188,172,0.10);
}
.chefs-section {
  background: var(--color-mid);
  border-top: 1px solid rgba(26,188,172,0.08);
}
.formats-section {
  background: var(--bg-fade-down);
  border-top: 1px solid rgba(26,188,172,0.10);
}
.contact-section {
  background: var(--color-dark);
  border-top: 1px solid rgba(26,188,172,0.10);
}
.footer {
  background: #07090F;
  border-top: 1px solid rgba(26,188,172,0.12);
}

/* ── Section eyebrow label ── */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-cyan);
  padding-left: 12px;
  border-left: 2px solid var(--color-cyan);
  margin-bottom: 16px;
}
.section-eyebrow--center {
  display: block;
  text-align: center;
  border-left: none;
  padding-left: 0;
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(26,188,172,0.4);
  width: fit-content;
  margin: 0 auto 16px;
}

/* ── Section title sizing ── */
.section__title {
  font-family: var(--font-body);
  color: var(--color-light);
}

/* ── Traditions / Über uns ── */
.traditions-section__container {
  align-items: center;
}
.traditions-section__content p {
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(240,244,248,0.72);
  margin-bottom: 20px;
}
.traditions-section__content p:first-of-type {
  color: rgba(240,244,248,0.82);
}

.traditions-section__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  flex-shrink: 0;
  min-width: 260px;
}
@media screen and (min-width: 768px) {
  .traditions-section__stats {
    min-width: 300px;
  }
}
.stat-item {
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  background: rgba(26,188,172,0.04);
  border: 1px solid rgba(26,188,172,0.12);
  transition: border-color 0.2s, background 0.2s;
}
.stat-item:hover {
  background: rgba(26,188,172,0.08);
  border-color: rgba(26,188,172,0.28);
}
.stat-number {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-text);
  font-size: 11px;
  font-weight: 300;
  color: rgba(240,244,248,0.50);
  letter-spacing: 0.05em;
}

/* ── Chef cards / Team ── */
.chef-card__avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-dark);
  background: var(--gradient-brand);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}
@media screen and (min-width: 1200px) {
  .chef-card__avatar {
    width: 110px;
    height: 110px;
    font-size: 22px;
  }
}
.chef-card__avatar--net {
  background: var(--gradient-teal-dark);
}
.chef-card__role {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 8px;
}
.chef-card__title {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-light);
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .chef-card__title {
    font-size: 30px;
  }
}
.chef-card__text {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(240,244,248,0.68);
  margin-bottom: 16px;
}
.chef-card__text:last-child { margin-bottom: 0; }

/* ── Format / Service cards ── */
.formats-section__lead {
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 300;
  color: rgba(240,244,248,0.60);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
.format-card--service {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 444px;
  padding: 32px 28px;
  background: rgba(10,14,26,0.85);
  border: 1px solid rgba(26,188,172,0.16);
  border-top: 2px solid rgba(26,188,172,0.35);
  transition: border-color 0.25s, background 0.25s;
}
.format-card--service:hover {
  background: rgba(12,18,32,0.95);
  border-color: rgba(26,188,172,0.40);
  border-top-color: var(--color-cyan);
}
.format-card--featured {
  border-color: rgba(26,188,172,0.40);
  border-top-color: var(--color-cyan);
  background: rgba(26,188,172,0.05);
}
.format-card--service .format-card__image { display: none; }
.service-num {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 16px;
}
.format-card--service .format-card__title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-light);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-price {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--color-teal);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(26,188,172,0.15);
}
.format-card--service .format-card__text {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(240,244,248,0.65);
}
.format-card--service .format-card__text p { margin-bottom: 10px; }
.service-note {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: rgba(26,188,172,0.70);
  font-style: italic;
}

/* ── Contact info panel ── */
.contact-section__info {
  flex: 1;
  padding-top: 8px;
}
.contact-info__title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(26,188,172,0.20);
}
.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-info__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-info__label {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,244,248,0.40);
}
.contact-info__value {
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 300;
  color: rgba(240,244,248,0.85);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}
.contact-info__value:hover { color: var(--color-cyan); }
.contact-section__lead {
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 300;
  color: rgba(240,244,248,0.60);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ── Footer additions ── */
.footer__tagline {
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 300;
  color: rgba(240,244,248,0.35);
  line-height: 1.6;
  margin-top: 10px;
}
.footer__address-link--legal {
  font-size: 13px;
  color: rgba(240,244,248,0.45);
  transition: color 0.2s;
}
.footer__address-link--legal:hover { color: var(--color-cyan); }
.footer__address-copyright {
  font-family: var(--font-text);
  font-size: 12px;
  color: rgba(240,244,248,0.25);
}

/* ── Input fields dark theme ── */
.input__control {
  background: rgba(26,188,172,0.04);
  border: 1px solid rgba(26,188,172,0.20);
  color: var(--color-light);
  transition: border-color 0.2s, background 0.2s;
}
.input__control::placeholder { color: rgba(240,244,248,0.35); }
.input__control:focus {
  outline: none;
  background: rgba(26,188,172,0.07);
  border-color: rgba(26,188,172,0.55);
}

/* ── Responsive additions ── */
@media screen and (max-width: 767px) {
  .traditions-section__container {
    flex-direction: column;
  }
  .traditions-section__stats {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }
  .contact-section__info {
    padding-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .traditions-section__stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* ═══════════════════════════════════════════════════
   MOBILE FIXES — v2
   ═══════════════════════════════════════════════════ */

/* 1. Hide hamburger everywhere — sidebar handles mobile nav */
.header__burger {
  display: none !important;
}

/* 2. Hero mobile: reduce bg image opacity so dark base shows through */
@media screen and (max-width: 767px) {
  .hero-section__bg {
    opacity: 0.30;
    object-position: center center;
  }
  .hero-section .container {
    padding-left: 16px;
  }
}

/* 3. Section backgrounds adjusted for new order (formats now 2nd, chefs 3rd) */
.formats-section {
  background: var(--color-mid);
  border-top: 1px solid rgba(26,188,172,0.15);
}
.chefs-section {
  background: var(--bg-fade-down);
  border-top: 1px solid rgba(26,188,172,0.12);
}
/* Stronger borders on all sections */
.traditions-section {
  border-top: 1px solid rgba(26,188,172,0.18);
}
.contact-section {
  border-top: 1px solid rgba(26,188,172,0.18);
}

/* 4. Show carousel arrows on mobile */
.formats-section__button {
  display: flex !important;
}

/* 5. Footer: LinkedIn icon teal */
.footer__socials-icon {
  color: var(--color-cyan);
  fill: var(--color-cyan);
}
.footer__socials-icon:hover {
  color: var(--color-teal);
  fill: var(--color-teal);
}

/* 6. Footer: clearly darker + stronger top border */
.footer {
  background: #040608;
  border-top: 2px solid rgba(26,188,172,0.22);
}

/* 7. Sidebar nav links */
.menu-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--color-light);
  text-decoration: none;
  transition: color 0.2s;
}
.menu-nav-link:hover {
  color: var(--color-cyan);
}
.menu-nav-link span {
  display: block;
}

/* ═══════════════════════════════════════════════════
   FIXES v3 — all remaining items
   ═══════════════════════════════════════════════════ */

/* 1. Header logo: fit inside 70px container */
.header__logo img {
  height: 58px;
  margin-top: 4px;
}

/* 2. Section alternating backgrounds */
.traditions-section {
  background: #0E1828;
  border-top: 1px solid rgba(26,188,172,0.18);
}
.formats-section {
  background: var(--color-dark);
  border-top: 1px solid rgba(26,188,172,0.18);
}
.chefs-section {
  background: #0E1828;
  border-top: 1px solid rgba(26,188,172,0.15);
}
.contact-section {
  background: var(--color-dark);
  border-top: 1px solid rgba(26,188,172,0.18);
}

/* 3. Contact section: hero-style button */
.contact-section__button {
  display: block;
  width: 100%;
  background: var(--gradient-brand);
  border: 1px solid rgba(26,188,172,0.6);
  color: var(--color-dark) !important;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 40px;
  clip-path: polygon(4% 0%, 96% 0%, 100% 5%, 100% 95%, 96% 100%, 4% 100%, 0% 95%, 0% 5%);
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: 16px;
}
.contact-section__button:hover {
  background: var(--gradient-brand-hover);
  transform: translateY(-2px);
}

/* 4. Form-terms: left align, single line, underline link */
.form-terms {
  max-width: 100%;
  text-align: left;
  margin-left: 0;
  font-size: 11px;
  color: rgba(240,244,248,0.50);
}
.form-terms__link {
  color: rgba(240,244,248,0.70);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(26,188,172,0.55);
  transition: color 0.2s, text-decoration-color 0.2s;
}
.form-terms__link:hover {
  color: var(--color-cyan);
  text-decoration-color: var(--color-cyan);
}

/* 5. Sidebar menu: teal separators + smaller text */
#quick-menu-container .menu-items li {
  border-bottom: 1px solid rgba(26,188,172,0.15);
}
#quick-menu-container .menu-items li:last-child {
  border-bottom: none;
}
#quick-menu-container .menu-items li a {
  font-size: 9px;
  letter-spacing: 0.14em;
  padding: 14px 10px;
}
.menu-nav-link {
  font-size: 9px;
  letter-spacing: 0.14em;
}

/* 6. Combined contact-social panel */
#contact-social-panel {
  position: fixed;
  top: 50%;
  right: 0;
  margin-top: 70px;
  transform: translate(110%, -50%);
  transition: transform 0.4s ease-in-out;
  height: auto;
  min-height: 320px;
  border-radius: 4px 0 0 4px;
  box-shadow: -5px 0 30px rgba(0,0,0,0.5);
  z-index: 950;
  width: 100%;
  max-width: 320px;
  background: var(--modal-bg);
  color: var(--color-light);
  display: flex;
  flex-direction: column;
}
.is-visible#contact-social-panel {
  transform: translate(0, -50%);
}
.panel-social-divider {
  height: 1px;
  background: rgba(26,188,172,0.18);
  margin: 20px 0 16px;
}
#contact-social-panel .panel-body {
  padding: 50px 24px 40px;
  padding-right: 90px;
}
#contact-social-panel .panel-body h3 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 20px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#contact-social-panel .studio-name {
  margin-bottom: 20px;
  color: var(--color-light);
  font-size: 16px;
  font-weight: 600;
}
#contact-social-panel .contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  text-decoration: none;
  color: var(--color-light);
  transition: color 0.2s ease;
}
#contact-social-panel .contact-info:hover {
  color: var(--color-teal);
}
#contact-social-panel .contact-info span {
  font-size: 14px;
  white-space: nowrap;
}
#contact-social-panel .contact-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: var(--color-teal);
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}
#contact-social-panel .social-links {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
#contact-social-panel .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-teal);
  border: 1px solid rgba(26,188,172,0.25);
  transition: background 0.2s, color 0.2s;
}
#contact-social-panel .social-links a:hover {
  background: var(--gradient-brand);
  color: var(--color-dark);
}
#contact-social-panel .social-panel-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* 7. Footer menu: same hover as header .link */
.footer__menu .link {
  color: rgba(240,244,248,0.75);
}
.footer__menu .link:hover {
  color: var(--color-white);
  text-shadow: 0 0 18px rgba(0,191,255,0.55);
}
.footer__menu .link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  transition: width 0.25s ease;
}
.footer__menu .link:hover::after {
  width: 100%;
}

/* 8. Swiper: wider cards — show 1.15 on mobile, 2.2 on tablet */
@media screen and (max-width: 767px) {
  .formats-section__slider {
    gap: 8px;
  }
}

/* 9. Section titles left-aligned (like Über uns) */
.section__title--centered {
  text-align: left;
}
.chefs-section__list {
  justify-content: flex-start;
}

/* 10. Hero ghost button as <a> */
a.hero-section__button-ghost {
  display: inline-block;
  text-decoration: none;
}

/* ═══════════════════════════════════════════════════
   FIXES v4
   ═══════════════════════════════════════════════════ */

/* 1. Contact section — more breathing room before footer */
.contact-section {
  padding-bottom: 96px;
}
@media screen and (min-width: 768px) {
  .contact-section {
    padding-bottom: 120px;
  }
}

/* 2a. Format cards — teal-tinted background (like Flagship) */
.format-card--service {
  background: rgba(26,188,172,0.04);
  border: 1px solid rgba(26,188,172,0.22);
  border-top: 2px solid rgba(26,188,172,0.45);
}
.format-card--service:hover {
  background: rgba(26,188,172,0.08);
  border-color: rgba(26,188,172,0.45);
  border-top-color: var(--color-cyan);
}
.format-card--featured {
  background: rgba(26,188,172,0.10);
  border-color: rgba(26,188,172,0.55);
  border-top-color: var(--color-cyan);
  box-shadow: 0 0 32px rgba(26,188,172,0.09);
}

/* 2b. Carousel: next button — large teal gradient arrow */
.carousel-button {
  border-radius: 0;
  border-color: rgba(26,188,172,0.40);
  fill: var(--color-cyan);
}
.carousel-button:hover {
  background-color: rgba(26,188,172,0.12);
  fill: var(--color-cyan);
}
.carousel-button.next {
  width: 56px;
  height: 56px;
  background: var(--gradient-brand);
  border: none;
  fill: var(--color-dark);
  clip-path: polygon(4% 0%, 96% 0%, 100% 5%, 100% 95%, 96% 100%, 4% 100%, 0% 95%, 0% 5%);
  /* stays rotated 180° via existing rule */
}
.carousel-button.next:hover {
  background: var(--gradient-brand-hover);
  fill: var(--color-dark);
}
.carousel-button.prev {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(26,188,172,0.35);
  fill: rgba(26,188,172,0.70);
}
.carousel-button.prev:hover {
  background: rgba(26,188,172,0.10);
  fill: var(--color-cyan);
  border-color: var(--color-cyan);
}
.carousel-button svg {
  width: 20px;
  height: 20px;
}

/* 3. Section eyebrow — Orbitron font, gray text, teal bar stays */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.20em;
  color: rgba(240,244,248,0.50);
}

/* 4. All modal close buttons — unified cyan style */
.modal-close-btn,
.close-legal,
.close-btn,
.modal-input__btn-close {
  border-color: var(--color-cyan);
  color: var(--color-cyan);
}
.modal-close-btn:hover,
.close-legal:hover,
.close-btn:hover,
.modal-input__btn-close:hover {
  background: var(--gradient-brand);
  border-color: transparent;
  color: var(--color-dark);
  transform: rotate(90deg);
}

/* ═══════════════════════════════════════════════════
   FIXES v5
   ═══════════════════════════════════════════════════ */

/* 1. Contact section — equal padding for all sections */
.contact-section {
  padding-top: 48px;
  padding-bottom: 48px;
}
@media screen and (min-width: 768px) {
  .contact-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

/* Datenschutz link — teal, no underline */
.form-terms__link {
  color: var(--color-cyan) !important;
  text-decoration: none !important;
}
.form-terms__link:hover {
  color: var(--color-teal) !important;
}

/* 2. Format cards — same teal tint as Flagship */
.format-card--service {
  background: rgba(26,188,172,0.10) !important;
  border: 1px solid rgba(26,188,172,0.28) !important;
  border-top: 2px solid rgba(26,188,172,0.70) !important;
}
.format-card--service:hover {
  background: rgba(26,188,172,0.15) !important;
}
.format-card--featured {
  background: rgba(26,188,172,0.17) !important;
  border-color: rgba(26,188,172,0.55) !important;
}

/* Carousel buttons — both equal, small ghost style (like prev) */
.carousel-button.prev,
.carousel-button.next {
  width: 36px !important;
  height: 36px !important;
  background: transparent !important;
  border: 1px solid rgba(26,188,172,0.40) !important;
  border-radius: 0;
  fill: rgba(26,188,172,0.80) !important;
  clip-path: none !important;
}
.carousel-button.prev:hover,
.carousel-button.next:hover {
  background: rgba(26,188,172,0.12) !important;
  fill: var(--color-cyan) !important;
  border-color: var(--color-cyan) !important;
}
/* next keeps arrow direction */
.carousel-button.next {
  transform: rotate(180deg) !important;
}

/* 3. Section eyebrow — force Orbitron (overrides .traditions-section__content p) */
p.section-eyebrow,
.section-eyebrow {
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  letter-spacing: 0.18em !important;
}

/* 4. Cookie main buttons — ghost button style */
.btn-option {
  background-color: rgba(26,188,172,0.06) !important;
  border: 1px solid rgba(26,188,172,0.55) !important;
  color: rgba(240,244,248,0.85) !important;
  clip-path: polygon(4% 0%, 96% 0%, 100% 5%, 100% 95%, 96% 100%, 4% 100%, 0% 95%, 0% 5%);
  font-family: var(--font-body) !important;
  font-size: 9px !important;
  letter-spacing: 0.10em !important;
  padding: 12px 16px !important;
  border-radius: 0 !important;
  text-transform: uppercase !important;
  transition: all 0.25s ease !important;
}
.btn-option:hover {
  background-color: rgba(26,188,172,0.13) !important;
  border-color: rgba(26,188,172,0.80) !important;
  color: var(--color-cyan) !important;
}

/* 5. Close button rotation on click — .is-rotating class added by JS */
.is-rotating {
  transform: rotate(90deg) !important;
  background: var(--gradient-brand) !important;
  color: var(--color-dark) !important;
  border-color: transparent !important;
  transition: transform 0.28s ease, background 0.28s ease !important;
}
/* Active state fallback for touch (mobile) */
.close-legal:active,
.close-btn:active,
.modal-input__btn-close:active {
  transform: rotate(90deg);
  background: var(--gradient-brand);
  color: var(--color-dark);
}

/* ═══════════════════════════════════════════════════
   FIXES v6
   ═══════════════════════════════════════════════════ */

/* 1. Contact panel — bottom-anchored so close btn always sits above sidebar items */
#contact-social-panel {
  top: auto !important;
  bottom: 100px !important;
  right: 0 !important;
  margin-top: 0 !important;
  transform: translate(110%, 0) !important;
  z-index: 950 !important;
}
.is-visible#contact-social-panel {
  transform: translate(0, 0) !important;
}
/* Close button on the right */
#contact-social-panel > .close-btn {
  right: 15px !important;
  left: auto !important;
}
#contact-social-panel .panel-body {
  padding: 20px 90px 32px 24px !important;
}
/* LinkedIn row */
.contact-info--linkedin {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(26,188,172,0.15);
}
/* SVG <use> shadow: set color so fill="currentColor" rect picks up teal */
.contact-info--linkedin svg {
  color: var(--color-teal) !important;
}

/* 2. Section eyebrow — force gray color even inside .traditions-section__content */
p.section-eyebrow,
.section-eyebrow {
  color: rgba(240,244,248,0.50) !important;
}

/* 3. Cookie close button — transition for rotation animation */
#close-modal.close-btn {
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease !important;
}

/* 4. Flagship card (#5) — same color as all other service cards */
.format-card--featured {
  background: rgba(26,188,172,0.10) !important;
  border: 1px solid rgba(26,188,172,0.28) !important;
  border-top: 2px solid rgba(26,188,172,0.70) !important;
  box-shadow: none !important;
}
.format-card--featured:hover {
  background: rgba(26,188,172,0.15) !important;
}

/* 5. Form inputs — unified teal tint matching cards + stat-items */
.input__control {
  background: rgba(26,188,172,0.06) !important;
  border: 1px solid rgba(26,188,172,0.22) !important;
  border-radius: 0 !important;
  color: var(--color-light) !important;
  transition: border-color 0.2s, background 0.2s !important;
}
.input__control:focus {
  background: rgba(26,188,172,0.10) !important;
  border-color: rgba(26,188,172,0.55) !important;
  outline: none !important;
}
.input__control::placeholder {
  color: rgba(240,244,248,0.35) !important;
}

/* ═══════════════════════════════════════════════════
   FIXES v7 — stat-items contrast (match format-card pattern)
   ═══════════════════════════════════════════════════ */
.traditions-section__stats {
  gap: 8px !important;
}
.stat-item {
  background: rgba(26,188,172,0.10) !important;
  border: 1px solid rgba(26,188,172,0.28) !important;
}
.stat-item:hover {
  background: rgba(26,188,172,0.16) !important;
  border-color: rgba(26,188,172,0.45) !important;
}

/* ═══════════════════════════════════════════════════
   FIXES v8 — 4 issues from screenshot
   ═══════════════════════════════════════════════════ */

/* 1. Legal modal title — prevent overflow ("Datenschutzerklärung" clipping) */
.legal-modal-content h2 {
  font-size: 20px !important;
  line-height: 1.3 !important;
  word-break: break-word !important;
  hyphens: auto !important;
  padding-right: 48px !important;
}
@media (min-width: 768px) {
  .legal-modal-content h2 {
    font-size: 26px !important;
  }
}

/* 2a. Section titles — increase mobile font size */
.section__title {
  font-size: 36px !important;
}
@media (min-width: 768px) {
  .section__title {
    font-size: 64px !important;
  }
}

/* 2b. Traditions / Über uns title — apply gradient like other section titles */
.traditions-section__title {
  background: var(--gradient-brand) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* 3. Cookie options — match form input style */
.cookie-option {
  background: rgba(26,188,172,0.06) !important;
  border: 1px solid rgba(26,188,172,0.22) !important;
}
.cookie-option:not(.disabled):hover {
  background: rgba(26,188,172,0.10) !important;
  border-color: rgba(26,188,172,0.55) !important;
}
.checkmark {
  border-color: rgba(26,188,172,0.45) !important;
}

/* 4. Cookie modal buttons — reinforce ghost button style */
.btn-option {
  background-color: rgba(26,188,172,0.06) !important;
  border: 1px solid rgba(26,188,172,0.55) !important;
  color: rgba(240,244,248,0.85) !important;
  clip-path: polygon(4% 0%, 96% 0%, 100% 5%, 100% 95%, 96% 100%, 4% 100%, 0% 95%, 0% 5%) !important;
  font-family: var(--font-body) !important;
  font-size: 9px !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
  padding: 12px 16px !important;
  border-radius: 0 !important;
  transition: all 0.25s ease !important;
}
.btn-option:hover {
  background-color: rgba(26,188,172,0.13) !important;
  border-color: rgba(26,188,172,0.80) !important;
  color: var(--color-cyan) !important;
}

/* ═══════════════════════════════════════════════════
   THEME TOGGLE BUTTON
   ═══════════════════════════════════════════════════ */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: transparent;
  border: 1px solid rgba(var(--color-cyan-rgb), 0.45);
  border-radius: 0;
  cursor: pointer;
  color: var(--color-cyan);
  transition: all 0.2s ease;
  flex-shrink: 0;
  padding: 0;
}

.theme-toggle:hover {
  background: rgba(var(--color-cyan-rgb), 0.10);
  border-color: var(--color-cyan);
}

.theme-icon {
  display: block;
  pointer-events: none;
}

/* Mobile: reduce header gap so toggle + burger both fit */
@media (max-width: 767px) {
  .header__container {
    gap: 8px !important;
  }
  .header__lang-switcher {
    margin-right: 0 !important;
  }
}

/* ═══════════════════════════════════════════════════
   LIGHT THEME — mint-white
   ═══════════════════════════════════════════════════ */
[data-theme="light"] {
  --color-dark:    #F0F7F6;
  --color-mid:     #E4F2F0;
  --color-panel:   #D8EEEB;
  --color-surface: #C8E8E4;
  --color-border:  #A8D0CC;
  --color-light:   #0A1A18;
  --color-white:   #FFFFFF;

  --color-cyan:       #0A8880;
  --color-teal:       #087A6E;
  --color-teal-hover: #066058;
  --color-cyan-rgb:   10, 136, 128;

  --gradient-brand:       linear-gradient(to right, #0D9E90, #0A8880);
  --gradient-brand-hover: linear-gradient(to right, #0A8880, #087A6E);
  --gradient-teal-dark:   linear-gradient(135deg, #0A8880, #087A6E);
  --bg-fade-down:         linear-gradient(180deg, #E4F2F0 0%, #F0F7F6 100%);
  --bg-fade-up:           linear-gradient(180deg, #F0F7F6 0%, #E4F2F0 100%);

  --modal-overlay-bg: rgba(0, 0, 0, 0.55);
  --modal-bg:         linear-gradient(135deg, #D8EEEB 0%, #C8E8E4 100%);
}

/* Header: override hardcoded rgba(0,0,0,0.5) */
[data-theme="light"] .header {
  background-color: rgba(240, 247, 246, 0.96) !important;
  box-shadow: 0 2px 16px rgba(10, 136, 128, 0.12) !important;
}

/* Solid CTA button: keep text legible on teal gradient */
[data-theme="light"] .header__button,
[data-theme="light"] .button {
  color: #FFFFFF !important;
}

/* Mobile menu */
[data-theme="light"] .mobile-menu {
  background: var(--color-panel) !important;
}

/* Sidebar / contact panel */
[data-theme="light"] #contact-social-panel {
  background: var(--color-panel) !important;
  border-color: var(--color-border) !important;
}

/* Quick-menu items */
[data-theme="light"] .quick-menu__item {
  background: rgba(var(--color-cyan-rgb), 0.10) !important;
  border-color: rgba(var(--color-cyan-rgb), 0.35) !important;
}

/* Stat-items */
[data-theme="light"] .stat-item {
  background: rgba(var(--color-cyan-rgb), 0.08) !important;
  border: 1px solid rgba(var(--color-cyan-rgb), 0.32) !important;
}
[data-theme="light"] .stat-item:hover {
  background: rgba(var(--color-cyan-rgb), 0.15) !important;
  border-color: rgba(var(--color-cyan-rgb), 0.55) !important;
}

/* Format cards */
[data-theme="light"] .format-card,
[data-theme="light"] .format-card--service,
[data-theme="light"] .format-card--featured {
  background: rgba(var(--color-cyan-rgb), 0.07) !important;
  border: 1px solid rgba(var(--color-cyan-rgb), 0.28) !important;
  border-top: 2px solid rgba(var(--color-cyan-rgb), 0.60) !important;
  box-shadow: none !important;
}

/* Form inputs */
[data-theme="light"] .input__control {
  background: rgba(var(--color-cyan-rgb), 0.07) !important;
  border: 1px solid rgba(var(--color-cyan-rgb), 0.28) !important;
  color: var(--color-light) !important;
}
[data-theme="light"] .input__control:focus {
  background: rgba(var(--color-cyan-rgb), 0.13) !important;
  border-color: rgba(var(--color-cyan-rgb), 0.60) !important;
}
[data-theme="light"] .input__control::placeholder {
  color: rgba(10, 26, 24, 0.40) !important;
}

/* Cookie options */
[data-theme="light"] .cookie-option {
  background: rgba(var(--color-cyan-rgb), 0.07) !important;
  border: 1px solid rgba(var(--color-cyan-rgb), 0.25) !important;
}

/* Cookie modal */
[data-theme="light"] .cookie-modal {
  background: var(--modal-bg) !important;
}

/* Legal modals */
[data-theme="light"] .legal-modal-content {
  background: var(--modal-bg) !important;
  color: var(--color-light) !important;
}
[data-theme="light"] .legal-modal-content p,
[data-theme="light"] .legal-modal-content li,
[data-theme="light"] .legal-modal-content h2,
[data-theme="light"] .legal-modal-content h3 {
  color: var(--color-light) !important;
}

/* Logo: slightly darker teal filter for light bg */
[data-theme="light"] .header__logo img,
[data-theme="light"] .footer__logo img {
  filter: grayscale(1) sepia(1) saturate(4) hue-rotate(125deg) brightness(0.58) !important;
}

/* Cookie modal buttons — readable text in light theme */
[data-theme="light"] .btn-option {
  color: var(--color-light) !important;
  background-color: rgba(var(--color-cyan-rgb), 0.08) !important;
  border: 1px solid rgba(var(--color-cyan-rgb), 0.45) !important;
}
[data-theme="light"] .btn-option:hover {
  color: var(--color-cyan) !important;
  background-color: rgba(var(--color-cyan-rgb), 0.16) !important;
}

/* Sections with hardcoded backgrounds */
[data-theme="light"] .traditions-section,
[data-theme="light"] .chefs-section {
  background: var(--color-mid) !important;
}





/* All content text in light sections: force dark readable color.
   Gradient text is unaffected because -webkit-text-fill-color: transparent
   takes precedence over color. */
[data-theme="light"] .traditions-section *,
[data-theme="light"] .formats-section *,
[data-theme="light"] .chefs-section *,
[data-theme="light"] .contact-section *,
[data-theme="light"] .footer * {
  color: var(--color-light) !important;
}

/* Keep teal on accent elements */
[data-theme="light"] .traditions-section a,
[data-theme="light"] .formats-section a,
[data-theme="light"] .chefs-section a,
[data-theme="light"] .contact-section a,
[data-theme="light"] .footer a {
  color: var(--color-cyan) !important;
}

/* Section eyebrow — muted dark */
[data-theme="light"] .section-eyebrow,
[data-theme="light"] p.section-eyebrow {
  color: rgba(10, 26, 24, 0.50) !important;
}

/* ─── Lang switcher + theme toggle: unified header icon style ─── */

/* Globe: use teal (same as toggle) instead of hardcoded light gray */
.header__lang-switcher .header__lang-btn .header__icon-globe {
  color: var(--color-cyan) !important;
}

/* Lang button: add matching border frame */
.header__lang-btn {
  border: 1px solid rgba(var(--color-cyan-rgb), 0.45) !important;
  border-radius: 0 !important;
  width: 34px !important;
  height: 34px !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}
.header__lang-btn:hover {
  background: rgba(var(--color-cyan-rgb), 0.10) !important;
  border-color: var(--color-cyan) !important;
}

/* Light mode: globe icon stays visible on light header */
[data-theme="light"] .header__lang-switcher .header__lang-btn .header__icon-globe {
  color: var(--color-cyan) !important;
}

/* ─── Header & footer: integrated dark + clean light ─── */

/* Dark mode header: teal-dark instead of black */
.header {
  border-bottom: 1px solid rgba(var(--color-cyan-rgb), 0.12);
}

/* Light mode header: clean white */
[data-theme="light"] .header {
  background-color: rgba(255, 255, 255, 0.97) !important;
  box-shadow: 0 2px 20px rgba(10, 136, 128, 0.10) !important;
  border-bottom: 1px solid rgba(var(--color-cyan-rgb), 0.18) !important;
}

/* Light mode footer: match light sections */
[data-theme="light"] .footer {
  background-color: #FFFFFF !important;
  border-top: 1px solid rgba(var(--color-cyan-rgb), 0.18) !important;
}

/* ─── Unified section title style: one solid teal accent word ─── */

/* Replace gradient-text with solid teal */
.hero-gradient-text {
  color: var(--color-cyan) !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: currentColor !important;
  background-clip: unset !important;
}

/* Section titles: proper theme-aware color */
.section__title,
.traditions-section__title,
.formats-section__title,
.chefs-section__title,
.contact-section__title {
  color: var(--color-light) !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: currentColor !important;
  background-clip: unset !important;
}

/* ═══════════════════════════════════════════════════
   TYPOGRAPHY SCALE — unified font sizes via variables
   ═══════════════════════════════════════════════════ */

@media (min-width: 768px) {
  :root {
    --fs-title:    56px;
    --fs-subtitle: 24px;
    --fs-body:     17px;
    --fs-label:    12px;
  }
}

/* All page titles — same size */
.hero-section__title,
.section__title,
.traditions-section__title,
.formats-section__title,
.chefs-section__title,
.contact-section__title {
  font-size: var(--fs-title) !important;
  line-height: 1.15 !important;
}

/* Card and component subtitles */
.format-card__title,
.chef-card__title {
  font-size: var(--fs-subtitle) !important;
}

/* Eyebrow labels */
.section-eyebrow,
p.section-eyebrow {
  font-size: var(--fs-label) !important;
}

/* ─── Light theme hero: light background with faint tech image ─── */
[data-theme="light"] .hero-section {
  background: linear-gradient(135deg, #E4F2F0 0%, #F0F7F6 40%, #E8F5F3 100%) !important;
}
[data-theme="light"] .hero-section__bg {
  display: none !important;
}
[data-theme="light"] .hero-section__location {
  color: rgba(10, 26, 24, 0.50) !important;
}
[data-theme="light"] .hero-section__subtitle {
  color: rgba(10, 26, 24, 0.72) !important;
}
[data-theme="light"] .hero-section__title {
  color: var(--color-light) !important;
  -webkit-text-fill-color: currentColor !important;
}
[data-theme="light"] .hero-section__button-ghost {
  border-color: rgba(var(--color-cyan-rgb), 0.55) !important;
  color: var(--color-cyan) !important;
}

/* ─── Accent word visible in light theme ─── */
[data-theme="light"] .hero-gradient-text {
  color: var(--color-cyan) !important;
  -webkit-text-fill-color: currentColor !important;
}

[data-theme="light"] .legal-modal-content h2 {
  color: var(--color-cyan) !important;
  -webkit-text-fill-color: currentColor !important;
}


/* =======================================================
   FIXES v9 — 6 desktop issues
   ======================================================= */

/* 1. Header nav links: visible in light mode */
[data-theme="light"] .header__menu .link {
  color: #0A1A18 !important;
}
[data-theme="light"] .header__menu .link:hover {
  color: var(--color-teal) !important;
  text-shadow: none !important;
}

/* 2. Section titles smaller on desktop (override 56px → 44px) */
@media (min-width: 768px) {
  :root { --fs-title: 44px; }
}

/* 4. Team section: remove decorative side lines */
.chefs-section__title::before,
.chefs-section__title::after {
  display: none !important;
}

/* 5. Contact form: center the form on desktop */
@media (min-width: 768px) {
  .contact-section__container {
    justify-content: center;
  }
  .contact-section__form {
    max-width: 560px;
    width: 100%;
  }
}

/* 6. Footer: owner name + proportional column spacing */
.footer__owner-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .footer__container {
    gap: 40px;
    align-items: flex-start;
  }
  .footer__nav,
  .footer__address {
    gap: 48px;
  }
  .footer__contacts {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .footer__address-info {
    flex-grow: 1;
  }
}


/* =======================================================
   FIXES v10 — 5 UX improvements
   ======================================================= */

/* 1. Light mode: card titles, header menu, footer name → teal */
[data-theme="light"] .format-card__title {
  color: var(--color-cyan) !important;
  -webkit-text-fill-color: currentColor !important;
}
[data-theme="light"] .header__menu .link {
  color: var(--color-cyan) !important;
}
[data-theme="light"] .header__menu .link:hover {
  color: var(--color-teal) !important;
  text-shadow: none !important;
}
[data-theme="light"] .footer__owner-name {
  color: var(--color-cyan) !important;
}

/* 2. Section intro block: centered container, title left-aligned inside */
.section__intro {
  max-width: 840px;
  margin: 0 auto 40px;
}

/* 3a. Über uns: reduce desktop top padding */
@media (min-width: 768px) {
  .traditions-section {
    padding-top: 64px;
  }
}

/* 3b. Über uns: second paragraph — match first paragraph width */
.traditions-section__text--limited {
  max-width: none !important;
}

/* 3c. Stat items — bigger + ghost button style (clip-path + teal border) */
.traditions-section__stats {
  min-width: 320px !important;
  gap: 12px !important;
}
@media (min-width: 768px) {
  .traditions-section__stats {
    min-width: 360px !important;
  }
}
.stat-item {
  padding: 32px 20px !important;
  min-height: 110px !important;
  background: rgba(26,188,172,0.06) !important;
  border: 1px solid rgba(26,188,172,0.55) !important;
  clip-path: polygon(4% 0%, 96% 0%, 100% 5%, 100% 95%, 96% 100%, 4% 100%, 0% 95%, 0% 5%) !important;
  transition: all 0.25s ease !important;
}
.stat-item:hover {
  background: rgba(26,188,172,0.13) !important;
  border-color: var(--color-cyan) !important;
  box-shadow: 0 0 20px rgba(26,188,172,0.20) !important;
}

/* 5. Section titles: Exo 2 (more readable at large sizes) */
.section__title,
.traditions-section__title,
.formats-section__title,
.chefs-section__title,
.contact-section__title {
  font-family: var(--font-text) !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
}


/* =======================================================
   FIXES v11
   ======================================================= */

/* 1. Header: logo bigger */
.header__logo img {
  height: 72px !important;
}

/* 1. Header: globe + theme toggle grouped with tight gap */
.header__icons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* 2. Cookie widget text: teal in light mode */
[data-theme="light"] .widget-text {
  color: var(--color-cyan) !important;
}

/* 3. Stat items: align bottom with text content */
@media (min-width: 768px) {
  .traditions-section__container {
    align-items: flex-end;
  }
}

/* 4. Uniform section padding: 64px desktop, 32px mobile */
.section {
  padding: 32px 0;
}
@media (min-width: 768px) {
  .section {
    padding: 64px 0;
  }
}

/* 4. Hero: more breathing room below fixed header */
.hero-section {
  padding: 110px 0 80px !important;
}
@media (min-width: 768px) {
  .hero-section {
    padding: 150px 0 100px !important;
  }
}

/* 5. Hero light bg image: hidden in dark, visible in light */
.hero-section__bg--light {
  display: none;
}
[data-theme="light"] .hero-section__bg--dark {
  display: none !important;
}
[data-theme="light"] .hero-section__bg--light {
  display: block !important;
}

/* 5. Footer logo: natural colors (no teal filter), auto height */
.footer__logo-img {
  width: auto;
  height: 110px;
  display: block;
  object-fit: contain;
  filter: none !important;
}
[data-theme="light"] .footer__logo-img {
  filter: none !important;
}


/* =======================================================
   FIXES v12 — unified section layout + footer + hero
   ======================================================= */

/* ── 1. Footer logo: bigger + minty filter in light mode ── */
.footer__logo-img {
  height: 140px !important;
}
[data-theme="light"] .footer__logo-img {
  filter: grayscale(1) sepia(1) saturate(2.2) hue-rotate(130deg) brightness(1.15) !important;
}

/* ── 2. Hero: smaller bottom padding ── */
.hero-section {
  padding: 110px 0 56px !important;
}
@media (min-width: 768px) {
  .hero-section {
    padding: 150px 0 64px !important;
  }
}

/* ── 3. Unified section layout: left-aligned throughout ──
   Principle: eyebrow → title → lead → content, all starting
   from the left edge. Max-widths prevent lines from running
   full 1288px. Every section reads the same way. */

/* section__intro: remove centering, back to left */
.section__intro {
  max-width: none !important;
  margin: 0 0 40px 0 !important;
}

/* Titles: max 680px keeps line length readable and focused */
.section__title,
.traditions-section__title,
.formats-section__title,
.chefs-section__title,
.contact-section__title {
  max-width: 680px;
}

/* Lead paragraphs: slightly narrower for a clear text column */
.formats-section__lead {
  max-width: 560px;
  margin-bottom: 40px;
}

/* Contact: left-aligned, not centered */
@media (min-width: 768px) {
  .contact-section__container {
    justify-content: flex-start !important;
  }
  .contact-section__form {
    max-width: 640px !important;
  }
}

/* Eyebrow: always text-align left */
.section-eyebrow {
  text-align: left;
  border-bottom: none;
  margin-left: 0 !important;
  margin-right: 0 !important;
}


/* =======================================================
   FIXES v13
   ======================================================= */

/* 1. Footer logo: match header logo filter exactly */
.footer__logo-img {
  filter: grayscale(1) sepia(1) saturate(3) hue-rotate(125deg) brightness(0.84) !important;
}
[data-theme="light"] .footer__logo-img {
  filter: grayscale(1) sepia(1) saturate(4) hue-rotate(125deg) brightness(0.58) !important;
}

/* 3. Section padding: reduce top/bottom */
.section {
  padding: 16px 0;
}
@media (min-width: 768px) {
  .section {
    padding: 48px 0;
  }
}

/* 4. Left-align all body text in sections */
.formats-section__lead {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.form-terms {
  text-align: left !important;
  margin: 0 !important;
  max-width: none !important;
}

/* 5. Contact section: form + info side panel */
@media (min-width: 900px) {
  .contact-section__container {
    gap: 64px !important;
    align-items: flex-start;
  }
  .contact-section__form {
    flex: 1;
    max-width: 520px !important;
  }
}

.contact-section__info {
  display: none;
}
@media (min-width: 900px) {
  .contact-section__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
    width: 280px;
    padding: 28px;
    border: 1px solid rgba(26,188,172,0.25);
    border-top: 2px solid var(--color-cyan);
    align-self: flex-start;
    margin-top: 92px;
  }
}

.contact-info-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin: 0;
}
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-info-link {
  display: block;
  color: var(--color-light);
  text-decoration: none;
  font-family: var(--font-text);
  font-size: 15px;
  transition: color 0.2s;
}
.contact-info-link:hover { color: var(--color-cyan); }
.contact-info-text {
  font-family: var(--font-text);
  font-size: 13px;
  color: rgba(240,244,248,0.50);
  line-height: 1.6;
}
.contact-info-promise {
  font-family: var(--font-text);
  font-size: 13px;
  line-height: 1.65;
  color: rgba(240,244,248,0.45);
  padding-top: 16px;
  border-top: 1px solid rgba(26,188,172,0.15);
  margin: 0;
}
.contact-info-social {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-cyan);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-info-social:hover { color: var(--color-teal); }

/* Light mode: info panel readable text */
[data-theme="light"] .contact-info-text,
[data-theme="light"] .contact-info-promise {
  color: rgba(10,26,24,0.55) !important;
}
[data-theme="light"] .contact-info-link {
  color: var(--color-light) !important;
}

/* 6. Team section: real photo */
.chef-card__photo {
  height: 170px;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}
@media (min-width: 1200px) {
  .chef-card__photo {
    height: 290px;
  }
}

/* =======================================================
   FIXES v14
   ======================================================= */

/* 1. Footer logo: lighter to match header */
.footer__logo-img {
  filter: grayscale(1) sepia(1) saturate(3) hue-rotate(125deg) brightness(1.05) !important;
}
[data-theme="light"] .footer__logo-img {
  filter: grayscale(1) sepia(1) saturate(4) hue-rotate(125deg) brightness(0.65) !important;
}

/* 2. Contact info panel: service-card style + no margin-top hack */
@media (min-width: 900px) {
  .contact-section__info {
    background: rgba(26,188,172,0.04) !important;
    border: 1px solid rgba(26,188,172,0.22) !important;
    border-top: 2px solid rgba(26,188,172,0.45) !important;
    margin-top: 0 !important;
  }
  .contact-section__info:hover {
    background: rgba(26,188,172,0.08) !important;
    border-color: rgba(26,188,172,0.45) !important;
    border-top-color: var(--color-cyan) !important;
  }
}
/* Title + lead spacing above the flex row */
.contact-section__title {
  margin-bottom: 12px !important;
}
.contact-section__lead {
  margin-bottom: 32px !important;
}

/* 3. Team section title: left-align (remove auto horizontal margins) */
.chefs-section__title {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* 4. Team photo: cut-corner clip-path in site style */
.chef-card__photo {
  border-radius: 0 !important;
  box-shadow: none !important;
  clip-path: polygon(6% 0%, 94% 0%, 100% 6%, 100% 94%, 94% 100%, 6% 100%, 0% 94%, 0% 6%);
  filter: drop-shadow(0 0 8px rgba(26,188,172,0.28));
}

/* 5. Footer mobile: consistent spacing */
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__owner-name {
  margin: 0 !important;
}

/* =======================================================
   FIXES v15
   ======================================================= */

/* 1. Photo: flat-top hexagon frame (like the logo) */
.chef-photo-hex {
  position: relative;
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-teal));
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  flex-shrink: 0;
}
.chef-photo-hex .chef-card__photo {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  object-fit: cover;
  object-position: center 18%;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}
@media (min-width: 1200px) {
  .chef-photo-hex {
    width: 240px;
    height: 240px;
  }
}

/* 2. Footer links: reset :visited and :focus states */
.footer__address-link:visited,
.footer__menu .link:visited,
.footer__nav .link:visited {
  color: var(--color-light);
  text-decoration: none;
}
.footer__address-link:focus,
.footer__menu .link:focus,
.footer__nav .link:focus,
.footer__address-link:focus-visible,
.footer__menu .link:focus-visible {
  outline: none !important;
  color: var(--color-light) !important;
  text-decoration: none !important;
}
.footer__address-link {
  transition: color 0.25s;
}
.footer__menu .link {
  transition: color 0.25s;
}

/* 3. Contact panel: same width as form, aligned to button bottom */
@media (min-width: 900px) {
  .contact-section__container {
    gap: 48px !important;
    align-items: flex-start !important;
  }
  .contact-section__form {
    flex: 1 !important;
    max-width: 520px !important;
  }
  .contact-section__info {
    flex: 1 !important;
    width: auto !important;
    max-width: 520px !important;
    margin-top: 0 !important;
  }
}
/* form-terms: now outside the flex row */
.form-terms {
  margin-top: 12px !important;
  max-width: 520px;
}

/* =======================================================
   FIXES v16 — pre-colored logos, no filter needed
   ======================================================= */
.header__logo img,
.footer__logo img,
.footer__logo-img {
  filter: none !important;
}
[data-theme="light"] .header__logo img,
[data-theme="light"] .footer__logo img,
[data-theme="light"] .footer__logo-img {
  filter: none !important;
}

/* =======================================================
   FIXES v17
   ======================================================= */

/* 1. Footer links: reset visited/focus state completely */
.footer .link:visited,
.footer .footer__menu .link:visited {
  color: rgba(240,244,248,0.85) !important;
  text-decoration: none !important;
  text-shadow: none !important;
}
.footer .link:focus,
.footer .link:focus-visible,
.footer .footer__menu .link:focus,
.footer .footer__menu .link:focus-visible {
  color: rgba(240,244,248,0.85) !important;
  text-decoration: none !important;
  text-shadow: none !important;
  outline: none !important;
}
/* Kill the animated underline on visited/focus */
.footer .link:visited::after,
.footer .link:focus::after,
.footer .link:focus-visible::after,
.footer .link:active::after {
  width: 0 !important;
  opacity: 0 !important;
}

/* 2. Chef card: CSS Grid — mobile: photo+name side by side, texts full-width */
.chef-card {
  display: grid !important;
  grid-template-columns: 160px 1fr !important;
  gap: 12px 20px !important;
  align-items: start !important;
}
.chef-photo-hex,
.chef-card__avatar {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}
.chef-card__name-block {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}
.chef-card__name-block .chef-card__role {
  margin-bottom: 6px;
}
.chef-card__text {
  grid-column: 1 / -1 !important;  /* span full width on mobile */
}

/* Desktop: photo on left, name+texts stacked on right */
@media (min-width: 768px) {
  .chef-card {
    gap: 0 40px !important;
  }
  .chef-photo-hex,
  .chef-card__avatar {
    grid-row: 1 / span 4 !important;
  }
  .chef-card__name-block {
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: start !important;
    padding-top: 4px;
  }
  .chef-card__text {
    grid-column: 2 !important;  /* right column only on desktop */
  }
}
@media (min-width: 1200px) {
  .chef-card {
    grid-template-columns: 240px 1fr !important;
    gap: 0 48px !important;
  }
}

/* 3. Contact panel: gap reduction + justify-content for JS height alignment */
@media (min-width: 900px) {
  .contact-section__container {
    gap: 32px !important;
  }
  .contact-section__info {
    padding: 16px 24px !important;
    gap: 14px !important;
    justify-content: space-between !important;
    overflow: hidden !important;
  }
}

/* =======================================================
   FIXES v18
   ======================================================= */

/* 1. Chef-card: fix column overflow on any mobile width.
      minmax(0,1fr) = column can shrink to 0, text wraps normally. */
.chef-card {
  grid-template-columns: auto minmax(0, 1fr) !important;
}
.chef-card__name-block,
.chef-card__name-block .chef-card__title,
.chef-card__name-block .chef-card__role {
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
/* Desktop: photo column = natural hex/avatar width */
@media (min-width: 768px) {
  .chef-card {
    grid-template-columns: auto minmax(0, 1fr) !important;
  }
}
@media (min-width: 1200px) {
  .chef-photo-hex { width: 240px !important; height: 240px !important; }
}

/* 2. Footer links: fix :visited color for BOTH themes */
/* Dark mode — near-white (matches normal state) */
.footer .link:visited,
.footer .footer__menu .link:visited {
  color: rgba(240,244,248,0.85) !important;
  text-decoration: none !important;
  text-shadow: none !important;
}
/* Light mode — teal (matches [data-theme=light] .footer a rule) */
[data-theme="light"] .footer .link:visited,
[data-theme="light"] .footer .footer__menu .link:visited {
  color: var(--color-cyan) !important;
  text-decoration: none !important;
  text-shadow: none !important;
}
/* Focus: same per-theme colors */
.footer .link:focus,
.footer .link:focus-visible {
  color: rgba(240,244,248,0.85) !important;
  text-shadow: none !important;
  outline: none !important;
  text-decoration: none !important;
}
[data-theme="light"] .footer .link:focus,
[data-theme="light"] .footer .link:focus-visible {
  color: var(--color-cyan) !important;
  text-shadow: none !important;
  outline: none !important;
}
/* Animated underline: always off for visited/focus/active */
.footer .link:visited::after,
.footer .link:focus::after,
.footer .link:focus-visible::after,
.footer .link:active::after {
  width: 0 !important;
  opacity: 0 !important;
}

/* =======================================================
   FIXES v19 — footer link hover reset after scroll click
   ======================================================= */
/* JS sets pointer-events:none on click → removes :hover at browser level.
   transition-delay:0.15s on underline appearance prevents "scroll-past" hover
   (cursor briefly over link as footer scrolls into view) from showing underline. */
.link--scrolled::after {
  width: 0 !important;
  opacity: 0 !important;
  transition: none !important;
}
.footer__menu .link:hover::after {
  transition: width 0.25s ease 0.15s;
}
.footer__menu .link:not(:hover)::after {
  transition: width 0.2s ease;
}

/* =======================================================
   FIXES v20 — mobile sticky-hover fix
   ======================================================= */
/* JS adds .link--active on tap. CSS suppresses sticky :hover color+underline.
   Class is removed on next touchstart (same moment browser clears sticky hover). */
.link.link--active:hover,
.footer__menu .link.link--active:hover,
.header__menu .link.link--active:hover {
  color: var(--color-light) !important;
  text-shadow: none !important;
}
/* Footer dark mode: exact normal color */
.footer__menu .link.link--active:hover {
  color: rgba(240, 244, 248, 0.75) !important;
}
/* Footer light mode */
[data-theme="light"] .footer__menu .link.link--active:hover {
  color: var(--color-cyan) !important;
}
/* Underline: always 0 while active */
.link.link--active::after,
.link.link--active:hover::after {
  width: 0 !important;
  transition: none !important;
}

/* CSS-level baseline: devices that correctly report hover:none */
@media (hover: none) {
  .link:hover {
    color: var(--color-light) !important;
    text-shadow: none !important;
  }
  .footer__menu .link:hover {
    color: rgba(240, 244, 248, 0.75) !important;
  }
  [data-theme="light"] .footer__menu .link:hover {
    color: var(--color-cyan) !important;
  }
  .link:hover::after,
  .footer__menu .link:hover::after {
    width: 0 !important;
    transition: none !important;
  }
}

/* =======================================================
   FIXES v21
   ======================================================= */

/* 1. Footer logo larger on desktop */
@media (min-width: 768px) {
  .footer__logo img,
  .footer__logo-img {
    height: 150px !important;
  }
}

/* 2. Cookie buttons — primary solid style */
.btn-option {
  clip-path: polygon(4% 0%, 96% 0%, 100% 5%, 100% 95%, 96% 100%, 4% 100%, 0% 95%, 0% 5%);
  background: linear-gradient(135deg, var(--color-cyan), var(--color-teal)) !important;
  color: var(--color-dark) !important;
  border: none !important;
  border-radius: 0 !important;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.2s ease !important;
}
.btn-option:hover {
  opacity: 0.85;
  color: var(--color-dark) !important;
  border-color: transparent !important;
}

/* =======================================================
   FIXES v22 — Content Rewrite: New Sections
   ======================================================= */

/* ---- Service tags (carousel cards) ---- */
.service-tags {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-cyan);
  opacity: 0.85;
  margin-bottom: 16px;
}

/* ---- Textarea input ---- */
textarea.input__control {
  resize: vertical;
  min-height: 88px;
  padding-top: 12px;
  line-height: 1.55;
}

/* ---- Probleme Section ---- */
.probleme-section { background: #0E1828; }
.probleme-section__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 600px) {
  .probleme-section__list { grid-template-columns: 1fr 1fr; }
}
.probleme-card {
  background: rgba(26,188,172,0.04);
  border: 1px solid rgba(26,188,172,0.18);
  border-left: 3px solid rgba(26,188,172,0.55);
  padding: 32px;
}
.probleme-card__num {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}
.probleme-card__title {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.probleme-card__text {
  font-family: var(--font-text);
  font-size: 0.9375rem;
  color: var(--color-light);
  opacity: 0.72;
  line-height: 1.65;
  margin: 0;
}

/* ---- Prozess Section ---- */
.prozess-section { background: #0A0E1A; }
.prozess-section__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 600px) {
  .prozess-section__list { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .prozess-section__list { grid-template-columns: repeat(4, 1fr); }
}
.prozess-step {
  background: rgba(26,188,172,0.04);
  border: 1px solid rgba(26,188,172,0.18);
  border-top: 2px solid rgba(26,188,172,0.45);
  padding: 32px 24px;
}
.prozess-step__num {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.prozess-step__title {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.prozess-step__text {
  font-family: var(--font-text);
  font-size: 0.9375rem;
  color: var(--color-light);
  opacity: 0.72;
  line-height: 1.65;
  margin: 0;
}

/* ---- Referenzen Section ---- */
.referenzen-section { background: #0E1828; }
.referenzen-section__lead {
  font-family: var(--font-text);
  font-size: 1.0625rem;
  color: var(--color-light);
  opacity: 0.72;
  max-width: 560px;
  margin: 0 0 48px;
}
.referenzen-section__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .referenzen-section__list { grid-template-columns: 1fr 1fr; }
}
.referenz-card {
  background: rgba(26,188,172,0.04);
  border: 1px solid rgba(26,188,172,0.22);
  border-top: 2px solid rgba(26,188,172,0.45);
  padding: 32px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.referenz-card:hover {
  background: rgba(26,188,172,0.08);
  border-color: rgba(26,188,172,0.45);
  border-top-color: var(--color-cyan);
}
.referenz-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.referenz-tag {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-cyan);
  background: rgba(26,188,172,0.10);
  border: 1px solid rgba(26,188,172,0.30);
  padding: 3px 10px;
}
.referenz-card__title {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-light);
  margin-bottom: 12px;
  line-height: 1.35;
}
.referenz-card__desc {
  font-family: var(--font-text);
  font-size: 0.9375rem;
  color: var(--color-light);
  opacity: 0.72;
  line-height: 1.65;
  margin: 0 0 16px;
}
.referenz-card__result {
  font-family: var(--font-text);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-cyan);
  border-top: 1px solid rgba(26,188,172,0.2);
  padding-top: 16px;
  margin: 0;
}
.referenz-card__result::before { content: '→ '; }

/* ---- FAQ Section ---- */
.faq-section { background: #0E1828; }
.faq-section__list {
  max-width: 800px;
  margin: 48px 0 0;
  list-style: none;
  padding: 0;
}
.faq-item { border-bottom: 1px solid rgba(26,188,172,0.2); }
.faq-item:first-child { border-top: 1px solid rgba(26,188,172,0.2); }
.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}
.faq-item__question:hover { color: var(--color-cyan); }
.faq-item__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(26,188,172,0.12);
  border: 1px solid rgba(26,188,172,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-style: normal;
  line-height: 1;
  color: var(--color-cyan);
  transition: transform 0.3s ease;
}
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-item.is-open .faq-item__answer { max-height: 600px; }
.faq-item__answer-inner {
  padding: 0 0 24px;
  font-family: var(--font-text);
  font-size: 0.9375rem;
  color: var(--color-light);
  opacity: 0.8;
  line-height: 1.7;
  margin: 0;
}

/* ---- Light mode overrides for new sections ---- */
[data-theme="light"] .probleme-section,
[data-theme="light"] .referenzen-section,
[data-theme="light"] .faq-section { background: #E4F1F0; }
[data-theme="light"] .prozess-section { background: #F0F7F6; }

[data-theme="light"] .probleme-card,
[data-theme="light"] .prozess-step,
[data-theme="light"] .referenz-card {
  background: rgba(10,136,128,0.06);
  border-color: rgba(10,136,128,0.25);
}
[data-theme="light"] .probleme-card { border-left-color: rgba(10,136,128,0.6); }
[data-theme="light"] .prozess-step { border-top-color: rgba(10,136,128,0.5); }
[data-theme="light"] .referenz-card { border-top-color: rgba(10,136,128,0.5); }
[data-theme="light"] .referenz-card:hover {
  background: rgba(10,136,128,0.12);
  border-color: rgba(10,136,128,0.45);
  border-top-color: var(--color-cyan);
}
[data-theme="light"] .referenz-tag {
  background: rgba(10,136,128,0.12);
  border-color: rgba(10,136,128,0.35);
}
[data-theme="light"] .referenz-card__result,
[data-theme="light"] .faq-item { border-color: rgba(10,136,128,0.25); }
[data-theme="light"] .faq-item:first-child { border-top-color: rgba(10,136,128,0.25); }
[data-theme="light"] .faq-item__icon {
  background: rgba(10,136,128,0.12);
  border-color: rgba(10,136,128,0.45);
}

/* =======================================================
   FIXES v23 — UI polish pass
   ======================================================= */

/* 1. Header logo — larger */
.header__logo img {
  height: 88px !important;
}

/* 2. Header nav — prevent wrapping, center-align items */
.header__menu {
  align-items: center !important;
}
.header__menu li {
  display: flex;
  align-items: center;
}
.header__menu .link {
  white-space: nowrap;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .header__menu {
    gap: 28px !important;
  }
}
@media screen and (min-width: 1280px) {
  .header__menu {
    gap: 40px !important;
  }
}

/* 3. Equal-height cards: make li flex so article fills height */
.probleme-section__list > li,
.prozess-section__list > li,
.referenzen-section__list > li {
  display: flex;
}
.probleme-card,
.prozess-step,
.referenz-card {
  flex: 1;
}

/* 4. Bigger card text on desktop */
@media (min-width: 900px) {
  .probleme-card__text,
  .prozess-step__text,
  .referenz-card__desc {
    font-size: 1rem;
    line-height: 1.7;
  }
  .probleme-card__title,
  .prozess-step__title {
    font-size: 0.875rem;
  }
  .referenz-card__title {
    font-size: 1.0625rem;
  }
}

/* 5. Service number — Exo 2 for readability */
.service-num {
  font-family: var(--font-text) !important;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* 6. Textarea — explicit font (browsers don't always inherit) */
textarea.input__control {
  font-family: var(--font-text) !important;
  font-size: 1rem !important;
}
textarea.input__control::placeholder {
  font-family: var(--font-text) !important;
  font-size: 1rem !important;
}

/* 7. Hero ghost button — more letter-spacing */
.hero-section__button-ghost {
  letter-spacing: 0.12em !important;
}

/* 8. Swiper disabled arrow state */
.carousel-button.swiper-button-disabled {
  opacity: 0.25 !important;
  pointer-events: none;
  cursor: default;
}

/* =======================================================
   FIXES v24 — Stats, service cards, team, typography
   ======================================================= */

/* 1. Stats boxes — bigger, properly sized column */
@media (min-width: 768px) {
  .traditions-section__container {
    align-items: flex-start !important;
  }
  .traditions-section__content {
    flex: 1 1 0;
    min-width: 0;
  }
  .traditions-section__stats {
    flex: 0 0 clamp(300px, 42%, 460px) !important;
    min-width: 0 !important;
    max-width: none !important;
    gap: 12px !important;
  }
}
.stat-item {
  padding: 28px 24px !important;
  min-height: 120px !important;
  justify-content: center;
}
.stat-number {
  font-size: 22px !important;
  line-height: 1.1;
  margin-bottom: 8px !important;
}
.stat-label {
  font-size: 13px !important;
  opacity: 0.75;
}

/* 2a. Service num + price — Exo 2, readable sizes */
.service-num {
  font-family: var(--font-text) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
}
.service-price {
  font-family: var(--font-text) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  color: var(--color-cyan) !important;
}

/* 2b. Card title — allow German word hyphenation */
.format-card--service .format-card__title {
  hyphens: auto !important;
  overflow-wrap: break-word !important;
  font-size: 16px !important;
}

/* 3. Team cards — always equal width on desktop */
@media (min-width: 768px) {
  .chefs-section__list {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
  }
  .chefs-section__item {
    flex-basis: unset !important;
    width: auto !important;
  }
}

/* =======================================================
   FIXES v25 — Mobile polish
   ======================================================= */

/* 1. Hero buttons — equal width on mobile */
@media (max-width: 767px) {
  .hero-section__buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-section__button.button,
  .hero-section__button-ghost {
    width: 100% !important;
    text-align: center;
    display: block;
    box-sizing: border-box;
  }
}

/* 2. Service cards — less padding on mobile, flexible height */
@media (max-width: 767px) {
  .format-card--service {
    height: auto !important;
    min-height: 0 !important;
    padding: 20px 18px !important;
  }
}

/* 3. Chef-card role — explicit teal in both modes */
.chef-card__role {
  color: var(--color-cyan) !important;
}
[data-theme="light"] .chef-card__role {
  color: var(--color-cyan) !important;
}

/* 4. Network card — single column, name-block left-aligned with paragraph text */
@media (max-width: 767px) {
  .chefs-section__item:last-child .chef-card {
    grid-template-columns: 1fr !important;
  }
  .chefs-section__item:last-child .chef-card__name-block {
    grid-column: 1 !important;
  }
}

/* 5. Sidebar — hidden on desktop (header covers navigation) */
@media (min-width: 768px) {
  #quick-menu-container,
  #contact-social-panel {
    display: none !important;
  }
}

/* ======= FIXES v26 — language switcher active state ======= */
.header__lang-list a {
  cursor: pointer;
}
.header__lang-list a.is-active {
  color: var(--color-cyan);
  font-weight: 700;
}
[data-theme="light"] .header__lang-list a.is-active {
  color: var(--color-teal);
}

/* 6. Sidebar — left-aligned text, tighter padding so "KONTAKT & SOCIAL" fits */
#quick-menu-container .menu-items li a {
  align-items: flex-start !important;
  padding: 16px 6px 16px 8px !important;
  font-size: 10px !important;
}

/* ======= FIXES v28 — contact form status message ======= */
.form-status {
  min-height: 0;
  font-size: 14px;
  font-family: var(--font-body);
  padding: 0;
  transition: all 0.3s ease;
}
.form-status--ok {
  color: var(--color-cyan);
  padding: 10px 0 4px;
}
.form-status--err {
  color: #ff6b6b;
  padding: 10px 0 4px;
}

/* ======= FIXES v27 — cookie modal: simplified options + buttons ======= */
/* Preferences option: description inside the box */
.cookie-option--with-desc {
  align-items: center;
}
.cookie-option__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cookie-prefs-desc {
  display: block;
  font-size: 11px;
  color: rgba(240, 244, 248, 0.45);
  line-height: 1.3;
  font-weight: 400;
}
[data-theme="light"] .cookie-prefs-desc {
  color: rgba(10, 14, 26, 0.45);
}
/* Buttons: primary full width, secondary two in a row */
.cookie-buttons {
  flex-direction: column;
  gap: 8px;
}
.cookie-buttons__secondary {
  display: flex;
  gap: 8px;
}
.cookie-buttons__secondary .btn-option {
  flex: 1;
}
.btn-option--primary {
  background: linear-gradient(135deg, var(--color-cyan), var(--color-teal));
  color: var(--color-dark) !important;
  border-color: transparent !important;
  font-weight: 700;
}
.btn-option--primary:hover {
  background: linear-gradient(135deg, var(--color-teal), var(--color-cyan));
  color: var(--color-dark) !important;
  border-color: transparent !important;
}
.btn-option--ghost {
  opacity: 0.65;
}
.btn-option--ghost:hover {
  opacity: 1;
}
[data-theme="light"] .btn-option--primary {
  color: #fff !important;
}

/* === FIXES v29: Modal form button + Mobile menu CTA === */
.modal-input__button {
  display: block;
  width: 100%;
  background: var(--gradient-brand);
  border: 1px solid rgba(26,188,172,0.6);
  color: var(--color-dark) !important;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 40px;
  clip-path: polygon(4% 0%, 96% 0%, 100% 5%, 100% 95%, 96% 100%, 4% 100%, 0% 95%, 0% 5%);
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 12px;
  flex-shrink: 0;
}
.modal-input__button:hover {
  background: var(--gradient-brand-hover);
  transform: translateY(-2px);
}
.modal-input__form-field {
  margin-bottom: 16px;
}

/* Make modal form fill remaining height so submit button is always visible */
.modal-input form[name="modal-form"] {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
}
.modal-input .modal-input__scrollable-content {
  flex: 1;
  min-height: 0;
}
.modal-input .modal-input__button {
  flex-shrink: 0;
}

.mobile-menu__cta {
  display: block;
  width: 100%;
  margin-top: 24px;
  background: var(--gradient-brand);
  border: none;
  color: var(--color-dark) !important;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 24px;
  clip-path: polygon(4% 0%, 96% 0%, 100% 5%, 100% 95%, 96% 100%, 4% 100%, 0% 95%, 0% 5%);
  cursor: pointer;
  transition: all 0.25s ease;
}
.mobile-menu__cta:hover {
  background: var(--gradient-brand-hover);
  transform: translateY(-2px);
}

/* === FIXES v29b: Sidebar CTA button === */
#quick-menu-container .menu-nav-cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  gap: 8px;
  font-size: 8px;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  background: var(--gradient-brand);
  color: var(--color-dark) !important;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
#quick-menu-container .menu-nav-cta:hover {
  background: var(--gradient-brand-hover);
  color: var(--color-dark) !important;
}

/* === FIXES v29c: Modal input title color === */
.modal-input__title {
  color: var(--color-cyan);
}

/* === FIXES v29d: Contact section — booking button === */
.contact-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
  color: var(--color-cyan);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-or::before,
.contact-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(26, 188, 172, 0.2);
}
.contact-booking-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 40px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-cyan);
  background: rgba(26, 188, 172, 0.06);
  border: 1px solid rgba(26, 188, 172, 0.45);
  clip-path: polygon(4% 0%, 96% 0%, 100% 5%, 100% 95%, 96% 100%, 4% 100%, 0% 95%, 0% 5%);
  transition: all 0.25s ease;
  margin-bottom: 4px;
}
.modal-booking-btn {
  margin-top: 16px;
  margin-bottom: 0;
}
.modal-or {
  margin: 10px 0;
}
.contact-booking-btn:hover {
  background: rgba(26, 188, 172, 0.14);
  border-color: var(--color-cyan);
  transform: translateY(-2px);
}

/* === Dev banner === */
.dev-banner {
  background: linear-gradient(90deg, var(--color-teal), var(--color-cyan));
  color: var(--color-dark);
  text-align: center;
  padding: 8px 16px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
[data-theme="light"] .dev-banner {
  color: #fff;
}

/* === Mobile modal fix === */
@media (max-width: 767px) {
  .modal-input {
    align-items: flex-start;
    padding-top: 8px;
  }
  .modal-input__content {
    max-height: calc(100vh - 16px);
    width: 100%;
    padding: 20px 18px 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .modal-input__title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .modal-booking-btn {
    margin-top: 0;
    padding: 11px 20px;
  }
  .modal-or {
    margin: 8px 0;
  }
  .modal-input__scrollable-content p.modal-input__text {
    font-size: 13px;
    margin-bottom: 12px;
  }
  .modal-input__form-field {
    margin-bottom: 10px;
  }
  .modal-input__form-field textarea {
    min-height: 56px;
    height: 56px;
  }
  .modal-input__button {
    margin-top: 6px;
    padding: 12px 20px;
  }
}

/* === About section: stats aligned with text, not heading (desktop) === */
@media (min-width: 768px) {
  .traditions-section__container {
    display: block !important;
  }
  .traditions-section__body {
    display: flex;
    gap: 40px;
    align-items: stretch;
  }
  .traditions-section__content {
    flex: 1;
  }
  .traditions-section__stats {
    align-self: stretch !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    align-content: stretch !important;
    min-width: 320px !important;
  }
  .traditions-section__stats .stat-item {
    min-height: 0 !important;
    height: auto !important;
  }
}

/* Modal texts — unified muted color and size */
.modal-input__text {
  font-size: 14px !important;
  color: rgba(240,244,248,0.60) !important;
}
[data-theme="light"] .modal-input__text {
  color: rgba(10,26,24,0.60) !important;
}

/* Modal intro lead (same key as contact_lead) */
.modal-input__lead {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 300;
  color: rgba(240,244,248,0.60);
  line-height: 1.55;
  margin: 0 0 16px;
}
[data-theme="light"] .modal-input__lead {
  color: rgba(10,26,24,0.60);
}

/* Contact section form lead text (mirrors modal_text) */
.contact-section__form-lead {
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 300;
  color: rgba(240,244,248,0.60);
  line-height: 1.6;
  margin: 0 0 20px;
}

/* Mobile menu toggle button — brighter border in both themes */
#quick-menu-container #toggle-btn {
  border: 2px solid rgba(26, 188, 172, 0.75) !important;
}
[data-theme="light"] #quick-menu-container #toggle-btn {
  border: 2px solid rgba(26, 188, 172, 0.80) !important;
}

/* ═══════════════════════════════════════════════════
   SECTION ALTERNATION — canonical override (always last)
   Pattern: B A B A B A B A  (B=lighter, A=deeper)
   ═══════════════════════════════════════════════════ */

/* Dark mode — two alternating navy tones */
.probleme-section   { background: #0E1828 !important; border-top: 1px solid rgba(26,188,172,0.18) !important; }
.traditions-section { background: #0A0E1A !important; border-top: 1px solid rgba(26,188,172,0.18) !important; }
.prozess-section    { background: #0E1828 !important; border-top: 1px solid rgba(26,188,172,0.18) !important; }
.formats-section    { background: #0A0E1A !important; border-top: 1px solid rgba(26,188,172,0.18) !important; }
.referenzen-section { background: #0E1828 !important; border-top: 1px solid rgba(26,188,172,0.18) !important; }
.chefs-section      { background: #0A0E1A !important; border-top: 1px solid rgba(26,188,172,0.18) !important; }
.faq-section        { background: #0E1828 !important; border-top: 1px solid rgba(26,188,172,0.18) !important; }
.contact-section    { background: #0A0E1A !important; border-top: 1px solid rgba(26,188,172,0.18) !important; }

/* Light mode — two alternating mint tones */
[data-theme="light"] .probleme-section   { background: #E4F2F0 !important; }
[data-theme="light"] .traditions-section { background: #F0F7F6 !important; }
[data-theme="light"] .prozess-section    { background: #E4F2F0 !important; }
[data-theme="light"] .formats-section    { background: #F0F7F6 !important; }
[data-theme="light"] .referenzen-section { background: #E4F2F0 !important; }
[data-theme="light"] .chefs-section      { background: #F0F7F6 !important; }
[data-theme="light"] .faq-section        { background: #E4F2F0 !important; }
[data-theme="light"] .contact-section    { background: #F0F7F6 !important; }
