/* CSS RESET & BASE TYPOGRAPHY */
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,
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #fff;
  color: #1a1a1a;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #23607a;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,a:focus {
  color: #c23a00;
}

/* BRAND COLORS */
:root {
  --brand-primary: #23607a;
  --brand-secondary: #f6f6f6;
  --brand-gray-light: #e9e7df;
  --brand-gray: #8d9096;
  --brand-black: #1a1a1a;
  --brand-white: #fff;
  --brand-accent: #c23a00;
}

/* LAYOUT CONTAINERS */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  margin-bottom: 40px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--brand-white);
  border-radius: 14px;
  box-shadow: 0 2px 24px rgba(34, 37, 41, 0.08);
  margin-bottom: 20px;
  padding: 32px 24px;
  flex: 1 1 280px;
  position: relative;
  transition: box-shadow 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 36px rgba(33, 96, 122, 0.12);
  z-index: 1;
}
.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;
  align-items: center;
  gap: 20px;
  background: #f9f9f9;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(26,26,26,0.04);
  margin-bottom: 24px;
  padding: 20px;
  flex-direction: column;
  border-left: 4px solid var(--brand-primary);
}
.testimonial-card blockquote {
  color: var(--brand-black);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 10px;
}
.testimonial-user {
  color: var(--brand-primary);
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER */
header {
  background: var(--brand-white);
  border-bottom: 1px solid var(--brand-gray-light);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 16px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .01em;
  padding: 7px 2px;
  border-bottom: 2px solid transparent;
  color: #1a1a1a;
}
header nav a.cta {
  color: var(--brand-white);
  background: var(--brand-primary);
  border-radius: 24px;
  padding: 7px 22px;
  margin-left: 12px;
  border-bottom: none;
  font-weight: 700;
  box-shadow: 0 2px 8px rgb(35 96 122 / 12%);
  transition: background 0.2s, color 0.2s;
}
header nav a.cta:hover,header nav a.cta:focus {
  background: var(--brand-accent);
  color: #fff;
}
header nav a:hover,header nav a:focus {
  border-bottom: 2px solid var(--brand-primary);
  color: var(--brand-primary);
}
header img {
  height: 36px;
  width: auto;
  margin-right: 10px;
}
.mobile-menu-toggle {
  display: none;
  background: 0;
  border: 0;
  font-size: 1.8rem;
  color: var(--brand-primary);
  padding: 8px 12px;
  border-radius: 6px;
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #ececec;
}

/* MOBILE NAVIGATION */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 84vw;
  max-width: 390px;
  background: var(--brand-white);
  box-shadow: 2px 0 16px 0 rgba(22,22,22,.12);
  z-index: 2200;
  padding: 32px 0 0 0;
  transition: transform 0.35s cubic-bezier(.95,0,.27,.91);
  transform: translateX(-110%);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: 0;
  border: 0;
  color: var(--brand-accent);
  font-size: 2.1rem;
  font-weight: bold;
  cursor: pointer;
  padding: 10px 24px 16px 18px;
  align-self: flex-end;
  transition: background 0.2s;
  border-radius: 6px;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #eee;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 32px 32px 32px;
  margin-top: 0;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-black);
  font-size: 18px;
  padding: 14px 0;
  font-weight: 600;
  border-radius: 0;
  transition: background 0.18s, color 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #ededed;
  color: var(--brand-primary);
}

@media (max-width: 992px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu { display: none !important; }
}

/* HERO & TITLES */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #101010;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.17;
}
h1 {
  font-size: 2.7rem;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 17px;
  font-weight: 700;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
}
h4, h5 {
  font-size: 1.1rem;
}
.subtitle {
  font-size: 19px;
  color: var(--brand-gray);
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 14px;
  font-weight: 500;
}
.text-section {
  max-width: 700px;
}

/* COMMON SPACING */
main section {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 3px 18px 0 rgba(17,17,17,0.051);
  margin-bottom: 32px;
}

@media (max-width: 600px) {
  main section {
    padding: 24px 7px;
    border-radius: 0;
  }
}

/* CATEGORIES LIST */
.categories-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 16px;
}
.categories-list li {
  background: #f3f3f3;
  color: #454545;
  border-radius: 16px;
  padding: 7px 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 1px 6px 0 rgba(144, 144, 144, 0.03);
  transition: background 0.15s;
}
.categories-list li:hover {
  background: #e1e1e1;
  cursor: pointer;
}

.category-highlights {
  margin-bottom: 14px;
}

/* CATEGORY GRID */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.category-grid > div {
  background: var(--brand-secondary);
  border-radius: 14px;
  flex: 1 1 255px;
  min-width: 220px;
  padding: 28px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px 0 rgba(24,24,24,0.034);
  transition: box-shadow 0.2s;
}
.category-grid > div:hover {
  box-shadow: 0 4px 28px 0 rgba(35,96,122,0.09);
}

/* RECIPE PREVIEW GRID */
.recipe-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.recipe-preview-grid > div {
  background: var(--brand-white);
  box-shadow: 0 2px 18px 0 rgba(35, 96, 122, 0.09);
  border-radius: 12px;
  flex: 1 1 270px;
  min-width: 220px;
  padding: 25px 20px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .20s;
  margin-bottom: 2px;
}
.recipe-preview-grid > div h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.recipe-preview-grid > div p {
  font-size: 1rem;
  color: #383838;
  margin-bottom: 10px;
}
.recipe-preview-grid .cta {
  font-size: 1rem;
  padding: 7px 20px;
  border-radius: 18px;
}
.recipe-preview-grid > div:hover {
  box-shadow: 0 6px 32px 0 rgba(35, 96, 122, 0.13);
  z-index: 2;
}

/* PAGINATION */
.pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  margin: 12px 0;
}
.pagination a {
  color: #404040;
  background: #ededed;
  padding: 7px 17px;
  border-radius: 7px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
  border: 1px solid transparent;
  transition: background 0.15s, color 0.18s;
}
.pagination a.active, .pagination a:hover, .pagination a:focus {
  background: var(--brand-primary);
  color: var(--brand-white);
  border: 1px solid var(--brand-accent);
}

/* FILTERS */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
  align-items: flex-end;
}
.filters label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin-right: 7px;
  color: #222;
}
.filters select {
  font-size: 1rem;
  padding: 6px 18px 6px 12px;
  border-radius: 8px;
  border: 1px solid #bbb;
  background: #fff;
  transition: border 0.15s;
  min-width: 140px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.filters select:focus {
  border-color: var(--brand-primary);
}

input[type="search"] {
  width: 100%;
  max-width: 400px;
  font-size: 1.1rem;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #bbb;
  margin: 20px 0 0 0;
  font-family: 'Open Sans', Arial, sans-serif;
}
input[type="search"]:focus {
  outline: none;
  border-color: var(--brand-primary);
}

/* FORM */
form {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-end;
  margin-bottom: 8px;
}
input[type="email"] {
  padding: 10px 13px;
  border-radius: 8px;
  border: 1px solid #bbb;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  flex: 1 1 220px;
  min-width: 150px;
}
input[type="email"]:focus {
  border-color: var(--brand-primary);
}
.privacy-hint {
  color: #878787;
  font-size: 0.95rem;
  margin-top: 3px;
  font-weight: 400;
}

/* BUTTONS & CTA */
.cta, button.cta, .cta:visited {
  background: var(--brand-primary);
  color: var(--brand-white);
  border: 0;
  border-radius: 22px;
  padding: 9px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 9px;
  cursor: pointer;
  box-shadow: 0 3px 18px 0 rgba(35, 96, 122, .14);
  transition: background 0.18s, box-shadow 0.19s, color 0.18s;
  outline: none;
  display: inline-block;
  text-align: center;
  line-height: normal;
  z-index: 2;
}
.cta:hover, .cta:focus {
  background: var(--brand-accent);
  color: #fff;
  box-shadow: 0 6px 32px 0 rgba(194, 58, 0, .12);
}
button, input[type="button"], input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ADDRESS & CONTACT DETAILS */
.address-details p, .footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  color: #363636;
  font-size: 15px;
}
.address-details img, .footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
}
.social-media-links {
  display: flex;
  flex-direction: row;
  gap: 23px;
  margin-top: 10px;
}
.social-media-links a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--brand-primary);
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 17px;
  transition: color 0.2s;
}
.social-media-links a:hover, .social-media-links a:focus {
  color: var(--brand-accent);
}

/* FOOTER */
footer {
  background: #191b1c;
  color: #eee;
  padding: 32px 16px 18px 16px;
  border-top: 1px solid #ececec;
}
footer p {
  color: white !important;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 34px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.27rem;
  font-weight: 700;
  letter-spacing: -.5px;
  color: #fff;
}
.footer-brand img {
  width: 42px;
  height: 42px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: #b6b6b6;
  font-size: 16px;
  transition: color 0.16s;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 3px;
}
.footer-nav a:hover,.footer-nav a:focus {
  color: var(--brand-accent);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 340px;
  font-size: 15px;
  color: #aaa;
}

/* LISTS */
ul, ol {
  padding-left: 25px;
  margin-bottom: 16px;
}
ul li, ol li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #282828;
  margin-bottom: 6px;
}

ul.tip-list {
  padding-left: 19px;
}
ul.tip-list li {
  margin-bottom: 8px;
  color: #343434;
}

/* INTERLINKS (TIPPS & TRICKS) */
.interlinks {
  display: flex;
  flex-direction: column;
  margin-top: 21px;
  gap: 12px;
}
@media (min-width: 600px) {
  .interlinks {
    flex-direction: row;
    gap: 25px;
    align-items: center;
  }
  .interlinks h3 {
    margin-bottom: 0;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .container {
    max-width: 98vw;
    padding: 0 5vw;
  }
  .feature-grid, .category-grid, .recipe-preview-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .footer-nav, .footer-contact {
    margin-top: 18px;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .text-section {
    max-width: 100%;
  }
  .content-wrapper {
    margin-bottom: 27px;
  }
  .section {
    padding: 24px 7px;
    margin-bottom: 29px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.33rem;
  }
  .category-grid > div,.recipe-preview-grid > div,.card {
    min-width: 120px;
    padding: 20px 11px;
  }
  .footer-nav, .footer-contact, .footer-brand {
    min-width: 100%;
  }
  .footer-nav {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 19px;
    margin-left: 0px;
    margin-top: 15px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 2vw;
  }
  .footer-brand {
    font-size: 1.03rem;
  }
  h1 {
    font-size: 1.32rem;
    margin-bottom: 12px;
  }
}
@media (max-width: 600px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* MONOCHROME SOPHISTICATED STYLE SHADOWS */
.card, .category-grid > div, .recipe-preview-grid > div, .testimonial-card {
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}
.card:hover, .category-grid > div:hover, .recipe-preview-grid > div:hover {
  box-shadow: 0 10px 28px rgba(35, 60, 90, 0.14);
}

/* FEATURE GRID ICONS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
}
.feature-grid > div {
  min-width: 180px;
  flex: 1 1 280px;
  background: #f3f3f3;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(180,180,180,0.05);
  padding: 23px 16px 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.19s;
  margin-bottom: 0;
}
.feature-grid > div img {
  width: 36px;
  height: 36px;
  margin-bottom: 11px;
}
.feature-grid > div h3 {
  font-size: 1.08rem;
  margin-bottom: 4px;
}
.feature-grid > div p {
  font-size: 0.98rem;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  color: #222;
  box-shadow: 0 -2px 20px rgba(50,50,50,0.09);
  border-top: 1.5px solid #ededed;
  padding: 27px 14px 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2400;
  gap: 20px;
  font-size: 1rem;
  animation: cookie-banner-slide-in 0.45s cubic-bezier(.89,-0.19,.31,.96);
}
@keyframes cookie-banner-slide-in {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 19px;
  padding: 7px 22px;
  cursor: pointer;
  margin: 0;
  margin-bottom: 0;
  transition: background 0.12s, color 0.13s;
}
.cookie-banner .accept {
  background: var(--brand-primary);
  color: #fff;
  font-weight: 600;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--brand-accent);
}
.cookie-banner .reject {
  background: #e5e5e5;
  color: #2c2c2c;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: #f4e4e0;
  color: var(--brand-accent);
}
.cookie-banner .settings {
  background: #fff;
  color: var(--brand-primary);
  border: 1.2px solid var(--brand-primary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--brand-primary);
  color: #fff;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(29,29,29,0.33);
  z-index: 2500;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fade-in 0.23s cubic-bezier(.86,.46,.37,1.24);
}
.cookie-modal.open {
  display: flex;
}
@keyframes cookie-modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 14px;
  padding: 40px 30px 30px 30px;
  min-width: 320px;
  max-width: 90vw;
  box-shadow: 0 8px 36px 0 rgba(44,44,44,.18);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: cookie-modal-pop 0.37s cubic-bezier(.36,1.04,.58,.99);
}
@keyframes cookie-modal-pop {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal-dialog h2 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.cookie-modal-dialog .modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: 0; border: 0;
  font-size: 1.7rem;
  color: var(--brand-black);
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.17s;
}
.cookie-modal-dialog .modal-close:hover,.cookie-modal-dialog .modal-close:focus {
  background: #eee;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #ededed;
  padding-bottom: 7px;
  margin-bottom: 6px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}
.cookie-category input[type="checkbox"]:disabled + span {
  color: #bbb;
  font-style: italic;
}
.cookie-category span {
  font-size: .97rem;
  color: #444;
}
.cookie-modal-dialog .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 10px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal-dialog button {
  border-radius: 15px;
  padding: 7px 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.12s;
}
.cookie-modal-dialog .accept {
  background: var(--brand-primary);
  color: #fff;
  font-weight: 600;
}
.cookie-modal-dialog .accept:hover {
  background: var(--brand-accent);
}
.cookie-modal-dialog .cancel {
  background: #ededed;
  color: #444;
}
.cookie-modal-dialog .cancel:hover {
  background: #f8e7e5;
  color: var(--brand-accent);
}

/* MONOCHROME SOPHISTICATED THEME OVERRIDES */
body {
  background: var(--brand-secondary);
}
main section, .card, .category-grid > div, .feature-grid > div, .recipe-preview-grid > div {
  background: #fff;
}
h1, h2, h3, h4, h5 {
  color: #111;
}
.subtitle {
  color: #464646;
}

/* VISUAL HIERARCHY EXTRAS */
h1, h2 {
  border-left: 4px solid var(--brand-primary);
  padding-left: 16px;
}
@media (max-width:600px) {
  h1, h2 {
    border-left-width: 3px;
    padding-left: 8px;
  }
}

/* FOCUS STATES for ACCESSIBILITY */
a:focus, .cta:focus, button:focus, input:focus, select:focus {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
  z-index: 10;
}

/* MICRO-ANIMATIONS */
.card, .category-grid > div, .feature-grid > div, .recipe-preview-grid > div {
  transition: box-shadow .23s cubic-bezier(.5, .3, .3, .85), transform .13s;
}
.card:hover, .category-grid > div:hover, .feature-grid > div:hover, .recipe-preview-grid > div:hover {
  transform: translateY(-4px) scale(1.025);
}
.cta, .cookie-banner button, .cookie-modal-dialog button {
  transition: background .18s, color .16s, box-shadow .15s, transform .11s;
}
.cta:active, .cookie-banner button:active, .cookie-modal-dialog button:active {
  transform: scale(.98);
}

/* z-INDEX SAFEGUARD */
.mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 2200;
}

/* Hide outline for mouse users but show on keyboard */
:focus:not(:focus-visible) {
  outline: none;
}

/* Hide scrollbars for modal/mobile menu overlays on iOS/Android */
.mobile-menu, .cookie-modal {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* End of CSS */
