/* --- 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, menu, 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, 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 { box-sizing: border-box; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #FFF;
  color: #25353E;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #25353E; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #A96836; }
ul, ol { list-style: none; }
button, .cta {
  font-family: 'Roboto', Arial, sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
}

/* --- BRAND FONTS --- */
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; }
h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 16px; }
h2 { font-size: 2rem; font-weight: 600; margin-bottom: 16px; }
h3 { font-size: 1.375rem; font-weight: 600; margin-bottom: 12px; }
h4, h5, h6 { font-weight: 500; }

p { margin-bottom: 16px; }
strong { font-weight: 700; }


/* --- CONTAINERS & SECTIONS --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 32px 0 rgba(37,53,62,0.05);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* --- FLEX UTILITY LAYOUTS (MANDATORY) --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px 0 rgba(37, 53, 62, 0.08);
  padding: 24px 20px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 270px;
  flex-basis: 1 1 310px;
  transition: transform 0.17s, box-shadow 0.17s;
}
.card:hover {
  transform: translateY(-4px) scale(1.0125);
  box-shadow: 0 8px 36px 0 rgba(37,53,62,0.11);
}
.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;
  align-items: center;
  gap: 20px;
  background: #EBE4D1;
  color: #25353E;
  box-shadow: 0 2px 16px 0 rgba(37,53,62,0.04);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 250px;
  width: 100%;
  flex-direction: column;
  transition: box-shadow 0.19s;
}
.testimonial-card .stars {
  color: #A96836;
  font-size: 1.2em;
  margin-top: 5px;
}
.testimonial-author {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: #25353E;
  margin-top: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HEADER --- */
header {
  width: 100%;
  background: #25353E;
  color: #fff;
  box-shadow: 0 2px 10px 0 rgba(37,53,62,0.07);
  position: relative;
  z-index: 90;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo img {
  height: 44px;
  min-width: 110px;
}
nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
nav a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 7px 0;
  position: relative;
  transition: color 0.16s;
}
nav a:hover, nav a:focus {
  color: #A96836;
}

/* --- MOBILE MAIN NAV --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  margin-left: 12px;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: rgba(169,104,54,0.12);
  color: #A96836;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  background: #25353E;
  color: #fff;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 200;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.33s cubic-bezier(0.51,0.01,0.89,0.64), opacity 0.27s;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 32px 32px 24px auto;
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 8px;
  padding: 6px 12px;
  transition: background 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: rgba(169,104,54,0.13);
  color: #A96836;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-left: 38px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  padding: 10px 0;
  min-width: 180px;
  border-radius: 6px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(169,104,54,0.10);
  color: #A96836;
}

/* --- CTA BUTTONS --- */
.cta {
  display: inline-block;
  background: #A96836;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  margin-top: 14px;
  box-shadow: 0 2px 10px 0 rgba(37,53,62,0.11);
  transition: background 0.17s, color 0.17s, transform 0.16s, box-shadow 0.13s;
  position: relative;
  border: none;
}
.cta.primary {
  background: #25353E;
  color: #fff;
}
.cta.secondary {
  background: #fff;
  color: #A96836;
  border: 2px solid #A96836;
}
.cta:hover, .cta:focus {
  background: #8C4300;
  color: #fff !important;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(37,53,62,0.12);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #A96836;
  color: #fff !important;
}

/* --- TAGS & BADGES --- */
.tag {
  display: inline-block;
  padding: 5px 16px;
  background: #25353E;
  color: #fff;
  font-size: 0.96em;
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 12px;
  margin-right: 10px;
  margin-bottom: 4px;
  transition: background 0.17s;
}
.tag:hover, .tag:focus {
  background: #A96836;
}

/* --- TIMELINE --- */
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-family: 'Roboto', Arial, sans-serif;
  background: #EBE4D1;
  color: #25353E;
  border-radius: 10px;
  padding: 8px 20px;
  margin-top: 12px;
}
.timeline span {
  font-weight: 600;
  font-size: 1.05em;
}

/* --- ICON BLOCKS --- */
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.contact-info-block img {
  display: inline-block;
  vertical-align: middle;
  width: 21px;
  margin-right: 8px;
}

.opening-hours {
  margin-top: 10px; 
  font-size: 1.05em; 
  color: #25353E;
}

/* --- CARDS STYLING --- */
ul li {
  margin-bottom: 14px;
}
ul li:last-child { margin-bottom: 0; }

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

/* --- FOOTER --- */
footer {
  background: #25353E;
  color: #fff;
  padding: 38px 0 24px 0;
  font-size: 1.07em;
  width: 100%;
}
footer .container {
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.logo-footer img {
  height: 38px;
  margin-bottom: 12px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
footer nav a {
  color: #EBE4D1;
  font-size: 1em;
  padding: 3px 0;
  transition: color 0.18s;
}
footer nav a:hover, footer nav a:focus { color: #A96836; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
}
.footer-contact img {
  height: 18px;
  margin-right: 7px;
  display: inline-block;
  vertical-align: middle;
}

/* --- MAP --- */
.map {
  margin: 18px 0 10px 0;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.map img { width: 40px; margin-right: 14px; }
.map p { display: flex; align-items: center; margin: 0; }

/* --- GENERAL FORMS (if any in the future) --- */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1em;
  border-radius: 8px;
  border: 1px solid #E1E4E8;
  padding: 10px 15px;
  background: #f7f8fa;
  margin-bottom: 14px;
  transition: border-color 0.12s;
}
input:focus, textarea:focus, select:focus {
  border-color: #A96836;
  outline: none;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #25353E;
  color: #fff;
  padding: 24px 14px 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  box-shadow: 0 -4px 32px 0 rgba(37,53,62,0.12);
  z-index: 301;
  font-size: 1.06em;
  animation: cookie-slideup 0.6s cubic-bezier(.19,.9,.59,1);
}
@keyframes cookie-slideup {
  0% { transform: translateY(90px); opacity: 0; }
  80% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}

.cookie-banner-actions {
  display: flex;
  gap: 16px;
}
.cookie-banner button,
.cookie-banner .cookie-btn {
  padding: 9px 22px;
  font-size: 1em;
  border-radius: 7px;
  border: none;
  background: #A96836;
  color: #fff;
  font-weight: 500;
  transition: background 0.13s, color 0.16s;
  margin: 0;
  min-width: 120px;
}
.cookie-banner .reject {
  background: #EBE4D1;
  color: #25353E;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: #D3C6B0;
  color: #25353E;
}
.cookie-banner .cookie-settings {
  background: #25353E;
  border: 1.5px solid #A96836;
  color: #A96836;
}
.cookie-banner .cookie-settings:hover,
.cookie-banner .cookie-settings:focus {
  background: #A96836;
  color: #fff;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #8C4300;
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(37,53,62,0.45);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-fadeIn 0.3s;
}
@keyframes modal-fadeIn {
  from {opacity: 0;} to {opacity: 1;}
}
.cookie-modal {
  background: #fff;
  color: #25353E;
  border-radius: 18px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0 8px 50px -10px rgba(37,53,62,0.15);
  padding: 40px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookie-modalup 0.5s cubic-bezier(.19,.9,.59,1);
  position: relative;
}
@keyframes cookie-modalup {
  0% { transform: translateY(80px); opacity: 0; }
  80% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin-bottom: 10px;
}
.cookie-category label { font-weight: 500; font-size: 1em; cursor: pointer; }

.cookie-modal input[type=checkbox] {
  width: 20px; height: 20px;
  accent-color: #A96836;
  border-radius: 2px;
  margin-right: 4px;
  border: 1.3px solid #25353E;
}
.cookie-category .always-on {
  font-size: 0.96em;
  font-weight: 400;
  color: #aaa;
  font-style: italic;
  margin-left: 7px;
}
.cookie-modal-actions {
  margin-top: 6px;
  display: flex;
  gap: 15px;
}
.cookie-modal-close {
  position: absolute;
  top: 15px; right: 15px;
  background: none;
  border: none;
  color: #A96836;
  font-size: 1.6rem;
  cursor: pointer;
  border-radius: 6px;
  padding: 4px 11px;
  transition: background 0.12s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #EBE4D1;
}

/* --- BUTTON ANIMATION --- */
.cta, .cookie-banner button, .cookie-btn {
  transition: background 0.18s, color 0.18s, transform 0.12s, box-shadow 0.16s;
  will-change: transform;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 990px) {
  .container {
    max-width: 97vw;
  }
  nav { gap: 20px; }
  footer .container { flex-direction: column; gap: 22px; align-items: stretch; }
}

@media (max-width: 768px) {
  .container {
    padding: 0 8px;
    max-width: 100vw;
  }
  .section {
    padding: 28px 7px;
    margin-bottom: 36px;
  }
  .content-wrapper,
  .text-section {
    gap: 14px;
  }

  header .container {
    padding: 0 8px;
    height: 60px;
  }
  nav { display: none; }
  .mobile-menu-toggle {
    display: block;
  }

  /* Cards and flex layouts */
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .card {
    min-width: 95%;
    padding: 16px 7px;
  }
  .testimonial-card { padding: 13px 6px; }

  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .footer-contact { gap: 6px; }
  .tag { font-size: 0.98em; padding: 5px 9px; margin-right: 3px; }
}
@media (max-width: 520px) {
  h1 { font-size: 1.33rem; }
  h2 { font-size: 1.1rem; }
  h3 { font-size: 1.01rem; }
  .logo img, .logo-footer img { height: 32px; min-width: 50px; }
  .cookie-modal { padding: 22px 4vw 18px 4vw; }
}

/* --- MICRO-INTERACTIONS --- */
.card, .testimonial-card, .cta, .cookie-banner button, .cookie-btn, .tag {
  box-shadow: 0 2px 8px 0 rgba(37,53,62,0.09);
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 38px -10px rgba(169,104,54,0.14);
}

/* --- Z-INDEX LAYERS --- */
header { z-index: 90; }
.mobile-menu { z-index: 200; }
.cookie-banner { z-index: 301; }
.cookie-modal-overlay { z-index: 400; }

/* --- ACCESSIBILITY --- */
:focus { outline: 2px solid #A96836; outline-offset: 2px; }

/* --- VISUAL ELEMENTS & GENERAL --- */
::-webkit-scrollbar {
  width: 12px; background: #EBE4D1;
}
::-webkit-scrollbar-thumb { background: #A96836; border-radius: 9px; }

hr {
  border: none;
  border-top: 1.5px solid #E1E4E8;
  margin: 24px 0;
}

/* --- PRINT FRIENDLINESS --- */
@media print {
  header, nav, .mobile-menu, .cta, .cookie-banner, .cookie-modal-overlay, footer { display: none !important; }
  .container, .section { width: 100% !important; max-width: 100% !important; box-shadow: none !important; padding: 0 !important; }
}
