/* --- CSS RESET & BASE TYPOGRAPHY --- */
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  min-height: 100vh;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  background: #FFF;
  color: #4E3A1F;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: #86242D; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #64202A; text-decoration: underline; }
ul, ol { padding-left: 24px; }
li { margin-bottom: 0.5em; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Josefin Sans', Arial, sans-serif;
  color: #86242D;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
  font-weight: bold;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  font-weight: 700;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  font-weight: 600;
}
section h2, .content-wrapper h2 { color: #86242D; }
p, ul, ol, blockquote {
  font-size: 1rem;
  color: #4E3A1F;
  margin-bottom: 15px;
  letter-spacing: 0.01em;
}
blockquote {
  font-style: italic;
  color: #68321E;
  background: #F9EFE7;
  border-left: 4px solid #86242D;
  padding: 14px 24px;
  border-radius: 16px;
  margin-bottom: 12px;
}
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: 'Josefin Sans', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: bold;
  padding: 13px 32px;
  margin: 10px 0;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  background: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(134,36,45,0.06);
  outline: none;
}
.btn.primary {
  background: #86242D;
  color: #FFF;
  box-shadow: 0 4px 18px rgba(134,36,45,0.13);
}
.btn.primary:hover, .btn.primary:focus {
  background: #64202a;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 21px rgba(134,36,45,0.16);
}
.btn.secondary {
  background: #EEE1D4; 
  color: #86242D;
  border: 2px solid #86242D;
}
.btn.secondary:hover, .btn.secondary:focus {
  background: #f5ebe2;
  color: #4E3A1F;
  border-color: #4E3A1F;
}
.btn:active {
  transform: scale(0.96);
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: #FFF;
  box-shadow: 0 2px 14px rgba(96,44,31,0.06);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  padding: 0;
  min-height: 76px;
}
.logo-wrapper {
  padding: 12px 18px 12px 0;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.main-nav {
  display: flex;
  gap: 24px;
  margin-left: 10px;
  align-items: center;
  z-index: 2;
}
.main-nav a {
  font-family: 'Josefin Sans', Arial, sans-serif;
  font-size: 1.07rem;
  color: #86242D;
  background: transparent;
  padding: 8px 18px;
  border-radius: 24px;
  transition: background 0.15s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #EEE1D4;
  color: #4E3A1F;
}
header .btn.primary {
  margin-left: auto;
  margin-right: 16px;
  min-width: max-content;
  font-size: 1.01rem;
}

@media (max-width:1100px) {
  .main-nav {
    gap: 13px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    gap: 8px;
  }
  header .btn.primary {
    padding: 8px 18px;
    font-size: 1rem;
  }
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: #86242D;
  color: #fff;
  font-size: 2rem;
  padding: 7px 16px;
  border: none;
  border-radius: 18px;
  margin-left: 13px;
  cursor: pointer;
  transition: background 0.18s, color 0.16s, transform 0.16s;
  z-index: 201;
}
.mobile-menu-toggle:active {
  background: #4E3A1F;
  transform: scale(0.96);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(238, 225, 212, 0.97);
  box-shadow: 0 0 0 1px #d3c0aa, 0 6px 32px rgba(134,36,45,0.15);
  z-index: 2000;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.5,1.48,.21,.88);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #86242D;
  font-size: 2.2rem;
  border: none;
  padding: 25px 38px 10px 15px;
  align-self: flex-end;
  cursor: pointer;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 30px 24px;
}
.mobile-nav a {
  color: #86242D;
  font-family: 'Josefin Sans', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 500;
  background: none;
  border-radius: 20px;
  padding: 8px 12px;
  width: 100%;
  transition: background 0.2s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFF;
  color: #4E3A1F;
}

@media (max-width: 900px) {
  .main-nav { display: none !important; }
  header .btn.primary { display: none !important; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 901px) {
  .mobile-menu,
  .mobile-menu-toggle { display: none !important; }
}

/* --- HERO SECTION --- */
.hero-section {
  background: #EEE1D4;
  border-radius: 0 0 42px 42px;
  box-shadow: 0 6px 34px rgba(142,36,45,0.08);
  margin-bottom: 60px;
  padding: 40px 0 50px 0;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: center;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 13px;
  padding: 0 15px;
}
.hero-section h1 {
  color: #86242D;
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.hero-section p {
  max-width: 600px;
  margin-bottom: 16px;
  color: #4E3A1F;
}

/* --- GENERIC SECTIONS, CARDS, FLEX CONTAINERS --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 34px;
  box-shadow: 0 2px 18px rgba(142,36,45,0.07);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 0 0;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #f9efe7;
  border-radius: 22px;
  box-shadow: 0 2px 12px rgba(134,36,45,0.07);
  padding: 24px 18px;
  flex: 1 1 270px;
  min-width: 260px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.card:hover { box-shadow: 0 9px 31px rgba(134,36,45,0.13); transform: translateY(-4px) scale(1.02); }

.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;
    gap: 20px;
    align-items: flex-start;
  }
}

/* --- FEATURE GRID & HIGHLIGHTS SECTIONS --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  list-style: none;
  margin: 26px 0 0 0;
  padding: 0;
}
.feature-grid > li {
  flex: 1 1 270px;
  background: #f9efe7;
  border-radius: 22px;
  box-shadow: 0 2px 12px rgba(134,36,45,0.10);
  padding: 22px 17px 18px 17px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 225px;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.feature-grid > li:hover {
  box-shadow: 0 9px 41px rgba(134,36,45,0.15);
  transform: translateY(-3px) scale(1.01);
}
.feature-grid img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 1px;
}
.feature-grid h3 {
  color: #86242D;
  font-size: 1.13rem;
  margin-bottom: 6px;
}
.feature-grid p {
  font-size: 1rem;
  color: #5B4038;
}
@media (max-width: 700px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > li {
    min-width: 180px;
  }
}
.category-highlights, .offer-highlights, .feature-highlight {
  display: flex;
  flex-direction: column;
  background: #fffcf7;
  box-shadow: 0 2px 12px rgba(134,36,45,0.05);
  border-radius: 19px;
  gap: 12px;
  padding: 20px 17px;
  margin: 13px 0 15px 0;
  color: #4E3A1F;
}
/* --- CTA --- */
.cta-section, section .cta-section {
  background: #EEE1D4;
  border-radius: 28px;
  box-shadow: 0 2px 14px rgba(142,36,45,0.07);
  text-align: center;
  margin-bottom: 60px;
  padding: 38px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-section h2 {
  color: #86242D;
  font-size: 2rem;
}
.cta-section p {
  color: #4E3A1F;
  margin: 10px auto 20px auto;
  max-width: 440px;
}

/* --- TESTIMONIAL & REVIEWS --- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 23px;
  margin-bottom: 20px;
  background: #fffaf4;
  box-shadow: 0 2px 16px rgba(142,36,45,0.09);
  border: 1.5px solid #f7ebde;
  font-size: 1.14rem;
  color: #4E3A1F;
}
.testimonial-card blockquote {
  border-left: 4px solid #86242D;
  background: none;
  margin-bottom: 0;
  color: #4E3A1F;
}
.testimonial-author {
  font-family: 'Josefin Sans', Arial, sans-serif;
  color: #86242D;
  margin-left: 10px;
  font-size: 0.97rem;
  font-style: normal;
}
@media (max-width: 700px) {
  .testimonial-card { flex-direction: column; align-items: flex-start; padding: 16px; gap: 9px; }
}

/* --- FOOTER --- */
footer {
  background: #EEE1D4;
  padding: 45px 0 20px 0;
  border-radius: 38px 38px 0 0;
  box-shadow: 0 -3px 24px rgba(134,36,45,0.11);
}
footer .container { padding-top: 0; }
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}
.footer-wrapper a img {
  width: 70px;
  height: auto;
  margin-bottom: 15px;
}
.text-section p, .footer-menu a {
  font-size: 1rem;
  color: #4E3A1F;
}
.footer-menu {
  display: flex;
  gap: 7px;
  margin: 7px 0 7px 0;
  flex-wrap: wrap;
}
.footer-menu a {
  padding: 2px 10px;
  border-radius: 16px;
  transition: background 0.17s, color 0.16s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #86242D;
  color: #FFF;
}
.copyright {
  margin-top: 29px;
  text-align: center;
  font-size: 0.97rem;
  color: #a1826d;
  letter-spacing: 0.01em;
}
@media (max-width: 700px) {
  .footer-wrapper { flex-direction: column; gap: 18px; align-items: flex-start; }
  footer .container { padding-bottom: 18px; }
}

/* --- MAP PLACEHOLDER --- */
.map-placeholder {
  background: #f9efe7;
  color: #a1826d;
  border-radius: 18px;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 17px 0 20px 0;
  font-size: 1rem;
}

/* --- POPULAR TAGS FOR BLOG --- */
.popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 9px;
}
.popular-tags span {
  background: #f9efe7;
  border-radius: 16px;
  padding: 5px 14px;
  font-size: 0.99rem;
  color: #86242D;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 5px rgba(134,36,45,0.06);
}

/* --- FEATURE ITEM (FOR SPECIFIC FLEXBOX USE) --- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- CONTACT INFO --- */
.contact-info {
  margin: 24px 0;
  background: #f9efe7;
  border-radius: 16px;
  padding: 18px 20px;
  color: #4E3A1F;
  box-shadow: 0 2px 10px rgba(134,36,45,0.06);
}

/* --- MODAL / OVERLAY GENERAL --- */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(70,48,31,0.38);
  z-index: 4000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.30s;
}
.modal-overlay.open {
  display: flex;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 920px) {
  .container { max-width: 97vw; }
  .section { padding: 28px 8px; }
}
@media (max-width:700px) {
  .section { padding: 19px 5px; }
  .cta-section, section .cta-section { padding: 20px 6px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.33rem; }
}

@media (max-width:480px) {
  html, body { font-size: 15px; }
  .footer-wrapper a img { width: 52px; }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 10px; right: 10px;
  width: calc(100vw - 20px);
  background: #f9efe7;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -2px 28px rgba(142,36,45,0.15);
  padding: 25px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 5000;
  animation: fadeInUpC 0.36s;
}
@keyframes fadeInUpC {
  from {opacity: 0; transform: translateY(60px);} to {opacity: 1; transform: translateY(0);}
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-consent-banner p {
  color: #4E3A1F;
}
.cookie-btn {
  font-size: 0.98rem;
  font-family: 'Josefin Sans', Arial, sans-serif;
  padding: 10px 22px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.14s, color 0.14s, box-shadow 0.14s;
  margin-right: 2px;
}
.cookie-btn.accept {
  background: #86242D; color: #fff; box-shadow: 0 2px 9px rgba(134,36,45,0.11);
}
.cookie-btn.reject {
  background: #EEE1D4; color: #86242D; border: 2px solid #86242D;
}
.cookie-btn.settings {
  background: #fffaf4; color: #86242D; border: 1.7px solid #4E3A1F;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #64202a;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #e8d7c5; color: #4E3A1F;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #F9EFE7; color: #4E3A1F;
}

@media (max-width:600px) {
  .cookie-consent-banner { padding: 15px 4px 10px 11px; left: 0; right: 0; width: 100vw; border-radius: 16px 16px 0 0; }
  .cookie-actions { gap: 9px; }
}

/* --- COOKIE CONSENT MODAL POPUP --- */
#cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right:0; bottom: 0; z-index: 6000;
  background: rgba(70,48,31,0.39);
  align-items: center; justify-content: center;
}
#cookie-settings-modal.open {display: flex;}
.cookie-modal-content {
  background: #fffaf4;
  color: #4E3A1F;
  border-radius: 28px;
  box-shadow: 0 4px 32px rgba(134,36,45,0.19);
  max-width: 410px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 15px;
  padding: 31px 20px 24px 22px;
  animation: fadeIn 0.24s;
  position: relative;
}
.cookie-modal-content h2 {
  margin-bottom: 6px;
  font-size: 1.35rem;
}
.cookie-modal-content .close-modal {
  position: absolute;
  top: 11px; right: 15px;
  background: none; border: none;
  font-size: 1.7rem;
  color: #86242D;
  cursor: pointer;
  border-radius: 14px;
  padding: 7px;
  transition: background 0.16s;
}
.cookie-modal-content .close-modal:hover, .cookie-modal-content .close-modal:focus {
  background: #EEE1D4;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 7px 0 9px 0;
}
.cookie-category label {
  font-size: 1.04rem;
  color: #86242D;
  font-family: 'Josefin Sans', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #EEE1D4;
  border-radius: 28px;
  transition: background 0.18s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #86242D;
}
.cookie-slider:before {
  position: absolute;
  content: '';
  height: 18px; width: 18px;
  left: 3px; bottom: 3px;
  background: #FFF;
  border-radius: 50%;
  transition: transform 0.19s, background 0.16s;
  box-shadow: 0 1px 3px rgba(70,48,31,0.08);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
  background: #FFF5F2;
}
.cookie-category .description {
  font-size: 0.91rem;
  color: #5B4038;
  margin-left: 8px;
}
.cookie-category .always-on {
  color: #b7a192;
  font-size: 0.9rem;
  font-style: italic;
  margin-left: 8px;
}
.cookie-modal-content .cookie-btn {
  margin-right: 9px;
}
@media (max-width: 480px) {
  .cookie-modal-content { padding: 13px 5px 18px 10px; }
  .cookie-modal-content h2 { font-size: 1.1rem; }
}

/* --- LINK FOCUS STYLES --- */
a:focus, button:focus, .btn:focus, .cookie-btn:focus, .close-modal:focus {
  outline: 2px solid #86242D;
  outline-offset: 2px;
}

/* --- UTILITY SPACING CLASSES --- */
.mb-32 { margin-bottom: 32px !important; }
.mt-32 { margin-top: 32px !important; }
.mb-18 { margin-bottom: 18px !important; }
.mt-18 { margin-top: 18px !important; }

/* ------ END OF CSS ------ */
