/* --------------------------
   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%;
  vertical-align: baseline;
  font-family: inherit;
  box-sizing: border-box;
}
/* HTML5 display-role reset */
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F5EFE6;
  color: #222;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img, picture {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  color: #004165;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C27A1C;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
input, textarea, select {
  font-family: inherit;
  outline: none;
}
/* -----------------------------
   TYPOGRAPHY (elegant_classic)
------------------------------ */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  src: local('Playfair Display'), url('https://fonts.googleapis.com/css?family=Playfair+Display:400,700&display=swap');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400 700;
  src: local('Open Sans'), url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #003354;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.75rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.35rem;
}
h4 {
  font-size: 1.125rem;
}
body, p, ul li, ol li, .content-wrapper {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #222;
}
strong, b {
  font-weight: 700;
}
.text-section h2, .text-section h3, .text-section h4 {
  color: #004165;
}
.text-section p {
  margin-bottom: 18px;
}
/* --------------
   CONTAINER
--------------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
}
.text-section {
  padding: 40px 0 0 0;
}
/* --------------------------
   HEADER & NAVIGATION
-------------------------- */
header {
  background: #FFFFFF;
  box-shadow: 0 2px 16px rgba(0,42,84, 0.06);
  position: sticky;
  top: 0;
  z-index: 90;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header a img {
  height: 42px;
  width: auto;
  margin-right: 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #003354;
  font-weight: 600;
  padding: 2px 2px 2px 0;
  transition: color .2s;
  position: relative;
}
.main-nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #C27A1C;
  border-radius: 1px;
  position: absolute;
  left: 0;
  bottom: -2px;
  transition: width 0.2s cubic-bezier(.4,1.3,.7,1);
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 100%;
}
.cta-button {
  background: #C27A1C;
  color: #FFF;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  border-radius: 24px;
  padding: 10px 28px;
  font-size: 1.05rem;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  box-shadow: 0 2px 6px rgba(0,42,84, 0.05);
  border: none;
  outline: none;
  margin-left: 24px;
  letter-spacing: 0.01em;
  display: inline-block;
  cursor: pointer;
}
.cta-button:hover, .cta-button:focus {
  background: #A6690E;
  color: #fff3e3;
  box-shadow: 0 4px 18px rgba(194, 122, 28, 0.13);
}
/* ---------------
   MOBILE NAV MENU
---------------- */
.mobile-menu-toggle {
  display: none;
  background: #FFF;
  color: #003354;
  font-size: 2rem;
  border-radius: 10px;
  padding: 8px 12px;
  margin-left: 18px;
  line-height: 1;
  transition: background 0.18s;
  z-index: 112;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F5EFE6;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: #FFFFFF;
  box-shadow: -4px 2px 36px rgba(0,42,84,0.21);
  z-index: 120;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 0;
  overflow-y: auto;
  transition: transform .36s cubic-bezier(.82,-0.1,.19,1.14), opacity .25s;
  transform: translateX(-100%);
  opacity: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.15rem;
  margin: 22px 20px 0 0;
  color: #003354;
  background: transparent;
  border-radius: 7px;
  transition: background .15s;
  padding: 2px 7px;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #F5EFE6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 32px 32px 32px;
  width: 100vw;
}
.mobile-nav a {
  font-size: 1.28rem;
  color: #003354;
  font-family: 'Playfair Display', serif;
  padding: 12px 6px;
  border-radius: 4px;
  width: 100%;
  font-weight: 600;
  transition: background 0.19s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F5EFE6;
  color: #C27A1C;
}
@media (max-width: 1050px) {
  .main-nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1051px) {
  .mobile-menu {
    display: none !important;
  }
}
/* -----------------------------------
   HERO SECTION & PAGE SECTIONS
----------------------------------- */
.hero {
  background: #F5EFE6;
  background-image: none;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 32px rgba(0,65,101, 0.06);
  margin-bottom: 60px;
  padding: 40px 20px 56px 20px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 8px;
}
.hero .content-wrapper {
  align-items: center;
  max-width: 600px;
  text-align: center;
  gap: 18px;
}
.hero h1 {
  margin-top: 8px;
  margin-bottom: 13px;
  color: #003354;
}
.hero p {
  margin-bottom: 18px;
  color: #392e25;
}
.section {
  background: #FFFFFF;
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 14px rgba(0,65,101,0.07);
}
.section:last-child {
  margin-bottom: 0;
}
.cta-banner {
  background: #D39038;
  color: #FFF;
  margin-bottom: 0 !important;
}
.cta-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 8px;
}
.cta-banner .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 16px;
}
.cta-banner h2 {
  color: #fff;
}
/* ---------------
   GRID ELEMENTS
---------------- */
.features-grid, .feature-teasers, .category-list, .country-highlights, .team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.features-grid > div, .feature-teasers > div, .country-highlights > div, .team-member {
  background: #FAF7F3;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,65,101,0.04);
  padding: 32px 22px 24px 22px;
  flex: 1 1 250px;
  min-width: 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.23s, transform 0.16s;
}
.features-grid > div img {
  height: 45px;
  width: auto;
  margin-bottom: 17px;
}
.features-grid > div:hover, .feature-teasers > div:hover, .country-highlights > div:hover, .team-member:hover {
  box-shadow: 0 6px 24px rgba(194,122,28,0.11);
  transform: translateY(-2px) scale(1.025);
}
@media (max-width: 800px) {
  .features-grid, .feature-teasers, .category-list, .country-highlights, .team-grid {
    gap: 18px;
    flex-direction: column;
  }
  .features-grid > div, .feature-teasers > div, .country-highlights > div, .team-member {
    min-width: unset;
    width: 100%;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFFFFF;
  box-shadow: 0 2px 14px rgba(0,65,101,0.09);
  border-radius: 16px;
  margin-bottom: 20px;
  padding: 28px 24px 22px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow .18s;
}
.card:hover {
  box-shadow: 0 4px 26px rgba(194,122,28,0.10);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
/* text-image sections, testimonial-cards, feature-items */
.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: 24px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F5EFE6;
  border-radius: 12px;
  box-shadow: 0 2px 9px rgba(0,50,84,0.035);
  margin-bottom: 20px;
  font-style: italic;
  color: #304151;
  font-size: 1.14rem;
  min-height: 44px;
  transition: background 0.18s, box-shadow 0.15s;
}
.testimonial-card strong {
  color: #003354;
  font-style: normal;
  font-size: 1rem;
  margin-left: 12px;
}
.testimonial-card:hover {
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(194,122,28,0.11);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* ---------------
   RECIPE SECTIONS
---------------- */
.recipe-filter {
  margin-bottom: 16px;
}
.recipe-filter h3 {
  margin-bottom: 7px;
}
.filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 10px;
}
.filter-list li {
  background: #FAF7F3;
  border-radius: 10px;
  padding: 6px 13px;
  font-size: 0.94rem;
  color: #003354;
  margin-bottom: 4px;
}
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}
.category-list li {
  background: #D39038;
  color: #fff;
  border-radius: 18px;
  padding: 7px 18px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  margin-bottom: 4px;
  transition: background 0.15s;
}
.category-list li:hover {
  background: #A6690E;
}
.recipe-list {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.recipe-list li {
  padding: 8px 0;
  border-bottom: 1px solid #ece7de;
}
.recipe-list li:last-child {
  border-bottom: none;
}
.recipe-teaser {
  background: #FAF7F3;
  border-radius: 14px;
  padding: 28px 22px;
  box-shadow: 0 2px 14px rgba(0,65,101,0.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.recipe-teaser h3 {
  color: #A6690E;
}
/* ---------------
   SERVICE & TIPS
---------------- */
.service-list, .tips-list, .tip-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-list li, .tips-list li {
  background: #FAF7F3;
  border-radius: 12px;
  padding: 20px 18px 18px 18px;
  margin-bottom: 12px;
  box-shadow: 0 1px 7px rgba(194,122,28,0.05);
}
.service-list li h3 {
  color: #004165;
  margin-bottom: 7px;
}
.service-list li strong {
  color: #A6690E;
  font-size: 1.08rem;
}
.tip-categories {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}
.tip-categories li {
  background: #FFF;
  border: 1px solid #D39038;
  color: #A6690E;
  border-radius: 14px;
  padding: 8px 19px;
  font-size: 0.99rem;
}
.highlighted-tip {
  background: #D39038;
  color: #fff;
  border-radius: 11px;
  padding: 24px 20px 14px 20px;
  margin-top: 16px;
  box-shadow: 0 1px 10px rgba(0,51,84,0.07);
}
.highlighted-tip h3 {
  color: #fff;
}
/* ---------------
   CONTACT PAGE
---------------- */
.contact-details p {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.07rem;
  margin-bottom: 13px;
  color: #003354;
}
.map-placeholder {
  background: #FAF7F3;
  border: 1.5px dashed #C27A1C;
  border-radius: 14px;
  margin-top: 24px;
  padding: 22px 18px;
  text-align: center;
}
/* ---------------
   TEAM GRID
---------------- */
.team-member {
  background: #FFF;
  border: 1.5px solid #F5EFE6;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(0,65,101,0.05);
  padding: 28px 22px;
  min-width: 210px;
  margin-bottom: 18px;
  transition: box-shadow 0.15s, border-color 0.13s;
}
.team-member:hover {
  border-color: #D39038;
  box-shadow: 0 4px 20px rgba(194,122,28,0.09);
}
/* ---------------
   FOOTER
---------------- */
footer {
  background: #004165;
  color: #F5EFE6;
  padding: 44px 0 0 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  padding-bottom: 44px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
  font-size: 1.06rem;
}
.footer-nav a {
  color: #F5EFE6;
  transition: color .17s;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #D39038;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #f5efe6;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
}
footer img {
  max-height: 37px;
  display: block;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
/* ---------------
   CONFIRMATION
---------------- */
.confirmation {
  background: #F5EFE6;
  min-height: 330px;
  border-radius: 16px;
  margin-top: 48px;
  margin-bottom: 44px;
  box-shadow: 0 2px 14px rgba(0,65,101,0.08);
  padding: 42px 20px;
}
.confirmation .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.confirmation h1 {
  color: #003354;
}
.confirmation h2 {
  margin-bottom: 10px;
  color: #C27A1C;
}
/* --------------------
   COOKIE CONSENT BANNER
--------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #FFFFFF;
  color: #003354;
  z-index: 9999;
  box-shadow: 0 -2px 16px rgba(0,41,65,0.10);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  padding: 28px 24px 26px 24px;
  font-size: 1rem;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  animation: bannerFadeIn 0.6s cubic-bezier(.32,1.3,.7,1);
}
@keyframes bannerFadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-consent-banner p {
  margin: 0;
  flex: 1 1 300px;
}
.cookie-consent-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-consent-btn {
  background: #004165;
  color: #fff;
  border-radius: 22px;
  border: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 8px 22px;
  transition: background 0.17s, color .13s, box-shadow 0.15s;
  box-shadow: 0 1px 6px rgba(0,41,65,0.07);
  cursor: pointer;
}
.cookie-consent-btn:hover, .cookie-consent-btn:focus {
  background: #C27A1C;
  color: #fff3e3;
}
.cookie-settings-btn {
  background: #fff;
  color: #C27A1C;
  border: 1.5px solid #C27A1C;
  transition: background 0.13s, color 0.13s, border 0.18s;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #faede0;
  color: #004165;
  border-color: #004165;
}
/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10001;
  width: 100vw;
  height: 100vh;
  background: rgba(17, 29, 44, 0.31);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalBackdropIn 0.37s cubic-bezier(.7,-0.2,.36,1.23);
}
@keyframes modalBackdropIn {
  from { opacity:0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 420px;
  width: 95%;
  padding: 36px 30px 24px 30px;
  box-shadow: 0 8px 48px rgba(0,41,65,0.14);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalIn 0.44s cubic-bezier(.7,-0.2,.36,1.23);
  position: relative;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(35px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h3 {
  color: #003354;
  font-size: 1.25rem;
  margin-bottom: 5px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-category label {
  flex: 1;
  font-size: 1.04rem;
  color: #222;
  font-weight: 600;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.cookie-toggle-switch {
  width: 46px;
  height: 22px;
  background: #ece6dc;
  border-radius: 30px;
  position: relative;
  transition: background 0.11s;
  display: flex;
  align-items: center;
}
.cookie-toggle-switch input {
  opacity: 0;
  width: 46px;
  height: 22px;
  position: absolute;
  cursor: pointer;
}
.cookie-toggle-slider {
  position: absolute;
  left: 2px;
  top: 3px;
  width: 17px;
  height: 17px;
  background: #C27A1C;
  border-radius: 50%;
  transition: left 0.19s, background 0.13s;
}
.cookie-toggle-switch input:checked ~ .cookie-toggle-slider {
  left: 26px;
  background: #004165;
}
.cookie-toggle-switch[aria-disabled="true"] {
  background: #ddd8d2 !important;
  cursor: not-allowed;
}
.cookie-toggle-switch[aria-disabled="true"] .cookie-toggle-slider {
  background: #bdb6ae;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 16px;
  font-size: 1.55rem;
  border: none;
  background: none;
  color: #003354;
  cursor: pointer;
  border-radius: 6px;
  transition: background .12s;
  padding: 2px 7px;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #F5EFE6;
}
.cookie-modal-footer {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 18px;
}
/* ---------------
   ELEGANT SPACING
---------------- */
@media (min-width: 1120px) {
  .container {
    padding: 0 0;
  }
}
.section, .hero, .confirmation, .cta-banner {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .feature-teasers, .features-grid, .content-grid, .team-grid, .country-highlights, .category-list, .tips-list, .service-list {
  gap: 24px;
  flex-wrap: wrap;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* ---------------
   RESPONSIVE
---------------- */
@media (max-width: 700px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.45rem;
  }
  .hero, .section, .cta-banner, .confirmation {
    padding: 32px 9px;
	margin-bottom: 38px;
  }
  .confirmation {
    margin-top: 20px;
    margin-bottom: 29px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    padding: 21px 10px 18px 10px;
    gap: 13px;
  }
  .cookie-consent-buttons {
    gap: 7px;
  }
}
@media (max-width: 480px) {
  .hero, .section, .cta-banner, .confirmation {
    padding: 18px 2px;
    margin-bottom: 23px;
  }
  .features-grid > div, .feature-teasers > div, .country-highlights > div, .team-member, .card {
    padding: 17px 7px 10px 7px;
  }
  .footer-contact p,
  .contact-details p {
    font-size: 0.97rem;
  }
}
/* ---------------
   SCROLLBAR STYLING
---------------- */
::-webkit-scrollbar {
  width: 8px;
  background: #F5EFE6;
}
::-webkit-scrollbar-thumb {
  background: #ece7de;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #D39038;
}
/* ---------------
   FOCUS OUTLINE
---------------- */
a:focus, button:focus, .cta-button:focus {
  outline: 2px solid #D39038;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px #f1e3cd;
}
/* ---------------
   ANIMATIONS
---------------- */
.cta-button, .cookie-consent-btn, .cookie-settings-btn {
  transition: background 0.19s, color 0.19s, box-shadow 0.19s;
}
.card, .features-grid > div, .feature-teasers > div, .team-member, .testimonial-card, .recipe-teaser {
  transition: box-shadow 0.16s, transform 0.13s;
}
.card:hover, .features-grid > div:hover, .feature-teasers > div:hover, .team-member:hover {
  box-shadow: 0 4px 22px rgba(194,122,28, 0.13);
  transform: translateY(-2px) scale(1.03);
}
.testimonial-card:hover {
  background: #fff9f2;
  box-shadow: 0 8px 28px rgba(0,65,101, 0.13);
}
/* ---------------
   UTILITY CLASSES
---------------- */
.text-center {
  text-align: center !important;
}
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 10px !important; }
.mb-1 { margin-bottom: 10px !important; }
.gap-16 { gap: 16px !important; }
.gap-8 { gap: 8px !important; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.rounded { border-radius: 13px !important; }
.shadow { box-shadow: 0 2px 17px rgba(0,41,65,0.09) !important; }

/* ========== END ========== */
