/* CSS 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, 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F5F5F5;
  color: #26324C;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #26324C;
  text-decoration: none;
  transition: color 0.2s;
}
 a:hover, a:focus {
  color: #D2AE6D;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 16px;
  text-align: left;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  color: #26324C;
  font-weight: 700;
  line-height: 1.2;
}
h1 {font-size: 2.5rem; margin-bottom: 28px;}
h2 {font-size: 2rem; margin-bottom: 20px;}
h3 {font-size: 1.2rem; margin-bottom: 12px;}
h4,h5,h6 {font-size: 1rem;}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/********************** HEADER & NAVIGATION ***************/
header {
  background: #fff;
  box-shadow: 0 3px 18px rgba(38,50,76,0.08);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  color: #26324C;
  position: relative;
  padding-bottom: 2px;
  letter-spacing: 0.01em;
}
header nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #D2AE6D;
  transition: width 0.2s;
  position: absolute;
  left: 0;
  bottom: 0;
}
header nav a:hover::after {
  width: 100%;
}

header .cta.primary {
  margin-left: 20px;
}
header img {
  height: 48px;
  width: auto;
  display: block;
}

/***************** CTA BUTTONS *************/
.cta {
  font-family: 'Merriweather', Georgia, serif;
  border-radius: 32px;
  padding: 12px 32px;
  min-width: 140px;
  border: none;
  box-shadow: 0 4px 16px rgba(38,50,76,0.07);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: .01em;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, border 0.22s;
  cursor: pointer;
  display: inline-block;
  position: relative;
  outline: none;
}
.cta.primary {
  background: #26324C;
  color: #fff;
  border: 1.5px solid #26324C;
}
.cta.primary:hover, .cta.primary:focus {
  background: #D2AE6D;
  color: #26324C;
  border-color: #D2AE6D;
  box-shadow: 0 8px 24px rgba(210,174,109,0.18);
}
.cta.secondary {
  background: #fff;
  color: #26324C;
  border: 1.5px solid #D2AE6D;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #D2AE6D;
  color: #fff;
  box-shadow: 0 8px 24px rgba(210,174,109,0.15);
}

/***************** MOBILE BURGER MENU *************/
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.4rem;
  line-height: 1;
  color: #26324C;
  cursor: pointer;
  z-index: 70;
  margin-left: 24px;
  transition: color 0.2s;
  height: 48px;
  width: 48px;
  align-items: center;
  justify-content: center;
}
.mobile-menu {
  background: rgba(38,50,76,0.96);
  position: fixed;
  top: 0;
  right: 0;
  width: 96vw;
  max-width: 400px;
  height: 100vg;
  height: 100dvh;
  z-index: 101;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 40px 0 0 0;
  transform: translateX(105%);
  transition: transform 0.33s cubic-bezier(.56,0,.42,1);
  box-shadow: -4px 0 32px rgba(38,50,76,0.16);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  margin-right: 32px;
  margin-bottom: 24px;
  transition: color 0.2s;
  height: 44px;
  width: 44px;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus { color: #D2AE6D; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  font-family: 'Merriweather', Georgia, serif;
  padding: 10px 0;
  text-align: left;
  border-bottom: 1px solid rgba(210,174,109,0.1);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.mobile-nav a:hover,
.mobile-nav a:focus { color: #D2AE6D; }

/***************** HERO & SECTION PADDING *************/
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.hero {
  background: #26324C;
  color: #fff;
  padding: 64px 0 48px 0;
  text-align: center;
  min-height: 320px;
}
.hero h1, .hero h2, .hero .cta.primary { color: #fff; }
.hero .subheadline {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.2rem;
  margin-bottom: 32px;
  color: #D2AE6D;
}

/***************** CONTENT WRAPPER FLEX *************/
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}

/***************** FLEX LAYOUTS MANDATORY PATTERNS *************/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 -12px; /* prevent edge overflow on small screens */
}
.card {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 18px rgba(38,50,76,0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 270px;
}
.card:hover {
  box-shadow: 0 12px 34px rgba(210,174,109,0.17);
  transform: translateY(-4px) scale(1.01);
}
.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;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 18px rgba(38,50,76,0.11);
  margin-bottom: 24px;
  border-left: 5px solid #D2AE6D;
  min-width: 320px;
  max-width: 540px;
  transition: box-shadow 0.19s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 26px rgba(38,50,76,0.17);
}
.testimonial-card blockquote {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.14rem;
  color: #26324C;
  margin: 0 0 12px 0;
  font-style: italic;
}
.testimonial-card cite {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #555;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***************** SPECIAL PAGE SECTIONS & LISTS *************/
.feature-grid, .service-grid, .team-members-list, .value-list, .event-list, .room-features-list, .process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid li, .service-grid li, .team-members-list li, .event-list li, .room-features-list li, .process-steps li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(210,174,109,0.11);
  padding: 22px 22px 18px 22px;
  margin-bottom: 20px;
  flex: 1 1 240px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.18s;
}
.feature-grid li:hover, .service-grid li:hover {
  box-shadow: 0 8px 26px rgba(210,174,109,0.19);
}
.feature-grid img, .service-grid img, .team-members-list img, .value-list img { width: 36px; height:36px; }
.value-list img, .team-members-list img { margin-right: 12px; }
.value-list li {
  display: flex; align-items: center;
  gap: 12px;
  font-size: 1.06rem;
  color: #26324C;
}
.team-members-list li div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.team-members-list img {
  border-radius: 50%;
  border: 2.5px solid #D2AE6D;
  margin-bottom: 8px;
  width: 62px; height:62px;
}
.service-grid .price {
  font-weight: 700;
  color: #D2AE6D;
  margin-top: 12px;
  font-family: 'Merriweather', Georgia, serif;
}
.room-features-list li {
  font-size:1.08rem;
  color: #26324C;
}
.event-list li {
  font-size: 1.08rem;
  color: #26324C;
}
.event-list strong { color: #26324C; font-family: 'Merriweather',serif; }

.event-categories {
  margin-top: 12px;
  color: #D2AE6D;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.03rem;
  letter-spacing: 0.015em;
}

/***************** TABLE STYLES ********************/
.price-table {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(38,50,76,0.09);
  margin-top: 10px;
  margin-bottom: 24px;
  overflow-x: auto;
  font-size: 1rem;
}
.price-table th {
  background: #26324C;
  color: #fff;
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  padding: 16px 20px;
}
.price-table td {
  background: #fff;
  color: #26324C;
  border-top: 1px solid #F5F5F5;
  font-size: 0.98rem;
  padding: 15px 20px;
}
.price-table tr:last-child td {border-bottom: none;}

/***************** ABOUT & PHILOSOPHY ******************/
.text-section {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
  color: #26324C;
  max-width: 720px;
}

/***************** ADDRESS & CONTACT INFO ************/
.address-block, .opening-hours-block, .email-block {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 5px rgba(210,174,109,0.06);
  padding: 20px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.address-block h2,
.opening-hours-block h2,
.email-block h2 { font-size: 1.03rem; color: #D2AE6D; font-family: 'Merriweather', serif; }
.email-block a {
  color: #26324C;
  font-weight: 700;
  word-break: break-all;
  transition: color 0.18s;
}
.email-block a:hover{ color: #D2AE6D; }

/***************** FOOTER ****************/
footer {
  background: #26324C;
  color: #fff;
  padding: 48px 0 32px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 170px;
}
.footer-menu a {
  color: #D2AE6D;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  transition: color 0.17s;
}
.footer-menu a:hover { color: #fff; }
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.97rem;
}
.footer-legal strong { color: #D2AE6D; }
.footer-social {
  display: flex;
  gap: 20px; margin-top: 10px;
}
.footer-social a {
  background: #fff;
  border-radius: 50%;
  padding: 7px;
  display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(38,50,76,0.13);
  transition: background 0.16s, box-shadow 0.16s;
}
.footer-social a:hover {
  background: #D2AE6D;
  box-shadow: 0 8px 18px rgba(210,174,109,0.25);
}
.footer-social img { width: 26px; height:26px; }

/************ COOKIE CONSENT BANNER & MODAL ***********/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #26324C;
  box-shadow: 0 -3px 20px rgba(38,50,76,0.16);
  padding: 18px 22px;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  font-family: 'Open Sans', Arial, sans-serif;
  flex-wrap: wrap;
  animation: ccb-fade-in 0.6s cubic-bezier(.56,0,.42,1);
}
@keyframes ccb-fade-in { from { opacity:0; bottom:-60px;} to { opacity:1; bottom:0; } }
.cookie-banner .cookie-message { flex: 2 1 180px; font-size: 1rem; }
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  font-family: 'Merriweather', serif;
  border-radius: 24px;
  padding: 8px 24px;
  border: 1px solid #D2AE6D;
  background: #fff;
  color: #26324C;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.cookie-btn.accept {
  background: #D2AE6D;
  color: #26324C;
  border-color: #D2AE6D;
}
.cookie-btn.accept:hover { background: #fff; color: #D2AE6D; }
.cookie-btn.reject {
  background: #fff;
  color: #26324C;
  border-color: #D2AE6D;
}
.cookie-btn.reject:hover { background: #D2AE6D; color: #fff; }
.cookie-btn.settings {
  background: #26324C;
  color: #fff;
  border-color: #26324C;
}
.cookie-btn.settings:hover { background: #D2AE6D; color: #26324C; border-color:#D2AE6D; }

.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(38,50,76,0.66);
  z-index: 160;
  display: none;
  align-items: center;
  justify-content: center;
  animation: ccb-backdrop-fade 0.45s;
}
@keyframes ccb-backdrop-fade { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  color: #26324C;
  max-width: 440px;
  width: 95vw;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(38,50,76,0.24);
  padding: 34px 36px 28px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: ccb-modal-pop 0.33s cubic-bezier(.56,0,.42,1);
}
@keyframes ccb-modal-pop { 0%{transform: scale(0.82);}100%{transform:scale(1);} }
.cookie-modal-close {
  position: absolute;
  top: 22px;
  right: 26px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #26324C;
  cursor: pointer;
}
.cookie-modal h2 {
  color: #26324C;
  font-size: 1.18rem;
  margin-bottom: 2px;
}
.cookie-pref-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 15px;
}
.cookie-pref-list .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
}
.cookie-pref-toggle {
  appearance: none;
  display: inline-block;
  width: 38px;
  height: 22px;
  background: #D2AE6D;
  border-radius: 11px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-pref-toggle:checked {
  background: #26324C;
}
.cookie-pref-toggle::before {
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2.5px;
  left: 2.5px;
  transition: left 0.18s;
}
.cookie-pref-toggle:checked::before {
  left: 18px;
}
.cookie-category.disabled {
  opacity: 0.5;
}

/***************** GENERIC UTILITIES & TYPOGRAPHY *************/
strong {
  color: #26324C;
  font-weight: 700;
  font-family: 'Merriweather', Georgia, serif;
}
blockquote {
  font-size: 1.1rem;
  font-style: italic;
}

/************** STEPPED ORDERS & NUMBERED LISTS ******/
ol {
  counter-reset: listnum;
}
ol > li {
  counter-increment: listnum;
  position: relative;
  padding-left: 32px;
}
ol > li:before {
  content: counter(listnum)'.';
  position: absolute;
  left: 0;
  color: #D2AE6D;
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  font-weight: bold;
}

/***************** CTAS IN PAGE ************/
section.cta {
  background: #D2AE6D;
  color: #26324C;
  text-align: center;
  border-radius: 18px;
  box-shadow: 0 10px 36px rgba(210,174,109,0.09);
}
section.cta h2 {
  color: #26324C;
}
section.cta .cta.primary {
  margin: 0 auto;
  display: inline-block;
}

/***************** THANK YOU PAGE **************/
.thank-you .text-section {
  font-size: 1.08rem;
  color: #26324C;
}

/***************** TABLE RESPONSIVE OVERRIDE *********/
@media (max-width: 650px) {
  .price-table thead { display: none; }
  .price-table, .price-table tbody, .price-table tr, .price-table td {
    display: block;
    width: 100%;
  }
  .price-table tr { margin-bottom: 18px; }
  .price-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #F5F5F5;
  }
  .price-table td:before {
    content: attr(data-label);
    display: block;
    color: #aaa;
    font-size: 0.98rem;
    font-family: 'Merriweather', serif;
    font-weight: bold;
  }
}

/***************** RESPONSIVE LAYOUTS **************/
@media (max-width: 1080px){
  .container { max-width: 1000px; }
}
@media (max-width: 900px){
  .container { max-width: 740px; }
  .footer-legal, .footer-social, .footer-menu { min-width: initial; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 {font-size: 1.3rem;}
  .section, section { padding: 26px 5px; margin-bottom: 40px; }
  .container { padding-left: 8px; padding-right: 8px; }
  header .container { flex-direction: row; gap: 9px; }
  header nav, header .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
 }
  .content-wrapper { gap: 14px; }
  .card-container, .content-grid, .feature-grid, .service-grid, .team-members-list, .value-list, .event-list, .room-features-list, .process-steps,
  .testimonial-slider {
    flex-direction: column;
    gap: 17px;
  }
  .text-image-section { flex-direction: column; gap: 15px; align-items: stretch; }
  .footer-social, .footer-menu, .footer-legal {
    width: 100%;
    align-items: flex-start;
    margin-bottom: 12px;
  }
  footer .container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/******** HERO MOBILE *********/
@media (max-width: 600px) {
  .hero {
    padding: 38px 0 25px 0;
    min-height: 190px;
  }
  .mobile-menu {
    max-width: 99vw;
    width: 99vw;
    padding: 36px 0 0 0;
  }
}

/* SLIDER IN TESTIMONIALS (SWIPE, not implemented but nice spacing flex) */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
}

/***************** ANIMATIONS *****************/
.cta, .card, .testimonial-card, .feature-grid li, .service-grid li {
  transition: box-shadow 0.18s, background 0.18s, color 0.14s, transform 0.18s;
}
.cta:active {
  transform: scale(0.96);
}

/***************** Z-INDEX GUARANTEE *****************/
header { z-index: 30; }
.mobile-menu { z-index: 101; }
.cookie-banner {z-index: 150;}
.cookie-modal { z-index: 160; }

/***************** SCROLLBAR MODERN *************/
::-webkit-scrollbar {
  width: 12px;
  background: #F5F5F5;
}
::-webkit-scrollbar-thumb {
  background: #D2AE6D88;
  border-radius: 8px;
}

/***** HIDE ON PRINT *****/ 
@media print {
  header, footer, .cookie-banner, .cookie-modal { display: none !important; }
}
