/* ==== CSS RESET & NORMALIZATION ==== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #212023;
}
body {
  min-height: 100vh;
  background: #232129;
  color: #F6F2ED;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6 {
  color: #F6F2ED;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  text-shadow: 0 4px 28px #E95C31;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.4rem;
}
p, ul, ol, dl {
  margin-bottom: 16px;
}
ul, ol {
  padding-left: 24px;
}

strong, b {
  font-weight: 700;
}
a {
  color: #E95C31;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
a:hover, a:focus {
  color: #FFF;
  text-shadow: 0 0 8px #E95C3188;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: none;
  position: relative;
}

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

.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==== TYPOGRAPHY & BADGES ====*/
.subheadline, .mission {
  color: #E95C31;
  font-size: 1.20rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.badge, .price {
  display: inline-block;
  background: #E95C31;
  color: #F6F2ED;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 2px 12px;
  margin-left: 8px;
  vertical-align: baseline;
  letter-spacing: 0.02em;
}

/* ==== HEADER AND NAVIGATION ====*/
header {
  width: 100%;
  background: #232129;
  box-shadow: 0 4px 24px 0 #1a1a2150;
  z-index: 20;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 22px;
  padding-bottom: 22px;
  position: relative;
  gap: 24px;
}
header img {
  height: 43px;
  margin-right: 32px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  color: #F6F2ED;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #E95C31;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E95C31;
  color: #F6F2ED;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 24px;
  padding: 12px 32px;
  margin-left: 32px;
  box-shadow: 0 2px 28px #E95C3140;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.cta-button:hover, .cta-button:focus {
  background: #f57944;
  color: #FFF;
  box-shadow: 0 0 16px #E95C31, 0 0 48px #E95C3166;
}

/* === Hamburger Mobile Menu === */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #E95C31;
  font-size: 2.2rem;
  margin-left: auto;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  z-index: 1040;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #E95C31;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #232129F6;
  transform: translateX(-110vw);
  transition: transform 0.35s cubic-bezier(.77,.17,.28,.97);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 34px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #E95C31;
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 0 28px 12px 0;
  transition: color 0.18s, transform 0.2s;
  cursor: pointer;
}
.mobile-menu-close:focus {
  outline: 2px solid #E95C31;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  align-items: flex-start;
  padding-left: 34px;
  margin-top: 16px;
}
.mobile-nav a {
  color: #F6F2ED;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 10px 0;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E95C31;
  background: #F6F2ED11;
  border-radius: 8px;
  padding-left: 4px;
}

/* ==== FOOTER ==== */
footer {
  background: #26232A;
  border-top: 1px solid #36354A;
  color: #F6F2ED;
  padding: 36px 0 12px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
  margin-top: 6px;
}
.footer-nav a {
  color: #E95C31;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #faf6ea;
  text-shadow: 0 0 4px #E95C3181;
}
.footer-contact {
  font-size: 1rem;
  color: #F6F2ED;
  text-align: center;
  line-height: 1.9;
}
.footer-contact a {
  color: #E95C31;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #FFF;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: #F6F2ED;
  margin-top: 8px;
}
.footer-brand img {
  height: 32px;
  width: 32px;
  display: block;
}

/* ==== CARD, SECTION & FLEX CONTAINERS ==== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #25232A;
  border-radius: 18px;
  box-shadow: 0 2px 36px #1a1a2142;
  overflow: hidden;
  position: relative;
  transition: transform 0.18s, box-shadow 0.2s;
}
.card:hover, .card:focus-within {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 10px 40px #E95C3133;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  background: #F6F2ED;
  color: #313131;
  border-radius: 18px;
  box-shadow: 0 2px 36px #E95C3142;
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 410px;
  margin-right: 20px;
  font-size: 1.1rem;
  position: relative;
  border-left: 6px solid #E95C31;
}
.testimonial-meta {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #E95C31;
  font-size: 1rem;
  margin-top: 8px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.feature-grid, .service-list, .workshop-list, .testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
}
.feature {
  background: #27272F;
  border-radius: 18px;
  box-shadow: 0 2px 24px #E95C3122;
  padding: 32px 24px 28px 24px;
  min-width: 240px;
  flex: 1 1 275px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  position: relative;
  border: 1.5px solid #E95C311A;
  transition: box-shadow 0.22s, transform 0.18s;
}
.feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 7px;
}

.feature:hover, .feature:focus-within {
  box-shadow: 0 0 18px #E95C31cc, 0 6px 32px #E95C3118;
  transform: translateY(-3px) scale(1.025);
  border: 1.5px solid #E95C31;
}

/* ==== BUTTONS & INTERACTIVES ==== */
button, .cta-button {
  outline: none;
  border: none;
}
button:focus, .cta-button:focus {
  box-shadow: 0 0 0 3px #E95C3177;
}

/* ==== LISTS and UL/LIs ==== */
ul, ol {
  margin-bottom: 14px;
}
li {
  padding-left: 0.5em;
  margin-bottom: 6px;
}

/* ==== MODALS ==== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #212023;
  border-top: 2px solid #E95C31;
  color: #FFF;
  padding: 24px 14px 24px 14px;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  box-shadow: 0 -2px 32px #E95C3111;
  animation: cookieBannerShow 0.7s cubic-bezier(.57,.08,.33,.90);
}

@keyframes cookieBannerShow {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-banner-text {
  font-size: 1rem;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  margin-bottom: 0;
}
.cookie-banner-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-btn {
  padding: 10px 22px;
  border-radius: 16px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 18px #E95C3142;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s;
}
.cookie-btn.accept {
  background: #E95C31;
  color: #F6F2ED;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus { background: #ff7d49; color: #FFFFFF; }
.cookie-btn.reject {
  background: #39374D;
  color: #faf6ea;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus { background: #25232A; color: #E95C31; }
.cookie-btn.settings {
  background: #232129;
  color: #E95C31;
  border: 1.5px solid #E95C31;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus { background: #E95C31; color: #FFF; }

.cookie-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom:0;
  right:0;
  width: 100vw;
  height: 100vh;
  background: #232129bb;
  z-index: 5100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalBackdropIn 0.33s cubic-bezier(.77,.17,.28,.97);
}
@keyframes cookieModalBackdropIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #25232A;
  color: #F6F2ED;
  border-radius: 22px;
  width: 95vw;
  max-width: 390px;
  box-shadow: 0 8px 54px #23212996;
  padding: 38px 24px 26px 24px;
  position: relative;
  z-index: 5200;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookieModalIn 0.45s cubic-bezier(.77,.17,.28,.97);
}
@keyframes cookieModalIn {
  from { transform: scale(0.93); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  color: #E95C31;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #E95C31;
  width: 21px;
  height: 21px;
}
.cookie-category label {
  color: #F6F2ED;
  font-size: 1rem;
  font-family: 'Inter', Arial;
}
.cookie-category .essential {
  color: #aaa;
  font-style: italic;
  font-size: 0.98rem;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
}
.close-cookie-modal {
  position: absolute;
  top: 13px;
  right: 15px;
  background: none;
  border: none;
  color: #E95C31;
  font-size: 1.5rem;
  cursor: pointer;
}
.close-cookie-modal:focus {
  outline: 2px solid #E95C31;
}

/* ==== MISCELLANEOUS ==== */
::-webkit-scrollbar { width: 8px; background: #212023; }
::-webkit-scrollbar-thumb { background: #232129; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #36354A; }

hr {
  border: 0; border-top: 1px solid #39374D; margin: 32px 0;
}

/* ==== VISUAL EFFECTS & MICROINTERACTIONS ==== */
.feature, .card, .testimonial-card, .cta-button, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: box-shadow 0.22s, transform 0.18s, background 0.18s, color 0.18s;
}
h1, h2, h3 {
  transition: color 0.17s, text-shadow 0.27s;
}

/* ==== RESPONSIVE DESIGN (Mobile-First) ==== */
@media (max-width: 1200px) {
  .container { max-width: 970px; }
  .feature-grid, .service-list, .workshop-list, .testimonial-slider, .testimonial-list { gap: 20px; }
}
@media (max-width: 991px) {
  .container { max-width: 760px; }
  header .container { flex-wrap: wrap; }
  .main-nav { gap: 16px; }
}
@media (max-width: 820px) {
  .footer-contact { font-size: 0.96rem; }
  .feature, .testimonial-card { min-width: 175px; padding: 18px 15px; }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .main-nav {
    display: none !important;
  }
  .cta-button {
    margin-left: 0;
    position: relative;
    z-index: 30;
    font-size: 1rem;
    padding: 10px 20px;
  }
  .mobile-menu-toggle {
    display: inline-block;
    margin-left: auto;
  }
  section {
    padding: 26px 0;
  }
  .section {
    margin-bottom: 32px;
    padding: 24px 10px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .feature-grid, .service-list, .workshop-list, .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item {
    gap: 8px;
    margin-bottom: 12px;
  }
  .testimonial-card, .feature {
    min-width: 0;
    max-width: unset;
    margin-right: 0;
    padding: 16px 10px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.09rem; }

  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .container { padding-left: 8px; padding-right: 8px; }
  header .container img {
    height: 32px;
    margin-right: 10px;
  }
  .cta-button { padding: 8px 10px; font-size: 0.97rem; }
}

/* ==== DARK/LIGHT CONTRAST FOR TESTIMONIALS ==== */
.testimonial-card, .testimonial-card p, .testimonial-meta {
  color: #313131 !important;
  background: #F6F2ED !important;
}
/* ==== SPECIALS: ABOUT, COOKING CLASS, SECTION COLORS ==== */
.about-team-photo {
  border-radius: 20px;
  box-shadow: 0 8px 44px #E95C3133;
}

/* ==== Z-INDEX LAYERING ==== */
header, .mobile-menu, .cookie-banner, .cookie-modal-backdrop, .cookie-modal, .mobile-menu-toggle { z-index: 100; }
.mobile-menu { z-index: 1100; }
.cookie-banner { z-index: 5000; }
.cookie-modal-backdrop, .cookie-modal { z-index: 5200; }

/* ==== OUTLINED FOCUS VISIBLE (A11Y) ==== */
:focus-visible {
  outline: 2px solid #E95C31;
  outline-offset: 1px;
}

/* ==== SUPPORT: Fallback Fonts ==== */
html { font-family: 'Inter', Arial, Helvetica, sans-serif; }

/* ==== PRINT SUPPORT ==== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-backdrop, .cookie-modal { display: none !important; }
  body { color: #222 !important; background: #fff !important; }
}
