/* =======================
   CSS RESET & BASE STYLES
   ======================= */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  font-family: 'Lato', Arial, sans-serif;
  background: #F9F6F2;
  color: #222;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: #47605D;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #BDA078;
}
ul, ol {
  padding-left: 1.2em;
}
strong {
  font-weight: 600;
}
button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  cursor: pointer;
  background: none;
}
:focus {
  outline: 2px solid #BDA078;
  outline-offset: 3px;
}

/* FONTS */
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #47605D;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }

p, li, span, label, input, textarea {
  font-family: 'Lato', Arial, sans-serif;
  color: #222;
  font-size: 1rem;
}
.subheadline {
  font-size: 1.15rem;
  color: #5D6F6D;
}

/* ===============
   LAYOUT & SPACING
   =============== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  box-sizing: border-box;
}
.section, .features, .about, .services, .testimonials, .cta, .contact, .location, .footer, main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.text-section {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.text-section:last-child {
  margin-bottom: 0;
}

/* ===============
   HEADER/NAVIGATION
   =============== */
header {
  background: #FFF;
  border-bottom: 1px solid #ECE8E2;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
header img {
  height: 50px;
  width: auto;
  margin-right: 24px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-size: 1rem;
  color: #47605D;
  font-weight: 500;
  position: relative;
  padding: 2px 0;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #BDA078;
  transition: width 0.2s;
  margin-top: 2px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}
.button.primary {
  background: #47605D;
  color: #fff;
  font-family: 'Lato', Arial, sans-serif;
  padding: 12px 32px;
  border-radius: 32px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(70,96,93,0.08);
  border: none;
  transition: background 0.22s, box-shadow 0.18s, transform 0.1s;
  margin-left: 18px;
  letter-spacing: 0.02em;
  cursor: pointer;
}
.button.primary:hover, .button.primary:focus {
  background: #BDA078;
  color: #fff;
  box-shadow: 0 6px 26px rgba(70,96,93,0.10);
  transform: translateY(-2px) scale(1.03);
}
.button.secondary {
  background: #fff;
  color: #47605D;
  border: 1.5px solid #BDA078;
  padding: 12px 28px;
  border-radius: 32px;
  font-weight: 700;
  font-size: 1rem;
  transition: border 0.18s, color 0.18s, background 0.18s;
}
.button.secondary:hover, .button.secondary:focus {
  background: #BDA078;
  color: #fff;
  border-color: #BDA078;
}

/* ======================
   MOBILE BURGER MENU
   ====================== */
.mobile-menu-toggle {
  display: none;
  position: relative;
  background: #fff;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  transition: background 0.22s, box-shadow 0.18s;
  z-index: 1201;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #ECE8E2;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,0.98);
  transform: translateX(-100vw);
  z-index: 1200;
  padding: 0 32px;
  transition: transform 0.35s cubic-bezier(0.77,0,0.175,1);
  box-shadow: 0 6px 24px rgba(36,45,40,0.12);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  margin-top: 36px;
  margin-left: auto;
  color: #47605D;
  align-self: flex-end;
  cursor: pointer;
  padding: 8px;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ECE8E2;
  border-radius: 50%;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  color: #47605D;
  font-size: 1.3rem;
  font-family: 'Playfair Display', serif;
  padding: 10px 0 10px 4px;
  position: relative;
  border-radius: 5px;
  transition: color 0.18s, background 0.18s;
  font-weight: 600;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  color: #BDA078;
  background: #ECE8E2;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 16px;
  }
  .button.primary {
    padding: 10px 18px;
    margin-left: 8px;
  }
}

@media (max-width: 900px) {
  header .container {
    gap: 6px;
  }
  .main-nav {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .main-nav, .button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: 4px;
  }
  header img {
    height: 44px;
  }
}


/* ======================
   HERO SECTION
   ====================== */
.hero {
  background: linear-gradient(116deg, #F9F6F2 65%, #ECE8E2 100%);
  border-radius: 0 0 26px 26px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 56px;
  padding-bottom: 56px;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  align-items: center;
  gap: 18px;
  text-align: center;
}
.hero h1 {
  color: #47605D;
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.hero .subheadline {
  color: #5D6F6D;
  margin-bottom: 18px;
  font-size: 1.18rem;
}
.hero .button.primary {
  margin-top: 10px;
}

/* =============
   FEATURES
   ============= */
.features .content-wrapper {
  gap: 30px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.feature-block {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(36, 45, 40, 0.06);
  padding: 32px 24px 26px 24px;
  flex: 1 1 270px;
  min-width: 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border: 1px solid #EEE6DC;
  transition: box-shadow 0.18s, border 0.18s, transform 0.14s;
}
.feature-block img {
  height: 52px;
  width: 52px;
  margin-bottom: 0.5em;
}
.feature-block h3 {
  color: #47605D;
  font-size: 1.2rem;
  margin-bottom: 6px;
  font-family: 'Playfair Display', serif;
}
.feature-block p {
  font-size: 1rem;
  color: #222;
  margin-bottom: 0;
}
.feature-block:hover, .feature-block:focus-within {
  border: 1.5px solid #BDA078;
  box-shadow: 0 8px 34px rgba(70,96,93,0.13);
  transform: translateY(-4px) scale(1.02);
}

@media (max-width: 1025px) {
  .feature-grid {
    flex-wrap: wrap;
    gap: 26px;
    justify-content: center;
  }
  .feature-block {
    flex: 1 1 300px;
    max-width: 96vw;
  }
}
@media (max-width: 700px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .feature-block {
    max-width: 100%;
    width: 98%;
  }
}

/* =============
   CARDS & GRIDS (for future galleries)
   ============= */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(36,45,40,0.08);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid #EEE6DC;
  transition: box-shadow 0.2s, border 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 28px rgba(70,96,93,0.13);
  border: 1.5px solid #BDA078;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/* =============
   TESTIMONIALS
   ============= */
.testimonials .content-wrapper {
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 15px rgba(36,45,40,0.08);
  padding: 20px 28px 20px 24px;
  margin-bottom: 20px;
  border: 1.5px solid #ECE8E2;
  transition: box-shadow 0.18s, border 0.18s, transform 0.14s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 32px rgba(70,96,93,0.14);
  border-color: #BDA078;
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card .text-section p {
  font-style: italic;
  font-size: 1.05rem;
  color: #34423F;
  margin-bottom: 10px;
}
.testimonial-author {
  color: #47605D;
  font-weight: 600;
}
.star-rating {
  color: #FFD77C;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 12px;
  }
}

/* =============
   CONTACT INFO
   ============= */
.contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0 20px 0;
  padding-left: 0;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #47605D;
  font-size: 1rem;
}
.contact-info img {
  height: 25px;
  width: 25px;
}

/* =============
   MISCELLANEOUS LISTS
   ============= */
.services-overview, .service-list, .region-highlights, .usp-list, .event-highlights {
  list-style: disc inside;
  margin-bottom: 24px;
}
.usp-list, .event-highlights {
  font-size: 1.04rem;
}


/* ================
   ABOUT PAGE STYLES
   ================ */
.address-block {
  margin: 18px 0 28px 0;
}
.address-block h2 {
  font-size: 1.38rem;
  color: #47605D;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

/* ==============
   FOOTER
   ==============
*/
footer {
  background: #F2EFE8;
  border-top: 1.5px solid #ECE8E2;
  padding: 18px 0 0 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 16px 12px 20px 12px;
}
.footer-nav {
  display: flex;
  gap: 28px;
  margin-bottom: 8px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.99rem;
}
.footer-nav a {
  color: #47605D;
  opacity: 0.87;
  transition: color 0.16s, opacity 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #BDA078;
  opacity: 1;
}
.footer-info {
  color: #8C867F;
  font-size: 0.98rem;
  text-align: center;
  margin-bottom: 0;
}

@media (max-width: 540px) {
  footer .container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 15px;
    flex-wrap: wrap;
  }
}

/* =======================
   CONTENT SPECIFIC SPACING
   ======================= */
.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;
    align-items: stretch;
    gap: 20px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ============
   CTA SECTIONS
   ============ */
.cta .content-wrapper {
  align-items: center;
  gap: 16px;
  text-align: center;
}
.cta h2 {
  color: #47605D;
  font-size: 2.1rem;
}

/* ===============
   PAGE SPECIFIC: MODAL/LIST/PRIVACY
   =============== */
section.footer.privacy-policy, section.footer.terms, section.footer.gdpr, section.footer.cookie-policy, section.footer.thank-you {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(36,45,40,0.09);
  margin: 42px auto 80px auto;
  max-width: 760px;
  padding: 40px 18px;
  border: 1px solid #EEE6DC;
}

/* ===========================
   RESPONSIVE: MAIN LAYOUT
   =========================== */
@media (max-width: 780px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .feature-block {
    padding: 25px 10px;
  }
  section, .section, .features, .about, .services, .testimonials, .cta, .contact, .location, .footer, main > section {
    padding: 32px 7px;
  }
}
@media (max-width: 430px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.22rem; }
  h3 { font-size: 1.05rem; }
  .hero {
    min-height: 190px;
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

/* ===================================
   COOKIE CONSENT BANNER & COOKIE MODAL
   =================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #fff;
  color: #47605D;
  border-top: 2px solid #ECE8E2;
  box-shadow: 0 -2px 18px rgba(36,45,40,0.04);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 22px 12px;
  z-index: 1400;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.28s, opacity 0.25s;
  font-size: 1rem;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 auto;
  max-width: 580px;
  margin-right: 30px;
  font-size: 1.03rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Lato', Arial, sans-serif;
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 1rem;
  font-weight: 600;
  margin-left: 0;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 7px rgba(70,96,93,0.06);
  transition: background 0.18s, color 0.17s, box-shadow 0.14s;
}
.cookie-banner .accept {
  background: #47605D;
  color: #fff;
  border: none;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #BDA078;
}
.cookie-banner .reject {
  background: #fff;
  color: #47605D;
  border: 1.3px solid #BDA078;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #ECE8E2;
  border-color: #BDA078;
}
.cookie-banner .settings {
  background: #BDA078;
  color: #fff;
  border: none;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #47605D;
  color: #fff;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 18px 7px;
  }
  .cookie-banner .cookie-text {
    margin-right: 0;
    margin-bottom: 12px;
    max-width: 100%;
  }
  .cookie-banner .cookie-actions {
    justify-content: flex-end;
    gap: 7px;
  }
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(35,40,36,0.46);
  z-index: 1501;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 21px;
  padding: 38px 29px 22px 29px;
  min-width: 310px;
  max-width: 96vw;
  box-shadow: 0 7px 34px rgba(70,96,93,0.19);
  position: relative;
  z-index: 1600;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h2 {
  font-size: 1.18rem;
  color: #47605D;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.07rem;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category label {
  font-size: 1.06rem;
  color: #47605D;
  font-weight: 500;
}
.cookie-modal input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: #BDA078;
  margin-right: 7px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 1.6rem;
  color: #47605D;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #ECE8E2;
  border-radius: 50%;
}
.cookie-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 8px;
}
.cookie-modal .modal-actions button {
  padding: 9px 22px;
  border-radius: 24px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
}
.cookie-modal .modal-actions .save {
  background: #47605D;
  color: #fff;
}
.cookie-modal .modal-actions .save:hover, .cookie-modal .modal-actions .save:focus {
  background: #BDA078;
}
.cookie-modal .modal-actions .cancel {
  background: #ECE8E2;
  color: #47605D;
}
.cookie-modal .modal-actions .cancel:hover, .cookie-modal .modal-actions .cancel:focus {
  background: #BDA078;
  color: #fff;
}

/* ===================================
   GENERAL MICRO-INTERACTIONS
   =================================== */
.button, .main-nav a, .footer-nav a, .feature-block, .testimonial-card, .card, .mobile-nav a {
  transition: background 0.18s, box-shadow 0.18s, border 0.18s, color 0.18s, transform 0.14s;
}

/* ============
   ACCESSIBILITY IMPROVEMENTS
   ============ */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* =================
   PRINT CLEANUP
   ================= */
@media print {
  header, .main-nav, .mobile-menu, .footer-nav, .cookie-banner, .cookie-modal-overlay, .button {
    display: none !important;
  }
}

