/* =============================
   CSS RESET & FONT IMPORTS
============================= */
@import url('https://fonts.googleapis.com/css?family=Oswald:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

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,
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,
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;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  line-height: 1.5;
  background: #21272b;
  color: #E3EAF0;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  min-height: 100vh;
  letter-spacing: 0.04em;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  text-decoration: none;
  color: #F58B2A;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #fff;
  text-decoration: underline;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}
button {
  cursor: pointer;
}

/* =============================
    COLORS & CUSTOM PROPERTIES
============================= */
:root {
  --color-primary: #26323A;
  --color-primary-dark: #1C2327;
  --color-secondary: #F58B2A;
  --color-accent: #E3EAF0;
  --color-accent-dark: #B2B9BE;
  --color-bg: #21272b;
  --color-footer-bg: #181b1e;
  --color-light: #ffffff;
  --color-heading: #E3EAF0;
  --color-card: #23282C;
  --color-metal: #757D86;
  --color-shadow: rgba(18,23,27,0.12);
  --color-error: #f44336;
  --box-radius: 14px;
  --box-shadow: 0 8px 24px rgba(18,23,27,0.16);
  --transition: all 0.2s cubic-bezier(.32,1.25,.32,1);
}

/* =============================
    TYPOGRAPHY HIERARCHY
============================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  color: var(--color-heading);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 18px;
}
h1 { font-size: 2.6rem; line-height: 1.13; margin-bottom: 24px; }
h2 { font-size: 2rem;  margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 16px; font-weight: 600; }
h4, h5, h6 { font-size: 1.11rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.1rem; }
}

p, li, .subheadline {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--color-accent);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.subheadline {
  color: var(--color-metal);
  font-size: 1.18rem;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
strong, b { font-weight: 700; color: var(--color-secondary); }

/* =============================
  LAYOUT, CONTAINERS & SPACING
============================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  background: none;
}
.text-section {
  background: var(--color-card);
  border-radius: var(--box-radius);
  box-shadow: 0 2px 16px rgba(28,35,39,0.17);
  padding: 38px 24px;
  margin-bottom: 35px;
}
@media (max-width: 600px) {
  .text-section { padding: 24px 8px; }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 32px;
    padding: 24px 10px;
  }
}

/* FLEXBOX Required Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: var(--color-card);
  border-radius: var(--box-radius);
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--box-shadow);
  flex: 1 1 320px;
  min-width: 280px;
  padding: 24px;
  color: var(--color-heading);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 12px 40px 1px rgba(18,23,27,0.22);
  transform: translateY(-3px) scale(1.012);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.testimonial-card {
  background: var(--color-accent);
  color: #22292f;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(14,16,18,0.07);
  margin-bottom: 20px;
  position: relative;
}
.testimonial-meta {
  color: #26323A;
  font-size: 1rem;
  font-weight: 500;
  margin-top: -10px;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.star-rating { color: #F58B2A; font-weight: 700; margin-left: 5px; }
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

/* ===============
   NAVIGATION
================ */
header {
  background: var(--color-footer-bg);
  box-shadow: 0 2px 14px rgba(32,38,44,0.14);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 120;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  padding: 18px 20px;
  position: relative;
}
header a img {
  height: 46px;
  margin-right: 24px;
  display: block;
}
nav {
  display: flex;
  gap: 22px;
  flex: 1;
  align-items: center;
}
nav a {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  color: var(--color-accent);
  font-size: 1.09rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 6px 0;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}
nav a:hover, nav a:focus {
  color: var(--color-secondary);
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(93deg,#F58B2A 83%, #ba6824 100%);
  color: #fff;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  border-radius: 30px;
  box-shadow: 0 3px 12px rgba(245,139,42,0.10);
  padding: 12px 32px;
  margin-left: 36px;
  border: none;
  text-transform: uppercase;
  transition: background .22s cubic-bezier(.32,1.25,.32,1), transform .23s;
  cursor: pointer;
  position: relative;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(93deg,#ba6824 10%, #F58B2A 100%);
  color: #FFF;
  transform: translateY(-2px) scale(1.022);
}

/* ===============
   MOBILE NAV MENU
================ */
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: var(--color-light);
  border-radius: 8px;
  font-size: 2rem;
  padding: 6px 14px;
  border: none;
  margin-left: auto;
  transition: background var(--transition);
  z-index: 202;
}
.mobile-menu-toggle:hover,.mobile-menu-toggle:focus {
  background: #ba6824;
  color: #fff;
}
@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: block;
  }
  header nav {
    display: none;
  }
  .btn-primary {
    margin-left: auto;
  }
}
/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,39,43, 0.95);
  z-index: 2200;
  transform: translateX(100vw);
  transition: transform 0.38s cubic-bezier(.56,1.35,.32,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 24px 28px 10px 0;
  background: none;
  color: var(--color-secondary);
  font-size: 2.6rem;
  border: none;
  z-index: 2222;
  align-self: flex-end;
  transition: color .17s;
}
.mobile-menu-close:hover {
  color: #fff; background: none;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 38px 0 42px;
}
.mobile-nav a {
  color: var(--color-accent);
  font-size: 1.3rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-weight: 500;
  display: block;
  padding: 16px 0;
  width: 100%;
  border-bottom: 1px solid #26323a24;
  transition: color .2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  background: none;
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-close, .mobile-nav {display: none !important;}
}

/* ===============
   FEATURE GRIDS and CARDS
================ */
.feature-grid, .tips-grid, .article-previews, .benefits-list, .service-list, .course-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.feature-grid li, .tips-grid li, .article-previews li, .benefits-list li, .service-list li, .course-list li{
  background: var(--color-card);
  color: var(--color-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 8px 0 rgba(30,34,39,0.12);
  padding: 18px 18px 14px 18px;
  font-size: 1rem;
  min-width: 230px;
  flex: 1 1 250px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
  transition: background 0.2s, box-shadow 0.14s;
  margin-bottom: 0;
}
.feature-grid li img, .service-list li img {
  height: 32px;
  width: 32px;
  filter: grayscale(0.3) contrast(1.4);
}
.feature-grid li:hover, .tips-grid li:hover, .service-list li:hover, .course-list li:hover{
  background: #32393e;
  box-shadow: 0 4px 18px #26323A22;
}
.product-highlights ul, .service-highlights ul, .recipe-highlights ul, .service-details ul {
  margin-top: 16px;
  margin-bottom: 12px;
}
.product-highlights ul li, .service-highlights ul li, .recipe-highlights ul li, .service-details ul li {
  background: none;
  border-radius: 0;
  padding-left: 0;
  padding: 0 0 6px 0;
  box-shadow: none;
  color: var(--color-metal);
  font-size: 0.97rem;
  font-weight: 400;
}

/* Misc grids & lists */
.article-previews li {
  min-width: 180px;
  font-weight: 500;
}

@media (max-width: 875px) {
  .feature-grid li, .service-list li, .tips-grid li, .article-previews li {
    min-width: 155px;
    font-size: 0.98rem;
    padding: 14px 10px 12px 10px;
  }
}

/* ===============
  FOOTER
================ */
footer {
  background: var(--color-footer-bg);
  color: var(--color-metal);
  padding: 40px 0 28px 0;
  font-size: 0.95rem;
  border-top: 1.5px solid #26323a44;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 44px;
  justify-content: space-between;
  position: relative;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 190px;
}
footer nav a {
  color: var(--color-accent-dark);
  font-weight: 500;
  font-size: 0.97rem;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-secondary);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-accent);
  font-family: 'Oswald';
  font-size: 1.04rem;
  margin: 0 0 9px 0;
}
.footer-brand img {
  height: 36px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--color-accent-dark);
  font-size: 0.99rem;
  font-family: 'Roboto';
}
.footer-contact a { color: var(--color-secondary); }
@media (max-width: 880px) {
  footer .container {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
  .footer-brand { margin-bottom: 16px; }
}

/* ===============
   MAP/LOCATION
================ */
.map_location p {
  color: var(--color-accent);
  background: var(--color-card);
  border-radius: 8px;
  padding: 14px 18px;
  margin: 8px 0 14px 0;
  font-size: 0.99rem;
  font-family: 'Roboto';
}

/* ===============
   SERVICE & FEATURE ICON GROUPS
================ */
.service-icons, .feature-icons {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 14px;
  align-items: center;
}
.service-icons img, .feature-icons img {
  width: 40px;
  height: 40px;
  opacity: 0.72;
  transition: opacity .15s;
}
.service-icons img:hover, .feature-icons img:hover {
  opacity: 1;
}

/* ===============
   RESPONSIVE
================ */
@media (max-width: 768px) {
  .container {
    padding: 0 6px;
  }
  .card, .testimonial-card {
    min-width: unset;
    flex-basis: 100%;
    padding: 12px 8px;
  }
  .feature-grid,
  .service-list,
  .course-list {
    flex-direction: column;
    gap: 14px;
  }
  header .container { gap: 12px; padding: 10px 8px; }
  .btn-primary,
  .btn-primary[style] { padding: 10px 18px; font-size: 1rem; margin-left: 0; }
  .footer-brand { font-size: 1rem; }
  .service-icons, .feature-icons { gap: 12px; }
}

/* ===============
   UTILITIES
================ */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.nowrap { flex-wrap: nowrap !important; }

/* =============================
   COOKIES CONSENT BANNER
============================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #23282C;
  color: var(--color-accent);
  width: 100vw;
  padding: 20px 18px 18px 18px;
  box-shadow: 0 -4px 14px 0 rgba(28,35,39,0.18);
  z-index: 5100;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform .38s cubic-bezier(.54,1.27,.32,1), opacity .28s;
}
.cookie-banner.active {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner__text {
  flex: 1 1 320px;
  font-size: 1rem;
  margin-bottom: 0;
  color: var(--color-accent);
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  border-radius: 24px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  padding: 9px 22px 9px 22px;
  transition: background .17s, color .17s, box-shadow .17s;
  cursor: pointer;
}
.cookie-accept {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-accept:hover,.cookie-accept:focus {
  background: #ba6824;
}
.cookie-reject {
  background: #31373C;
  color: var(--color-accent-dark);
  border: 1.5px solid #444B50;
}
.cookie-reject:hover,.cookie-reject:focus {
  background: #26323A;
  color: #fff;
}
.cookie-settings {
  background: none;
  color: var(--color-secondary);
  border: none;
  text-decoration: underline;
  padding: 0;
  font-size: 0.99rem;
}
.cookie-settings:hover,.cookie-settings:focus {
  color: #ba6824;
}

@media (max-width: 540px) {
  .cookie-banner {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
    padding: 15px 2vw 10px 4vw;
  }
  .cookie-banner__actions { gap: 9px; }
}

/* ===============
   COOKIE MODAL
================ */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,32,36,0.85);
  z-index: 5200;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
}
.cookie-modal.active {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal__content {
  background: #23282C;
  color: var(--color-accent);
  border-radius: 12px;
  padding: 36px 32px 28px 32px;
  box-shadow: 0 8px 28px #26323A22;
  max-width: 400px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  top: 14px; right: 20px;
  font-size: 1.7rem;
  color: var(--color-secondary);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .18s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #fff;
}
.cookie-category {
  font-weight: 600;
  color: var(--color-secondary);
  margin-top: 4px;
  font-size: 1.06rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-toggle {
  margin-left: 12px;
  width: 42px;
  height: 22px;
  background: #363c3e;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background .18s;
  display: inline-block;
}
.cookie-toggle input[type="checkbox"] {
  width: 0;
  height: 0;
  opacity: 0;
}
.cookie-toggle span {
  position: absolute;
  left: 3px;
  top: 3px;
  background: var(--color-secondary);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transition: left .19s cubic-bezier(.54,1.23,.5,1), background .12s;
}
.cookie-toggle input[type="checkbox"]:checked + span {
  left: 22px;
  background: #8fd39e;
}
.cookie-category.essential .cookie-toggle {
  background: #535b5e;
  cursor: not-allowed;
}
.cookie-category.essential .cookie-toggle span {
  background: #929fa3;
}

.cookie-modal-actions {
  margin-top: 12px;
  display: flex;
  gap: 16px;
}
.cookie-modal-actions button {
  padding: 8px 22px;
  border-radius: 24px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  font-weight: 600;
}
.cookie-save {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-save:hover { background: #ba6824; }
.cookie-cancel {
  background: #363c3e;
  color: var(--color-accent-dark);
}
.cookie-cancel:hover { background: #1C2327; color: #fff; }

@media (max-width: 520px) {
  .cookie-modal__content {
    padding: 20px 10px 18px 10px;
    max-width: 92vw;
  }
}

/* ===============
   MICRO-INTERACTIONS
================ */
.card, .btn-primary, .testimonial-card, .feature-grid li, .service-list li, .tips-grid li, .course-list li {
  transition: box-shadow .16s, transform .13s, background .18s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 36px 0 rgba(33,38,43,0.17);
  transform: translateY(-2px) scale(1.01);
}

/* ================
 SCROLLBAR STYLES
================= */
::-webkit-scrollbar { width: 11px; background: #23282C; }
::-webkit-scrollbar-thumb { background: #2d3539; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #454e54; }

/* ================
 ACCENT LINES etc.
================= */
hr {
  border: none;
  border-top: 2px solid #2e3a41;
  margin: 18px 0;
}

/* ================
  SELECTION
================ */
::selection { background: #F58B2A; color: #fff; }

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