/* =========================
   CSS RESET & NORMALIZE
========================== */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, li,
figure, figcaption,
blockquote, dl, dd {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  background: none;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
button, input, textarea, select {
  font: inherit;
  outline: none;
  border: none;
  background: none;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}
html {
  font-size: 16px;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #25334D;
  background: #FAFAFA;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #25334D;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.18;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.subheadline {
  font-size: 1.135rem;
  color: #617193;
  margin-bottom: 24px;
}
p, li, address {
  color: #25334D;
  font-size: 1rem;
}
strong {
  font-weight: 700;
  color: #111926;
}

/* =============================
   GENERAL STRUCTURE CONTAINERS
============================== */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 24px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 17px;
  box-shadow: 0 1px 12px 0 rgba(59, 75, 93, 0.06);
  transition: box-shadow 0.3s;
}
.section:hover {
  box-shadow: 0 6px 32px 0 rgba(59, 75, 93, 0.10);
}

/* ===========================
   FLEXBOX LAYOUTS & UTILITY
=========================== */
.card-container, .content-grid, .feature-grid, .service-list, .values-list, .timeline, .caption-highlights, .photo-story-descriptions, .recipe-teasers, .reportage-teasers, .highlight-quotes, .article-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.card-container {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(59, 75, 93, 0.06);
  transition: box-shadow 0.24s, transform 0.22s;
  padding: 28px 24px;
  min-width: 250px;
  flex: 1 1 320px;
}
.card:hover {
  box-shadow: 0 6px 28px 0 rgba(59,75,93,0.12);
  transform: translateY(-4px) scale(1.012);
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 24px 20px 24px;
  border-radius: 12px;
  background: #F5F7FA;
  box-shadow: 0 1px 6px 0 rgba(50,59,76,0.05);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 420px;
  color: #22262e;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===================
   MAIN NAVIGATION
=================== */
header {
  background: #ffffffee;
  box-shadow: 0px 4px 28px 0 rgba(59,75,93,0.03);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 25;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  padding: 16px 0;
}
.logo {
  margin-right: 26px;
  display: flex;
  align-items: center;
}
.main-nav ul {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav li {
  list-style: none;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #25334D;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.15s, color 0.2s;
  font-weight: 500;
}
.main-nav a:hover:not(.logo):not(.cta), .main-nav a:focus:not(.logo):not(.cta) {
  background: #F1B65622;
  color: #25334D;
}
.cta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  background: #F1B656;
  color: #25334D;
  padding: 12px 28px;
  border-radius: 27px;
  box-shadow: 0 2px 8px 0 rgba(240,187,72,0.06);
  transition: background 0.22s, color 0.18s, box-shadow 0.22s, transform 0.17s;
  margin-left: 18px;
  display: inline-block;
}
.cta.primary {
  background: #25334D;
  color: #FFFFFF;
}
.cta.primary:hover, .cta.primary:focus {
  background: #314163;
  color: #F1B656;
  box-shadow: 0 4px 14px 0 #25334D22;
  transform: translateY(-1px) scale(1.015);
}
.cta:hover, .cta:focus {
  background: #F6CA76;
  color: #111926;
  box-shadow: 0 2px 9px 0 #F1B65622;
  transform: translateY(-1px) scale(1.012);
}

/* Hide mobile menu toggle on desktop */
.mobile-menu-toggle {
  display: none;
}

/* ===========================
   MOBILE NAVIGATION OVERLAY
=========================== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: 0 10px 88px 0 rgba(37, 51, 77, 0.09);
  z-index: 120;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.83,.01,.33,1.01);
  padding: 30px 30px 0 30px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #25334D;
  font-size: 2.2rem;
  margin-bottom: 10px;
  border-radius: 6px;
  line-height: 1;
  padding: 8px;
  transition: background 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F1B65622;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 85vw;
  margin-top: 16px;
}
.mobile-nav a {
  color: #25334D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  margin-right: auto;
  padding: 9px 0 9px 2px;
  transition: color 0.19s, background 0.17s;
  border-radius: 8px;
  min-width: 90px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F1B65633;
  color: #25334D;
}

/* ================
   MAIN - SECTION
================= */
main {
  min-height: 60vh;
  margin-top: 0;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===============
   FEATURE GRIDS
================ */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-top: 8px;
}
.feature-grid li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #F6F8FB;
  padding: 16px 22px;
  border-radius: 8px;
  font-size: 1.08rem;
  font-family: 'Open Sans', Arial, sans-serif;
  min-width: 250px;
  max-width: 340px;
  box-shadow: 0 1px 4px 0 rgba(59,75,93,0.04);
}
.feature-grid li img {
  width: 32px;
  height: 32px;
  display: block;
}

/* ===============
   SERVICE LISTS
================ */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-list li {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 11px;
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 1px 7px 0 rgba(59,75,93,0.06);
  padding: 20px 22px 16px 22px;
  min-width: 250px;
  max-width: 350px;
  margin-bottom: 20px;
  color: #25334D;
}
.service-list .price {
  color: #F1B656;
  font-weight: 700;
  font-size: 1.08rem;
  margin-top: 8px;
}

.values-list, .timeline {
  gap: 16px;
}
.values-list li, .timeline li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.values-list li img, .timeline li img {
  width: 22px;
  height: 22px;
}

.timeline li {
  color: #8BA1C0;
}
.timeline li strong {
  color: #25334D;
}

/* ==========
  TESTIMONIALS
=========== */
.testimonial-card p {
  font-style: italic;
  font-size: 1.07rem;
  color: #22262E;
}
.stars {
  color: #F1B656;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.07em;
}
.testimonial-author {
  color: #25334D;
  font-size: 0.98rem;
  font-weight: 500;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* HIGHLIGHT, RECIPE, QUOTE TEASERS */
.caption-highlights, .reportage-teasers, .highlight-quotes, .recipe-teasers, .photo-story-descriptions {
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
blockquote {
  font-style: italic;
  background: #F6F8FB;
  padding: 16px 24px;
  border-left: 4px solid #F1B656;
  border-radius: 6px;
  color: #25334D;
  margin: 0;
}

/* ===============
   CARDS & RECIPES
================ */
.recipe-teasers ul, .article-overview ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}
.recipe-teasers ul li, .article-overview ul li {
  background: #F1B65622;
  color: #25334D;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.97rem;
}

/* ===============
   FOOTER
================ */
footer {
  background: #f6f8fb;
  border-top: 1px solid #e5eaf3;
  padding: 38px 0 26px 0;
  margin-top: 50px;
  font-size: 1rem;
}
.footer-logo {
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #25334D;
  font-size: 0.96rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 5px;
  transition: background 0.12s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F1B65622;
}
footer address {
  font-style: normal;
  color: #25334D;
  margin-bottom: 0;
  font-size: 0.98rem;
  margin-top: 12px;
  line-height: 1.6;
}
footer a {
  color: #25334D;
  text-decoration: underline;
  word-break: break-all;
}
footer a:hover, footer a:focus {
  color: #F1B656;
  text-decoration: underline;
}

/* MAP EMBED STUB/STYLE */
.map-embed {
  background: #F6F8FB;
  border-radius: 8px;
  padding: 18px 23px;
  color: #314163;
  margin-top: 18px;
  font-size: 1rem;
}

/* =============
   MISC & OTHERS
=============== */
.address strong, address strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #25334D;
}

/* ===============================
   RESPONSIVE (MOBILE-FIRST)
================================ */
@media (max-width: 1024px) {
  .main-nav ul {
    gap: 12px;
  }
  .section {
    padding: 32px 10px;
    margin-bottom: 38px;
  }
  .feature-grid {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 10px;
  }
  .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 0.97rem;
  }
  .main-nav ul, .footer-nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    color: #25334D;
    background: none;
    border: none;
    margin-left: auto;
    padding: 8px 13px 8px 8px;
    border-radius: 6px;
    z-index: 122;
  }
  .mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
    background: #F1B65622;
  }
  .main-nav {
    padding: 12px 0;
    gap: 13px;
  }
  section, .section {
    padding: 28px 5px;
    margin-bottom: 31px;
  }
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.275rem;
  }
  .feature-grid, .service-list, .card-container {
    flex-direction: column;
    gap: 15px;
  }
  .feature-grid li, .service-list li, .card {
    min-width: unset;
    max-width: none;
    width: 100%;
  }
  .content-wrapper {
    gap: 13px;
  }
  .testimonial-card {
    padding: 16px 12px 16px 12px;
    gap: 12px;
    min-width: unset;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 21px;
  }
}
@media (max-width: 540px) {
  .container {
    padding: 0 3vw;
  }
  footer {
    padding: 26px 0 16px 0;
  }
  .footer-nav {
    gap: 10px;
  }
  h1 {
    font-size: 1.26rem;
  }
}

/* ==========================
   FOCUS & ACCESSIBILITY
========================== */
a, button, .cta, .mobile-menu-toggle, .mobile-menu-close {
  outline: none;
  transition: box-shadow 0.17s;
}
a:focus, button:focus, .cta:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  box-shadow: 0 0 0 3px #F1B65680;
}

/* =====================
   BUTTON MICRO EFFECTS
===================== */
button, .cta, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.2s, color 0.23s, box-shadow 0.21s, transform 0.13s;
}
button:active, .cta:active, .mobile-menu-toggle:active, .mobile-menu-close:active {
  transform: scale(0.98);
  box-shadow: none;
}

/* =========================
   COOKIE CONSENT BANNER CSS
========================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: #25334D;
  color: #fff;
  box-shadow: 0 -2px 12px 0 rgba(26,34,48,0.13);
  padding: 20px 14px 16px 14px;
  z-index: 1002;
  transition: transform 0.34s, opacity 0.26s;
  font-size: 1rem;
  gap: 36px;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(60px);
}
.cookie-banner-content {
  max-width: 410px;
  color: #F6F8FB;
  font-size: 1rem;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 21px;
  padding: 8px 22px;
  margin: 0;
  font-weight: 600;
  border: none;
  background: #F1B656;
  color: #25334D;
  transition: background 0.19s, color 0.17s, transform 0.13s;
  box-shadow: 0 1px 8px 0 #F1B65611;
}
.cookie-btn.accept {
  background: #F1B656;
  color: #25334D;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #FFA100;
  color: #25334D;
}
.cookie-btn.reject {
  background: #ECECEC;
  color: #25334D;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #dadada;
}
.cookie-btn.settings {
  background: #25334D;
  border: 1px solid #F1B656;
  color: #F1B656;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #314163;
  color: #F1B656;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 320px;
  width: 92vw;
  max-width: 420px;
  max-height: 93vh;
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 6px 46px 0 rgba(40,60,83,0.23);
  transform: translate(-50%,-50%) scale(1);
  z-index: 2000;
  padding: 32px 24px 22px 24px;
  opacity: 1;
  display: none;
  flex-direction: column;
  gap: 25px;
  overflow-y: auto;
  animation: cookie-modal-in 0.37s cubic-bezier(.21,.9,.32,1.11) 1;
}
@keyframes cookie-modal-in {
  0% { opacity: 0; transform: translate(-50%,-50%) scale(0.95); }
  100% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #25334D;
}
.cookie-modal-close {
  font-size: 2rem;
  background: none;
  color: #25334D;
  border-radius: 6px;
  padding: 3px 12px 3px 7px;
  border: none;
  transition: background 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F1B65633;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 0;
  border-bottom: 1px solid #E8EAF2;
  font-size: 1.02rem;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-weight: 600;
  color: #25334D;
}
.cookie-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  display: inline-block;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle .slider {
  position: absolute;
  cursor: pointer;
  left: 0; top: 0;
  right: 0; bottom: 0;
  background-color: #E8EAF2;
  border-radius: 24px;
  transition: background 0.18s;
}
.cookie-toggle .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background-color: #FFF;
  border-radius: 50%;
  transition: transform 0.19s;
  box-shadow: 0 1px 6px #b1b1b133;
}
.cookie-toggle input:checked + .slider {
  background-color: #F1B656;
}
.cookie-toggle input:checked + .slider:before {
  transform: translateX(18px);
}
.cookie-category .required {
  font-size: 0.96rem;
  color: #8ba1c0;
  margin-left: 7px;
  font-weight: 400;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}

/* ================
   PRINT OPTIMIZED
================= */
@media print {
  header, footer, .cookie-banner, .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}
