/* 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;
}

html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.6;
  background: #181A1B;
  color: #F6F6F2;
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  min-height: 100vh;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: #F9A13B; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #fff200; outline: none; }

/* HEADINGS & TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #F9A13B;
  letter-spacing: -0.5px;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.375rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; margin-bottom: 10px; }

p, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  color: #F6F6F2;
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.7;
}
strong { font-weight: 700; }
ul, ol { padding-left: 1.5em; }

.section { margin-bottom: 60px; padding: 40px 20px; }
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  justify-content: flex-start;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #222;
  border-bottom: 2px solid #393939;
  padding: 0 0;
  min-height: 72px;
  position: relative;
  z-index: 50;
}
.logo {
  padding: 12px 0 12px 20px;
  display: flex;
  align-items: center;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-left: 28px;
}
.main-nav a {
  color: #F6F6F2;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #F9A13B;
}
.cta-btn {
  margin-left: auto;
  margin-right: 24px;
  padding: 10px 32px;
  background: #F9A13B;
  color: #222;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(20,20,20,0.10);
  letter-spacing: 1px;
  transition: background 0.22s, color 0.13s, transform 0.16s;
  position: relative;
  z-index: 2;
}
.cta-btn:hover, .cta-btn:focus {
  background: #fec85b;
  color: #202725;
  transform: translateY(-2px) scale(1.04);
}

/* Burger menu button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #F9A13B;
  cursor: pointer;
  padding: 12px 20px 12px 0;
  z-index: 51;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #F9A13B;
}
/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #212221f2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.82,.22,.37,1.2);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 16px 20px;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F9A13B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  padding: 36px 28px 28px 32px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #F6F6F2;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.23rem;
  padding: 7px 0;
  width: 100%;
  border-bottom: 1px solid #313131;
  transition: color 0.18s, background 0.16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #F9A13B;
  background: #20292B;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
    margin-left: auto;
    margin-right: 14px;
    vertical-align: middle;
  }
}
@media (min-width: 981px) {
  header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .logo { order: 1; }
  .main-nav { order: 2; }
  .cta-btn { order: 3; }
  .mobile-menu-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(120deg, #222 40%, #1b2222 100%);
  border-bottom: 2px solid #293b39;
  padding: 64px 0 48px 0;
  position: relative;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.hero-section .content-wrapper {
  align-items: center;
  gap: 24px;
  text-align: center;
  max-width: 650px;
}
.hero-section h1 {
  color: #F9A13B;
  font-size: 2.4rem;
}
.hero-section p {
  color: #F6F6F2;
  font-size: 1.18rem;
  margin-bottom: 0;
}

/* FEATURES SECTION */
.features, .principles, .features-grid {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #202727;
}
.features .container, .principles .container, .features-grid .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.features .content-wrapper,
.principles .content-wrapper,
.features-grid .content-wrapper {
  width: 100%;
  max-width: 820px;
  align-items: flex-start;
  gap: 24px;
}
.features ul,
.principles ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features ul li,
.principles ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.13rem;
  color: #F6F6F2;
  background: #232828;
  border-radius: 10px;
  padding: 15px 18px;
  box-shadow: 0 1px 2px 0 rgba(10,11,10,0.03);
  border-left: 5px solid #7b8587;
}
.features ul li img {
  width: 32px; height: 32px;
  filter: grayscale(1) brightness(1.3) contrast(1.2);
  opacity: 0.88;
}
/* GRID - Cards, Flex Containers (MANDATORY PATTERNS) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #212727;
  border-radius: 12px;
  box-shadow: 0 2px 14px 1px rgba(26,29,29,0.10);
  border: 1px solid #283838;
  padding: 24px 20px;
  transition: box-shadow 0.16s, border 0.16s, transform 0.18s;
}
.card:hover, .card:focus {
  box-shadow: 0 6px 20px 2px rgba(38,44,44,0.18);
  border-color: #8e9491;
  transform: translateY(-4px) 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: flex-start;
    gap: 18px;
  }
  .hero-section {
    padding: 42px 0 26px 0;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Cards for Service / Recipes / Features */
.service-cards,
.recipe-cards,
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 12px;
  justify-content: flex-start;
}
.service-card,
.recipe-card,
.feature-card {
  background: #1d1f21;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(30,32,32,0.12);
  padding: 24px 20px 20px 20px;
  min-width: 230px;
  flex: 1 0 235px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  border: 1px solid #2d3336;
  transition: box-shadow 0.16s, border 0.14s, transform 0.18s;
}
.service-card:hover, .recipe-card:hover, .feature-card:hover {
  box-shadow: 0 6px 24px rgba(38,44,44,0.19);
  border-color: #425655;
  transform: translateY(-3px) scale(1.011);
}
.service-price {
  font-size: 1.14rem;
  font-weight: bold;
  margin-top: 8px;
  color: #F9A13B;
}
.feature-card img {
  width: 40px; height: 40px; margin-bottom: 10px; opacity: 0.85;
}

/* Save Recipe Button */
.save-to-menu {
  background: #20635E;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.7px;
  margin-top: 12px;
  cursor: pointer;
  box-shadow: 0 1px 6px 0 rgba(20,22,21,0.09);
  transition: background 0.18s;
}
.save-to-menu:hover,
.save-to-menu:focus {
  background: #1E4845;
  color: #F9A13B;
}

/* TABLES */
table {
  width: 100%;
  background: #242828;
  color: #F6F6F2;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 1.07rem;
}
table tr {
  border-bottom: 1px solid #313535;
}
td {
  padding: 12px 18px;
}
td:first-child {
  font-weight: 500;
}

/* ABOUT, LEGAL, MAP, TEXT SECTIONS */
.text-section {
  background: #232828;
  border-radius: 10px;
  padding: 22px 20px 14px 22px;
  margin-bottom: 14px;
  box-shadow: 0 2px 7px rgba(18,18,19,0.09);
}
.map-placeholder {
  background: #202727;
  color: #F6F6F2;
  padding: 24px 14px;
  border-radius: 10px;
  border: 1px solid #26302f;
  text-align: center;
  font-size: 0.96rem;
}

/* FAQ ACCORDIONS */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 18px;
}
.faq-item {
  background: #232829;
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 1px 6px rgba(21,22,22,0.06);
  border-left: 4px solid #7B8587;
  transition: border 0.16s, box-shadow 0.14s;
}
.faq-item h3 {
  color: #F9A13B;
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.faq-item p {
  font-size: 1rem;
}
.faq-item:focus-within, .faq-item:hover {
  border-color: #F9A13B;
}
.faq-resources {
  margin-top: 10px;
}
.faq-resources a {
  color: #F9A13B;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.18s;
}
.faq-resources a:hover {
  color: #FED469;
}

/* STEP LIST / PROCESS */
.step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
  margin-top: 8px;
}
.process-step {
  background: #272b2b;
  border-radius: 10px;
  padding: 18px 18px 12px 18px;
  min-width: 190px;
  flex: 1 0 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 12px;
  border-left: 5px solid #20635E;
  box-shadow: 0 2px 8px 0 rgba(24,27,28,0.10);
  transition: border 0.16s, box-shadow 0.18s;
}
.process-step img {
  height: 28px; margin-bottom: 4px; opacity: 0.88;
}
.process-step strong { color: #F9A13B; margin-bottom: 3px; }
.process-step:hover, .process-step:focus {
  border-left: 5px solid #F9A13B;
  box-shadow: 0 6px 18px rgba(36,36,40,0.18);
}

/* PRICING */
.pricing {
  background: #232828;
  border-radius: 12px;
  padding: 30px 20px;
  margin: 40px 0;
}

/* TESTIMONIALS */
.testimonials, .testimonial {
  background: #202727;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials .container,
.testimonial .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials .content-wrapper,
.testimonial .content-wrapper {
  width: 100%;
  max-width: 780px;
  gap: 20px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F6F6F2;
  color: #232323;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(21,20,22,0.10);
  border-left: 6px solid #20635E;
  transition: border 0.22s, box-shadow 0.22s;
}
.testimonial-card p {
  color: #232323;
  font-size: 1.09rem;
  font-style: italic;
  line-height: 1.65;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #222;
  font-size: 0.97rem;
}
.testimonial-card:hover, .testimonial-card:focus {
  border-left: 6px solid #F9A13B;
  box-shadow: 0 7px 20px rgba(42,44,44,0.15);
}

/* CTA SECTIONS */
.cta {
  background: #F9A13B;
  color: #181A1B;
  border-radius: 12px 12px 0 0;
  padding: 40px 20px;
  margin-bottom: 0;
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta h2 {
  color: #222;
  font-size: 2rem;
}
.cta p {
  color: #222;
}
.cta .cta-btn {
  background: #20635E;
  color: #fff;
  margin-top: 18px;
}
.cta .cta-btn:hover {
  background: #344553;
  color: #F9A13B;
}

/* FOOTER */
footer {
  width: 100%;
  background: #161616;
  border-top: 2px solid #242829;
  padding: 32px 0 16px 0;
  margin-top: 60px;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}
.footer-logo img {
  width: 56px; height: 56px;
  margin-bottom: 11px;
  filter: grayscale(1) brightness(1.4) contrast(1.3);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #F9A13B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 2px;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus { color: #fff; }
.footer-contact {
  color: #8f9ba1;
  font-size: 0.96rem;
  line-height: 1.4;
}
.footer-contact strong {
  color: #F6F6F2;
  font-weight: 600;
}

@media (max-width: 980px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-logo {
    margin-bottom: 0;
  }
}

/* RESPONSIVE FLEX ADAPTATIONS */
@media (max-width: 1020px) {
  .container {
    max-width: 100vw;
    padding: 0 9px;
  }
  .service-cards,
  .recipe-cards,
  .features-grid {
    flex-direction: column;
    gap: 18px;
  }
  .footer-wrapper {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 640px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.275rem; }
  h3 { font-size: 1.1rem; }
  .footer-logo img { width: 42px; height: 42px; }
  .card,
  .service-card,
  .recipe-card,
  .feature-card {
    min-width: 160px;
    padding: 15px 10px 13px 10px;
  }
}

/* BUTTON BASELINE */
button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  padding: 10px 26px;
  background: #20635E;
  color: #F6F6F2;
  box-shadow: 0 1px 8px 0 rgba(20,20,21,0.07);
  cursor: pointer;
  transition: background 0.17s, color 0.14s, box-shadow 0.15s;
}
button:hover, button:focus {
  background: #283838;
  color: #F9A13B;
}

input[type="text"] {
  padding: 10px 18px;
  border: 1px solid #415553;
  border-radius: 30px;
  background: #202727;
  color: #fff;
  font-size: 1em;
  font-family: 'Roboto', Arial, sans-serif;
  margin-top: 14px;
  transition: border 0.18s, box-shadow 0.14s;
  outline: none;
  width: 100%;
  min-width: 0;
  max-width: 95vw;
}
input[type="text"]::placeholder {
  color: #8f9ba1;
  opacity: 0.9;
}
input[type="text"]:focus {
  border-color: #F9A13B;
  box-shadow: 0 0 0 2px #F9A13B80;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #232828;
  box-shadow: 0 -2px 16px 0 rgba(30,30,32,0.23);
  color: #F6F6F2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 28px;
  z-index: 8000;
  animation: cookieSlideUp 0.85s cubic-bezier(.43,.11,.52,.92);
}
@keyframes cookieSlideUp {
  0% { transform: translateY(120px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 auto;
  font-size: 1rem;
  color: #F6F6F2;
  margin-right: 18px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  padding: 6px 18px;
  border-radius: 26px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  margin-left: 2px;
  transition: background 0.18s, color 0.13s;
  background: #F9A13B;
  color: #232828;
  box-shadow: 0 1px 5px rgba(20,21,21,0.08);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fec85b;
  color: #202725;
}
.cookie-btn.secondary {
  background: #292d2d;
  color: #F6F6F2;
  border: 1px solid #3c4242;
}
.cookie-btn.secondary:hover {
  background: #232828;
  color: #F9A13B;
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(32,33,35,0.96);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.18s;
}
@keyframes fadeIn { 0% { opacity: 0 } 100% { opacity: 1 } }
.cookie-modal__dialog {
  background: #242929;
  color: #F6F6F2;
  border-radius: 14px;
  box-shadow: 0 4px 40px 0 rgba(11,12,14,0.22);
  padding: 34px 30px 24px 30px;
  min-width: 321px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  top: 18px; right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}
.cookie-modal__close:hover {
  color: #F9A13B;
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F9A13B;
  font-size: 1.24rem;
  margin-bottom: 0;
}
.cookie-modal__category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-bottom: 8px;
}
.cookie-modal__category label {
  font-weight: 500;
  color: #F6F6F2;
  font-size: 1rem;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}
.cookie-switch input { display: none; }
.cookie-slider {
  position: absolute; cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #393939;
  border-radius: 20px;
  transition: background 0.2s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #F9A13B;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 16px;
  transition: transform 0.2s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(16px);
}
.cookie-modal__desc {
  font-size: 0.96rem;
  color: #CFCFC8;
  margin-bottom: 13px;
}
.cookie-modal__footer {
  display: flex;
  gap: 16px;
  margin-top: 17px;
  justify-content: flex-end;
}
.cookie-modal__category input[disabled] + .cookie-slider {
  opacity: 0.6;
}

@media (max-width: 600px) {
  .cookie-modal__dialog {
    padding: 19px 11px;
    min-width: 0;
    max-width: 97vw;
  }
  .cookie-banner {
    flex-direction: column;
    padding: 18px 4vw 18px 4vw;
    align-items: flex-start;
    gap: 12px;
  }
}

/* THANK YOU PAGE */
.thankyou .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.thankyou {
  padding-top: 48px;
  min-height: 300px;
  background: #1C2322;
}
.thankyou h1, .thankyou p {
  color: #F9A13B;
}

/* VISUAL ACCENTS & INDUSTRIAL MODERN DETAILS */
.section {
  position: relative;
}
.section:before {
  /* subtle metallic vertical accent on left, for industrial vibe */
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 22px;
  width: 8px; height: 42px;
  background: linear-gradient(90deg,#838a8e 80%,#e6e6e6 100%);
  opacity: 0.18;
  border-radius: 8px;
}
@media (max-width: 700px) {
  .section:before {
    width: 5px; height: 24px; top: 18px; left: 0;
  }
}

/* Hide accent on legal pages which need minimal distractions */
.legal.section:before { display: none; }

/* Scrollbar styling (industrial look) */
::-webkit-scrollbar {
  width: 13px;
  background: #202727;
}
::-webkit-scrollbar-thumb {
  background: #484d50;
  border-radius: 8px;
  border: 3px solid #232828;
}

/* SELECTION COLOR */
::selection {
  background: #F9A13B;
  color: #161616;
}

/* SHADOWS & HOVER EFFECTS */
a, button, .cta-btn, .service-card, .recipe-card, .feature-card, .testimonial-card, .faq-item {
  transition: box-shadow 0.15s, border 0.18s, color 0.15s, background 0.13s, transform 0.16s;
}

/* Z-INDEX: Make sure overlays never hide any content. */
header, .mobile-menu, .cookie-banner, .cookie-modal { z-index: 9999; }

@media (max-width: 480px) {
  .section { padding: 24px 5px; margin-bottom: 36px; }
  .hero-section, .cta, .features, .testimonials, .testimonial, .pricing { padding: 18px 2vw; }
}
