/* --- CSS RESET & NORMALIZATION (Mobile-first) --- */
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;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #F1E7D5;
  color: #4C372D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #885339;
  text-decoration: underline;
  background: transparent;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #397358;
  outline: none;
}
ul, ol {
  padding-left: 1.25em;
  margin-bottom: 16px;
}
li + li {
  margin-top: 8px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
th, td {
  padding: 12px 10px;
  border-bottom: 1px solid #e5dcc9;
  text-align: left;
}
th {
  font-family: 'Roboto Slab', serif;
  background: #ede5d2;
  color: #885339;
  font-weight: 700;
}

/*--- TYPOGRAPHY SCALE ---*/
h1, .h1 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 2.5rem;
  line-height: 1.18;
  font-weight: 700;
  margin-bottom: 24px;
  color: #6b1f00;
}
h2, .h2 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 20px;
  font-weight: 600;
  color: #885339;
}
h3, .h3 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 500;
  color: #397358;
}
h4, h5, h6 {
  font-family: 'Roboto Slab', Georgia, serif;
  color: #885339;
}
p, .text-section p, .content-wrapper p, li, td {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  color: #4C372D;
}
strong {
  font-weight: 700;
  color: #885339;
}
em {
  color: #397358;
}

/*--- GLOBAL CONTAINER ---*/
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* --- FLEXBOX LAYOUT PATTERNS --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 24px;
}
@media (min-width: 992px) {
  .section {
    padding: 60px 40px;
  }
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 rgba(100,70,50,0.07);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  min-width: 260px;
  flex: 1 1 260px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(100,70,50,0.12);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 16px 0 rgba(136,83,57,0.09);
  margin-bottom: 20px;
  font-size: 1.02rem;
  border-left: 5px solid #397358;
  max-width: 430px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 32px 0 rgba(136,83,57,0.16);
  transform: translateY(-2px) scale(1.02);
}
.testimonial-card p {
  font-style: italic;
  color: #4C372D;
}
.testimonial-card span {
  color: #397358;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 2px 6px 0 rgba(136,83,57,0.05);
  padding: 0;
  position: relative;
  z-index: 51;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  flex-wrap: wrap;
  position: relative;
}
.main-nav > a img {
  max-height: 52px;
  width: auto;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}
.main-nav ul li {
  margin-bottom: 0;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #885339;
  padding: 7px 14px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  text-decoration: none;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: #F1E7D5;
  color: #397358;
}
.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #885339;
  color: #fff;
  border-radius: 27px;
  padding: 13px 32px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 10px 0 rgba(136,83,57,0.08);
  letter-spacing: 0.02em;
  margin-left: 10px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
.btn-primary:hover, .btn-primary:focus {
  background: #6b1f00;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(136,83,57,0.20);
}
.btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #397358;
  color: #fff;
  border-radius: 27px;
  padding: 11px 29px;
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  text-decoration: none;
  display: inline-block;
  margin-left: 0;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #2a5543;
  color: #fff;
  transform: translateY(-1px) scale(1.03);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 18px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  background: none;
  color: #885339;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 102;
  box-shadow: none;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F1E7D5;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(136,83,57,0.92);
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(0.5,0.1,0.12,1);
  z-index: 201;
  display: flex;
  flex-direction: column;
  padding-top: 44px;
  padding-bottom: 32px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 22px;
  top: 22px;
  width: 48px;
  height: 48px;
  background: none;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 202;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(241,231,213,0.11);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 60px;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  font-family: 'Roboto Slab', serif;
  font-size: 1.22rem;
  color: #fff;
  padding: 10px 0;
  transition: color 0.14s, background 0.14s;
  text-decoration: none;
  width: 100%;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F1E7D5;
  background: none;
}
@media (min-width: 992px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
  .main-nav {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .main-nav ul, .main-nav .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* --- SECTIONS & CTAS (ALL PAGES) --- */
main > section {
  background: #fff;
  border-radius: 28px;
  margin-bottom: 60px;
  box-shadow: 0 6px 38px 0 rgba(136,83,57,0.08);
}
@media (max-width: 600px) {
  main > section {
    border-radius: 0;
    margin-bottom: 44px;
    box-shadow: none;
    padding: 0 0;
  }
}
@media (max-width: 768px) {
  .text-image-section, .content-grid {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}


/* --- FOOTER --- */
footer {
  background: #885339;
  color: #fff;
  margin-top: 60px;
  padding: 38px 0 22px 0;
}
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}
.footer-nav ul li {
  margin-bottom: 0;
}
.footer-nav ul li a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  text-decoration: underline;
  opacity: 0.85;
  padding: 3px 5px;
  transition: color 0.17s, opacity 0.15s;
}
.footer-nav ul li a:hover, .footer-nav ul li a:focus {
  color: #F1E7D5;
  opacity: 1;
}
footer p {
  margin-bottom: 0;
  color: #fff;
  font-size: 0.97rem;
  opacity: 0.8;
}
.text-section {
  margin-bottom: 0;
}

/* --- TABLE STYLING (for prices, event tables) --- */
table {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 7px 0 rgba(136,83,57,0.05);
}
th {
  color: #885339;
  background: #F1E7D5;
}
td, th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-bottom: 1px solid #ede5d2;
}
tr:last-child td {
  border-bottom: none;
}

/* --- FORM, BUTTONS ETC --- */
input, textarea, select, button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #4C372D;
}
input, textarea, select {
  border-radius: 8px;
  border: 1px solid #d8cfc0;
  padding: 12px;
  background: #FAF8F5;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 18px;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #397358;
  background: #fff;
}
button, input[type=submit] {
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #F1E7D5;
  color: #4C372D;
  box-shadow: 0 -2px 24px 0 rgba(136,83,57,0.10);
  z-index: 3000;
  padding: 26px 20px 20px 20px;
  border-top: 3px solid #397358;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.4s cubic-bezier(0.7,0,0.2,1);
}
.cookie-banner.hide {
  transform: translateY(110%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 20px;
  padding: 11px 24px;
  font-size: 0.96rem;
  font-weight: 600;
  margin-right: 4px;
  margin-top: 0;
  background: #397358;
  color: #fff;
  transition: background 0.16s, color 0.16s, transform 0.15s;
  cursor: pointer;
}
.cookie-btn.cookie-accept {
  background: #397358;
  color: #fff;
}
.cookie-btn.cookie-accept:hover, .cookie-btn.cookie-accept:focus {
  background: #28503e;
}
.cookie-btn.cookie-reject {
  background: #fff;
  color: #885339;
  border: 1.2px solid #d8cfc0;
}
.cookie-btn.cookie-reject:hover, .cookie-btn.cookie-reject:focus {
  background: #ede5d2;
  color: #6b1f00;
}
.cookie-btn.cookie-settings {
  background: #885339;
  color: #fff;
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #6b1f00;
  color: #fff;
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.97);
  z-index: 4000;
  background: #fff;
  color: #4C372D;
  border-radius: 24px;
  box-shadow: 0 14px 56px 0 rgba(136,83,57,0.19);
  padding: 32px 24px 24px 24px;
  min-width: 310px;
  max-width: 95vw;
  width: 440px;
  transition: opacity 0.21s, transform 0.15s;
  display: none;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal.active {
  display: flex;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #885339;
  cursor: pointer;
  z-index: 4010;
}
.cookie-modal h3 {
  font-size: 1.32rem;
  color: #397358;
  font-family: 'Roboto Slab', serif;
  margin-bottom: 12px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.01rem;
}
.cookie-toggle {
  width: 36px;
  height: 20px;
  border-radius: 12px;
  background: #ede5d2;
  border: 1.2px solid #d8cfc0;
  position: relative;
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0;
}
.cookie-toggle span {
  display: block;
  position: absolute;
  left: 3px;
  top: 2px;
  width: 16px;
  height: 16px;
  background: #397358;
  border-radius: 50%;
  transition: left 0.19s, background 0.18s;
}
.cookie-toggle input[type="checkbox"]:checked + span {
  left: 17px;
  background: #885339;
}
.cookie-category.essential {
  opacity: 0.7;
}
.cookie-category.essential .cookie-toggle {
  background: #ede5d2;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

/* --- RESPONSIVE LAYOUTS --- */
@media (max-width: 991px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .footer-nav ul {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .content-wrapper,
  .card-container,
  .content-grid,
  .text-image-section {
    flex-direction: column !important;
    gap: 20px !important;
    align-items: flex-start !important;
  }
  h1, .h1 {
    font-size: 2rem;
  }
  h2, .h2 {
    font-size: 1.4rem;
  }
  main > section {
    padding: 22px 7px 20px 7px;
  }
  .testimonial-card {
    padding: 14px 10px;
    font-size: 0.99rem;
    border-radius: 12px;
    max-width: 98vw;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 3px;
  }
  .btn-primary, .btn-secondary {
    padding: 10px 13px;
    font-size: 0.96rem;
  }
}

/* --- MISC AND UTILITY --- */
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}
.hr {
  background: #ede5d2;
  height: 1.5px;
  border: none;
  margin: 30px 0;
}

::-webkit-input-placeholder {  color: #CBB7A8;   }
::-moz-placeholder         {  color: #CBB7A8;   }
:-ms-input-placeholder     {  color: #CBB7A8;   }
::placeholder             {  color: #CBB7A8;   }

/* --- EXTRAS AND ANIMATIONS --- */
.btn-primary, .btn-secondary, .cookie-btn {
  will-change: transform, box-shadow;
}
@media (hover: hover) {
  .btn-primary:hover, .btn-secondary:hover, .cookie-btn:hover {
    box-shadow: 0 6px 20px 0 rgba(136,83,57,0.14);
    transform: scale(1.03) translateY(-1.5px);
  }
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
  width: 9px;
  background: #ede5d2;
}
::-webkit-scrollbar-thumb {
  background: #88533988;
  border-radius: 8px;
}

/* --- PRINT --- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  main > section {
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    padding: 0;
    margin: 0;
  }
}

/* --- ACCESSIBILITY FOCUS STYLES --- */
:focus {
  outline: 2px solid #397358;
  outline-offset: 2px;
}

/* --- Z-INDEX MANAGEMENT for overlays --- */
header { z-index: 51; }
.mobile-menu { z-index: 201; }
.mobile-menu-close { z-index: 202; }
.cookie-banner { z-index: 3000; }
.cookie-modal { z-index: 4000; }

/* --- END --- */