/* =============================
   CSS Reset & Normalize
   ============================= */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,main,menu,nav,output,ruby,section,summary,time,mark,audio,video {
  margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; box-sizing: border-box;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {
  display: block;
}
body {
  line-height: 1; background: #fff;
}
ol, ul {
  list-style: none;
}
a { text-decoration: none; color: inherit; }
img { border: 0; max-width: 100%; display: block; }
button, input, select, textarea {
  font-family: inherit; font-size: inherit; outline: none; border: none; background: none;
}
input, select, textarea { box-sizing: border-box; }

/* ============================
   Root Variables/Brand Colors
   ============================ */
:root {
  --color-bg: #fff;
  --color-bg-alt: #F6F4F1;
  --color-text: #151515;
  --color-heading: #1a1a1a;
  --color-primary: #151515;
  --color-secondary: #ddd;
  --color-accent: #eee;
  --color-border: #232323;
  --color-card: #fafafa;
  --color-shadow: rgba(0,0,0,0.06);
  --color-btn-bg: #151515;
  --color-btn-hover: #333;
  --color-btn-light-bg: #fff;
  --color-btn-light-bg-hover: #eee;
  --color-card-shadow: rgba(30,30,35,0.07);
  --color-link: #151515;
  --color-link-hover: #fff;
  --color-link-bg-hover: #151515;

  --font-display: 'Arvo', 'Georgia', serif;
  --font-body: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: #181818;
    --color-bg-alt: #232323;
    --color-text: #f6f6f6;
    --color-heading: #fff;
    --color-primary: #fff;
    --color-secondary: #444;
    --color-accent: #181818;
    --color-border: #181818;
    --color-card: #232323;
    --color-shadow: rgba(0,0,0,0.16);
    --color-btn-bg: #fff;
    --color-btn-hover: #ddd;
    --color-btn-light-bg: #232323;
    --color-btn-light-bg-hover: #181818;
    --color-link: #fff;
    --color-link-hover: #181818;
    --color-link-bg-hover: #fff;
  }
}

html {
  font-size: 16px; /* base scaling for type */
}

body {
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* TYPE SCALE */
h1, .h1 { font-size: 2.5rem; font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; color: var(--color-heading); line-height: 1.1; margin-bottom: 16px; }
h2, .h2 { font-size: 2rem; font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; color: var(--color-heading); line-height: 1.2; margin-bottom: 16px; }
h3, .h3 { font-size: 1.25rem; font-family: var(--font-display); font-weight: 700; color: var(--color-heading); line-height: 1.3; margin-bottom: 12px; }
h4, .h4 { font-size: 1.1rem; font-family: var(--font-display); font-weight: 600; color: var(--color-heading); margin-bottom: 8px; }

p { margin-bottom: 16px; }
strong { font-weight: bold; }

@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.5rem; }
  h3, .h3 { font-size: 1.1rem; }
  h4, .h4 { font-size: 1rem; }
}

/* =============
   Layout
   ============= */

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg);
}

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

.hero-section {
  align-items: flex-start;
  justify-content: center;
  padding: 40px 0;
  background: var(--color-bg-alt);
  border-radius: 20px;
  box-shadow: 0 0 24px var(--color-card-shadow);
  margin-bottom: 36px;
}

.confirmation-section {
  align-items: center;
  text-align: center;
  gap: 20px;
}

/* ====================
   Header & Navigation
   ==================== */
header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 20px 16px 20px;
  position: relative;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-secondary);
  z-index: 100;
}
.logo {
  margin-right: 32px;
  display: flex;
  align-items: center;
}
.logo img { height: 42px; width: auto; }
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.015em;
  font-weight: 600;
  color: var(--color-text);
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-primary);
  color: var(--color-link-hover);
}

.cta-btn {
  margin-left: auto;
  padding: 12px 28px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-btn-light-bg);
  background: var(--color-btn-bg);
  border-radius: 32px;
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 14px 0 var(--color-shadow);
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.1s;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-btn-hover);
  color: var(--color-btn-light-bg);
  box-shadow: 0 4px 32px 0 var(--color-shadow);
  transform: translateY(-2px) scale(1.02);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 2rem;
  line-height: 1;
  margin-left: 20px;
  padding: 7px 10px;
  border-radius: 6px;
  cursor: pointer;
  display: none;
  z-index: 401;
}
.mobile-menu-toggle:focus {
  background: var(--color-secondary);
}

/* MOBILE NAV MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  left: 100vw;
  background: var(--color-bg-alt);
  box-shadow: -4px 0 32px 0 var(--color-card-shadow);
  z-index: 400;
  transition: transform 0.38s cubic-bezier(.77,0,.18,1) 0s;
  display: flex;
  flex-direction: column;
  width: 100vw; height: 100vh;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(-100vw);
  left: 0;
  pointer-events: all;
}
.mobile-menu-close {
  margin: 24px 24px 0 auto;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  border-radius: 6px;
  padding: 5px 10px;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin: 40px 30px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.15rem;
  padding: 11px 2px;
  border-radius: 4px;
  color: var(--color-primary);
  font-weight: 600;
  width: 100%;
  transition: background 0.18s, color 0.22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-primary);
  color: var(--color-link-hover);
}

@media (max-width: 1020px) {
  .main-nav { gap: 16px; }
  .logo { margin-right: 18px; }
  .cta-btn { padding: 10px 18px; }
}
@media (max-width: 900px) {
  .main-nav { gap: 8px; }
  header { padding-bottom: 10px; }
  .logo img { height: 36px; }
}
@media (max-width: 880px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* =======================
   Footer
   ======================= */
footer {
  margin-top: 64px;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-secondary);
  padding: 32px 20px 16px 20px;
  position: relative;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.footer-nav a {
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 1rem;
  transition: color 0.16s;
  padding: 4px 0;
  border-radius: 4px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #959595;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #444;
}
.footer-brand img {
  height: 26px; width: auto;
}
@media (max-width: 568px) {
  .footer-nav { gap: 10px; font-size: 0.95rem; }
  .footer-brand { gap: 6px; font-size: 0.94rem; }
}


/* =================================
   Cards, Grids, Content Structure
   ================================= */
/* Generic content flex alignments */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  margin-bottom: 20px;
  background: var(--color-card);
  border-radius: 16px;
  box-shadow: 0 6px 24px var(--color-card-shadow);
  padding: 30px 24px 24px 24px;
  color: var(--color-text);
  position: relative;
  flex: 1 1 300px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 12px 36px var(--color-shadow), 0 4px 12px var(--color-card-shadow);
  transform: translateY(-2px) scale(1.01);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 26px 20px 26px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px var(--color-shadow);
  color: #1a1a1a;
  border: 1px solid #e2e2e2;
  font-family: var(--font-body);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 460px;
}
.testimonial-card p {
  font-size: 1.06rem;
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-card strong {
  font-weight: 700;
  font-size: 0.98rem;
  color: #444;
  margin-left: 10px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}


.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div {
  flex: 1 1 240px;
  min-width: 220px;
  background: var(--color-card);
  padding: 26px 18px 24px 18px;
  border-radius: 14px;
  box-shadow: 0 4px 18px var(--color-shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-grid > div:hover, .feature-grid > div:focus-within {
  box-shadow: 0 10px 30px var(--color-shadow), 0 1px 10px var(--color-card-shadow);
  transform: translateY(-2px) scale(1.01);
}
.feature-grid img {
  height: 38px; width: 38px; filter: grayscale(1); margin-bottom: 12px; opacity: 0.82;
}
.feature-grid h3 {
  font-size: 1.12rem; margin-bottom: 8px;
}

.category-teasers,
.recipe-preview-grid,
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.category-teasers > div,
.recipe-preview-grid > div,
.service-list > div {
  flex: 1 1 270px;
  min-width: 220px;
  background: var(--color-card);
  border-radius: 13px;
  box-shadow: 0 2px 12px var(--color-card-shadow);
  padding: 22px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.18s;
}
.category-teasers > div:hover, .recipe-preview-grid > div:hover, .service-list > div:hover {
  box-shadow: 0 8px 24px var(--color-shadow);
  transform: scale(1.02);
}

.category-teasers h3,
.recipe-preview-grid h3,
.service-list h3 {
  margin-bottom: 5px;
}
.category-teasers a, .recipe-preview-grid a, .service-list a {
  display: inline-block;
  color: var(--color-primary);
  border-bottom: 1px solid #222;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.01rem;
  transition: color 0.15s, border 0.15s;
  margin-top: 8px;
  padding-bottom: 2px;
}
.category-teasers a:hover,
.recipe-preview-grid a:hover,
.service-list a:hover {
  color: #1a1a1a;
  border-bottom: 2px solid #000;
}

.service-price {
  font-family: var(--font-body);
  background: #181818;
  color: #fff;
  font-size: 0.99rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 32px;
  margin-top: 10px;
  letter-spacing: 0.01em;
}

.service-detail-overview ul {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 16px; margin: 16px 0 0 0;
}
.service-detail-overview li {
  font-size: 1rem;
  background: #efefef;
  color: #181818;
  border-radius: 8px;
  padding: 4px 16px 4px 10px;
  font-family: var(--font-body);
  margin-bottom: 12px;
}

.newsletter-promo,
.callout-online-classes {
  background: #242424;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 12px var(--color-shadow);
  padding: 24px 32px 20px 32px;
  margin-bottom: 24px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.newsletter-promo a, .callout-online-classes a {
  background: #fff;
  color: #181818;
  border-radius: 40px;
  padding: 7px 22px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  margin-top: 10px;
  box-shadow: 0 1px 6px var(--color-card-shadow);
  transition: background 0.18s, color 0.17s;
}
.newsletter-promo a:hover,.callout-online-classes a:hover {
  background: #f9f9f9;
  color: #111;
}

.note {
  font-size: 1rem;
  background: #f2f2f2;
  color: #191919;
  border-radius: 8px;
  padding: 12px 18px;
  margin: 28px 0 0 0;
  font-family: var(--font-body);
  box-shadow: 0 1px 12px var(--color-shadow);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* Responsive adjust card/grid on small screens */
@media (max-width: 900px) {
  .card-container, .content-grid, .feature-grid, .category-teasers, .recipe-preview-grid, .service-list {
    gap: 14px;
  }
  .feature-grid > div,
  .category-teasers > div, .recipe-preview-grid > div, .service-list > div {
    min-width: 180px;
    padding: 18px 12px 16px 12px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .section {
    margin-bottom: 32px;
    padding: 25px 10px;
  }

  .card-container, .content-grid, .feature-grid, .category-teasers, .recipe-preview-grid, .service-list {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-slider {
    gap: 14px;
  }
  .newsletter-promo, .callout-online-classes {
    padding: 14px 12px 13px 12px;
  }
}

/* Text-content custom styling */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section ul {
  padding-left: 14px;
  margin: 14px 0;
  font-size: 1rem;
}
.text-section li {
  margin-bottom: 4px;
  list-style: disc;
}
.contact-info > p, .contact-note > p {
  margin-bottom: 10px; font-size: 1.02rem;
}
.contact-info strong {
  color: #c9c9c9;
  font-weight: 700;
}
.contact-note {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 14px 14px 11px 14px;
  margin-top: 10px;
  color: #222;
}

/* ==========================
   Inputs/Filters/Buttons
   ========================== */
input[type="text"], select {
  border-radius: 8px;
  border: 1px solid #b1b1b1;
  padding: 8px 12px;
  background: #fafbfa;
  font-family: var(--font-body);
  font-size: 1rem;
  min-width: 120px;
  transition: border 0.2s, background 0.17s;
  margin-right: 8px; /* extra gap in filter row */
  color: #191919;
  margin-bottom: 0;
  margin-top: 0;
}
input[type="text"]:focus, select:focus {
  border-color: #888;
  background: #fff;
}
.recipe-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  align-items: center;
}
@media (max-width: 600px) {
  .recipe-filter {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  input[type="text"], select { min-width: 100%; margin-right: 0; }
}
button {
  font-family: var(--font-body);
  cursor: pointer;
}

/* ===============
   Utility classes
   =============== */
.d-none { display: none !important; }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mt-2 { margin-top: 16px !important; }

/* ======================
   Cookie Consent Banner
   ====================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #191919;
  color: #fff;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px 26px 20px;
  font-size: 1rem;
  box-shadow: 0 -6px 32px 0 var(--color-card-shadow);
  transition: transform 0.32s;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-consent-banner.hide {
  transform: translateY(140%);
  pointer-events: none;
}
.cookie-consent-banner__text {
  max-width: 650px;
  flex: 1 1;
}
.cookie-consent-banner__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 7px 22px;
  border-radius: 24px;
  border: none;
  background: #fff;
  color: #191919;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.12s, color 0.12s, box-shadow 0.14s;
  box-shadow: 0 2px 12px var(--color-card-shadow);
  margin-right: 2px;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #ececec;
  color: #181818;
}
.cookie-btn--alt {
  background: #191919;
  color: #fff;
  border: 1px solid #efefef;
  box-shadow: 0 2px 12px var(--color-card-shadow);
}
.cookie-btn--alt:hover, .cookie-btn--alt:focus {
  background: #fff;
  color: #191919;
}

@media (max-width: 768px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 9px 16px 9px;
    font-size: 0.99rem;
    gap: 10px;
  }
  .cookie-consent-banner__actions {
    flex-direction: row;
    gap: 9px;
  }
}

/* =====================
   Cookie Modal Overlay
   ===================== */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 5002;
  background: rgba(0,0,0,0.63);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.28s;
  opacity: 1;
  pointer-events: all;
}
.cookie-modal.hide {
  opacity: 0; pointer-events: none;
}
.cookie-modal__wrapper {
  background: #fff;
  color: #191919;
  border-radius: 16px;
  box-shadow: 0 10px 40px 0 var(--color-shadow);
  padding: 34px 34px 34px 34px;
  min-width: 320px; max-width: 98vw; width: 430px;
  font-family: var(--font-body);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 2;
  animation: fadeInUp 0.35s cubic-bezier(.46,.23,0,.93);
}
@keyframes fadeInUp {
  0% { transform: translateY(56px); opacity: 0.4; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal__close {
  position: absolute;
  top: 18px; right: 26px;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}
.cookie-modal__close:hover,
.cookie-modal__close:focus {
  color: #191919;
}
.cookie-modal__headline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 3px;
}
.cookie-modal__desc {
  font-size: 1rem;
  color: #242424;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 18px 0;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  background: #f1f1f1;
  border-radius: 10px;
  padding: 8px 12px 8px 12px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #181818;
  scale: 1.20;
}
.cookie-category__label {
  font-size: 1.01rem;
  font-family: var(--font-body);
}
.cookie-category__desc {
  font-size: .94rem;
  color: #575757;
  margin-top: 3px;
}
.cookie-category .cookie-category__lock {
  margin-left: 6px;
  font-size: 1.02em;
  color: #b5b5b5;
}
.cookie-modal__footer {
  display: flex; flex-wrap: wrap; gap: 13px; margin-top: 10px;
}
@media (max-width: 768px) {
  .cookie-modal__wrapper {
    min-width: 0; width: 95vw; padding: 16px 6px 16px 12px;
  }
  .cookie-modal__close {
    right: 13px; top: 12px; font-size: 1.3rem;
  }
}

/* ============
   Animations
   ============ */
a, .cta-btn, .cookie-btn, .main-nav a, .mobile-nav a, .card, .feature-grid > div, .category-teasers > div, .recipe-preview-grid > div, .service-list > div {
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.18s !important;
}

/* Hide scrollbars for mobile-menu */
.mobile-menu {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.mobile-menu::-webkit-scrollbar { display: none; }

/* ===================================
   Accessibility/Selection Highlights
   =================================== */
::selection {
  background: #181818;
  color: #fff;
}

/* =======
   Print
   ======= */
@media print {
  header, footer, .mobile-menu, .cookie-consent-banner, .cookie-modal {
    display: none !important;
  }
  main { padding: 0; background: #fff; }
  .container { max-width: none; padding: 0; }
}
