/* ===============================
   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 {
  height: 100%;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #fff;
}
body {
  min-height:100vh;
  color: #222;
  background: #fff;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  color: #305C2D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E1C697;
}

img {
  max-width: 100%;
  display: block;
  border: 0;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}

button:disabled, input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

strong, b {
  font-weight: 700;
}

/* Font Face for Montserrat Display Font */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');


/* ===============================
   VARIABLES (with fallbacks)
=============================== */
:root {
  --primary: #305C2D;
  --secondary: #E1C697;
  --accent: #FFFFFF;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --shadow-card: 0 4px 20px 0 rgba(48,92,45,0.06);
  --shadow-hover: 0 8px 28px 0 rgba(48,92,45,0.10);
  --radius: 18px;
}


/* ===============================
   TYPOGRAPHY
=============================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: #305C2D;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  text-transform: none;
}
h1 {
  font-size: 2.75rem; /* 44px */
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}
h2 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}

p, li, span, label {
  font-family: var(--font-body);
  line-height: 1.65;
  font-size: 1rem;
  color: #222;
}

.display {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0;
}

/* ===============================
   CONTAINER & BASE WRAPPERS
=============================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

/* ===============================
   HEADER & NAVIGATION (Desktop)
=============================== */
header {
  background: var(--primary);
  color: #fff;
  width: 100%;
  box-shadow: 0 2px 16px 0 rgba(48,92,45,0.08);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 18px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
header nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0 4px 0;
}
header nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--secondary);
  transition: width 0.25s;
  margin-top: 3px;
}
header nav a:hover:after, header nav a:focus:after {
  width: 60%;
}

header img {
  height: 44px;
  min-width: 120px;
  margin-right: 28px;
}

.cta-btn {
  background: var(--secondary);
  color: #305C2D;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: var(--radius);
  border: none;
  box-shadow: var(--shadow-card);
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  margin-left: 16px;
  margin-right: 12px;
  outline: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 2;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-hover);
}

.mobile-menu-toggle {
  display: none;
}

@media (max-width: 1024px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  header img {
    height: 38px;
    min-width: 88px;
  }
  .cta-btn {
    padding: 10px 17px;
    font-size: 1rem;
    margin-left: 10px;
    margin-right: 8px;
  }
}

/* ===============================
   MOBILE NAVIGATION
=============================== */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 8px;
  font-size: 2.2rem;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 1002;
  position: relative;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--primary);
  color: #fff;
}
@media (max-width: 900px) {
  header nav,
  .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 0 30px 0 rgba(48,92,45,0.10);
  z-index: 3000;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 38px;
  padding-left: 0;
  padding-right: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 2rem;
  font-family: var(--font-display);
  font-weight: 900;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  text-align: center;
  z-index: 3001;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #305C2D;
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-top: 38px;
  align-items: flex-start;
  padding: 32px 32px 0 32px;
}
.mobile-nav a {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 12px 0;
  display: block;
  width: 100%;
  border-bottom: 1px solid #E6E6E6;
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
}

@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===============================
   MAIN LAYOUT: Section & Grids
=============================== */
main {
  width: 100%;
  min-height: 500px;
  background: #fff;
  padding-bottom: 48px;
}
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  display: flex;
}
@media (max-width: 900px) {
  section {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

/* Category Tiles -------------------------------------------------- */
.category-tiles {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 18px;
}
.category-tiles a {
  flex: 1 1 0px;
  text-align: center;
  background: #fff;
  border: 2.5px solid var(--primary);
  border-radius: 21px;
  box-shadow: var(--shadow-card);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, box-shadow 0.22s, border 0.18s;
  min-height: 112px;
  min-width: 160px;
  padding: 14px 18px;
  cursor: pointer;
}
.category-tiles a div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:12px;
}
.category-tiles a img {
  height: 44px;
  width: auto;
  margin-bottom:6px;
}
.category-tiles a:hover, .category-tiles a:focus{
  background: var(--primary);
  color: #fff;
  border-color: var(--secondary);
  box-shadow: var(--shadow-hover);
}

@media (max-width: 900px) {
  .category-tiles {
    flex-direction: column;
    gap: 18px;
  }
}

/* ===============================
    CARD & CARD-CONTAINER PATTERNS
=============================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
  position: relative;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: border 0.16s, box-shadow 0.23s;
}
.card:hover, .card:focus {
  border: 2.5px solid var(--secondary);
  box-shadow: var(--shadow-hover);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* ===============================
   FLEXBOX PATTERNS & COMMON CLASSES
=============================== */
.content-grid,
.recipe-grid,
.feature-grid,
.recipe-summary-list,
.recipes-grid-by-country,
.recipe-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.content-grid {justify-content: space-between;}
.feature-grid {flex-wrap: wrap;}
.recipe-grid {gap: 24px;}
.recipes-grid-by-country {gap: 24px;}
.recipe-summary-list, .recipe-list {
  flex-direction: column;
  gap: 18px;
}

.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: 22px;
  }
}

.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 2.5px solid var(--primary);
  border-radius: 17px;
  box-shadow: 0 3px 20px 0 rgba(48,92,45,0.06);
  padding: 20px 26px;
  color: #28312E;
  max-width: 370px;
  font-size: 1.1rem;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, border 0.17s;
}
.testimonial-card strong {
  color: var(--primary);
  font-size: 0.97rem;
  font-weight: 700;
}
.testimonial-card:hover, .testimonial-card:focus {
  border-color: var(--secondary);
  box-shadow: var(--shadow-hover);
}

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

/* ===============================
   TAGS, BADGES, FILTERS
=============================== */
.tag {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: bold;
  border-radius: 8px;
  padding: 4px 14px;
  margin-right: 10px;
  margin-top: 4px;
  margin-bottom: 4px;
}
.filter-tags, .filter-options, .sorting-options {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 10px;
  margin-bottom: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.filter-tags span {
  background: #F8F8F8;
  color: var(--primary);
  border: 1.7px solid var(--primary);
  border-radius: 7px;
  font-size: 0.97em;
  font-weight: 700;
  padding: 4px 12px;
}

.sorting-options button,
.filter-options button {
  background: #E4E4E4;
  color: #aaa;
  font-family: var(--font-display);
  border: none;
  border-radius: 6px;
  padding: 5px 16px;
  font-size: 1.0rem;
  font-weight: bold;
  cursor: not-allowed;
  margin-left: 2px;
  margin-right: 2px;
  margin-top: 3px;
  margin-bottom: 3px;
}

/******************************
   REZEPTITEMS/STAND-OUT-CARDS
******************************/
.recipe-item {
  flex: 1 1 280px;
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 24px 18px 16px 18px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 210px;
  transition: border 0.17s, box-shadow 0.22s;
}
.recipe-item:hover, .recipe-item:focus {
  border: 2px solid var(--secondary);
  box-shadow: var(--shadow-hover);
}

/******************************
   INPUTS
******************************/
.search-filters {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  margin-bottom: 12px;
}
input[type="text"] {
  border: 2px solid var(--primary);
  border-radius: 12px;
  background: #fff;
  color: #444;
  font-size: 1.02em;
  padding: 12px 18px;
  min-width: 240px;
  box-sizing: border-box;
  outline: none;
  transition: border 0.16s;
}
input[type="text"]:disabled {
  background: #f2f2f2;
  opacity:0.8;
}
.disabled-info {
  color: #a44e1f;
  font-family: var(--font-display);
  font-size: 0.97em;
  margin-left: 7px;
}

/******************************
   INFO, BANNER, MINI-HELPERS
******************************/
.background-stories, .mini-facts {
  background: #f9f6ed;
  border-left: 6px solid var(--secondary);
  border-radius: 13px;
  margin-top: 24px;
  padding: 20px 26px;
  color: #624C21;
  font-size: 1.05rem;
  font-style: italic;
  box-shadow: 0 2px 18px 0 rgba(150,120,43,0.05);
}
.mini-facts ul {
  margin-left: 0;
  list-style: disc inside;
}
.background-stories p {
  margin-bottom: 0;
}


/******************************
   FOOTER
******************************/
footer {
  background: var(--primary);
  color: #fff;
  width: 100%;
  padding-top: 36px;
  padding-bottom: 24px;
  margin-top: 36px;
  box-shadow: 0 -3px 23px 0 rgba(48,92,45,0.06);
  font-size: 1rem;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
footer nav a {
  color: #fff;
  text-transform: uppercase;
  font-size: 0.97em;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: color 0.17s;
}
footer nav a:hover, footer nav a:focus{
  color: var(--secondary);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-end;
  min-width: 210px;
  color: #fff;
  font-size: 1em;
  margin-left: 22px;
}
.contact-info span {
  display: flex;
  align-items: center;
    color: #fff;
  gap: 9px;
  font-size: 0.98em;
}
.contact-info img {
  width: 20px;
  height: 20px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
  .contact-info {
    align-items: flex-start;
    min-width: 1px;
    margin-left: 0;
  }
}

/******************************
   RESPONSIVE ADJUSTMENTS
******************************/
@media (max-width: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  h1 {
    font-size: 2.05rem;
  }
  h2 {
    font-size: 1.45rem;
  }
  .category-tiles a {
    font-size: 1.02rem;
    min-width: 1px;
    min-height: 78px;
    padding: 7px 8px;
  }
  .card {
    padding: 16px 10px;
    min-width: 1px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 12px 8px;
  }
  .recipe-item {
    padding: 12px 7px 12px 9px;
    min-width: 1px;
  }
  .feature-grid, .recipes-grid-by-country {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 520px) {
  h1 { font-size: 1.18rem; }
  h2 { font-size: 1.02rem; }
  main, section { padding-left: 2px; padding-right: 2px; }
  .card-container, .content-grid {gap:12px;}
  .testimonial-slider {gap:8px;}
}

/******************************
      ANIMATIONS & HOVERS
******************************/
.card, .testimonial-card, .category-tiles a, .recipe-item {
  transition: box-shadow 0.23s, border 0.17s, background 0.18s;
}
.cta-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.19s, color 0.19s, box-shadow 0.18s;
}

/******************************
   COOKIE CONSENT BANNER
******************************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: #305C2D;
  font-family: var(--font-body);
  box-shadow: 0 -4px 28px 0 rgba(48,92,45,0.14);
  border-top: 4px solid var(--secondary);
  z-index: 4000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 24px 16px;
  gap: 18px;
  animation: banner-slideIn 0.7s cubic-bezier(0.66,0,0.43,1);
}
@keyframes banner-slideIn {
  from { transform: translateY(120%); }
  to { transform: translateY(0); }
}
.cookie-banner .banner-msg {
  max-width: 560px;
  font-size: 1.09rem;
  text-align: center;
  margin-bottom: 13px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.cookie-btn {
  padding: 9px 23px;
  border-radius: 13px;
  font-family: var(--font-display);
  font-size: 1.03rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 3px 23px 0 rgba(48,92,45,0.06);
  transition: background 0.22s, color 0.18s, box-shadow 0.18s;
  margin-right: 4px;
}
.cookie-btn.accept {
  background: var(--primary);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #215119;
  color: var(--secondary);
}
.cookie-btn.reject {
  background: #fff;
  border: 2.5px solid var(--primary);
  color: var(--primary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-btn.settings {
  background: transparent;
  color: var(--primary);
  border: none;
  text-decoration: underline;
  padding: 9px 8px;
  font-weight: 600;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  color: var(--secondary);
}
@media (max-width: 520px) {
  .cookie-banner {
    padding: 14px 2px;
    gap: 7px;
  }
  .cookie-btn {padding:6px 13px;font-size:0.94rem;border-radius:8px;}
  .cookie-banner-actions {gap:7px;}
}

/******************************
  COOKIE MODAL PREFS
******************************/
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(19,24,21,0.45);
  z-index: 4500;
  align-items: center;
  justify-content: center;
  animation: modal-in 0.38s cubic-bezier(0.66,0,0.43,1);
}
@keyframes modal-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 35px 0 rgba(48,92,45,0.12);
  max-width: 400px;
  width: calc(100vw - 32px);
  padding: 30px 24px 28px 24px;
  color: #305C2D;
  font-family: var(--font-body);
  animation: modal-content-in 0.4s cubic-bezier(0.67,0,0.43,1);
  position: relative;
}
@keyframes modal-content-in {
  from { transform: translateY(50px) scale(0.95); }
  to { transform: translateY(0) scale(1); }
}
.cookie-modal-content h3 {
  font-size: 1.45em;
  margin-bottom: 10px;
  color: var(--primary);
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.cookie-category label {
  font-size: 1.06em;
  color: #2c3832;
  font-weight: 600;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--primary);
  border-radius: 8px;
  border: 2px solid var(--primary);
}
.cookie-category.essential label {
  color: #848484;
}
.cookie-category.essential input[type="checkbox"] {
  accent-color: #bbb;
  outline: none;
  cursor: not-allowed;
}
.cookie-pref-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 16px;
}
.cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 18px;
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 1.4rem;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--secondary);
  color: var(--primary);
}
@media (max-width: 520px) {
  .cookie-modal-content {padding:9px 7px 15px 7px;}
  .cookie-modal-content h3 {font-size:1.1em;}
}

/******************************
GEOMETRIC STRUCTURED EXTRAS
******************************/
section, .card-container, .recipe-grid, .feature-grid, .recipes-grid-by-country, .content-grid {
  border-radius: 32px 8px 21px 16px;
  /* geometric look */
}
.card, .testimonial-card, .recipe-item, .category-tiles a {
  box-shadow: 0 4px 18px 0 rgba(48,92,45,0.07);
  border-radius: 20px 4px 20px 13px;
}
hr {
  border: none;
  height: 4px;
  background: var(--secondary);
  width: 70px;
  margin: 34px 0 40px 0;
  border-radius: 11px;
}

/******************************
UTILITY CLASSES
******************************/
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mt-12 { margin-top: 12px !important; }
.mb-12 { margin-bottom: 12px !important; }
.mt-38 { margin-top: 38px !important; }
.mb-38 { margin-bottom: 38px !important; }

/******************************
ACCESSIBILITY & FOCUS
******************************/
:focus {
  outline: 2.5px solid var(--secondary);
  outline-offset: 2px;
}
.cta-btn:focus, .cookie-btn:focus, .cookie-modal-close:focus {
  outline: 3px solid #BFA356;
  outline-offset: 3px;
}

/******************************
PRINT
******************************/
@media print {
  *, *:before, *:after {
    background: #fff !important;
    color: #222 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
}
