/* --- 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, 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.6;
  background-color: #fafbf7;
  color: #29401E;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  border: 0;
}
ul, ol {
  padding-left: 1.5em;
}
a {
  color: #25506B;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #527b42;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #29401E;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 24px; }
h2 { font-size: 1.75rem; font-weight: 600; margin-bottom: 20px; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; }
h4, h5, h6 { font-weight: 600; margin-bottom: 8px; }
p, ul, ol, table { margin-bottom: 16px; }
table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 18px 0 rgba(52,92,113,0.06); }
th, td { padding: 12px 16px; text-align: left; font-size: 1rem; }
th { background: #d7e1b8; color: #2c4227; font-weight: 700; }
td { border-bottom: 1px solid #e1e5d8; }
tr:last-child td { border-bottom: none; }
strong, b { font-weight: 600; }

/* --- COLOR PALETTE : nature_organic --- */
:root {
  --primary: #64327A; /* brand primary */
  --primary-dark: #44215d;
  --secondary: #F3ECEA;
  --accent: #25506B; /* deep teal/green */
  --success: #527b42;
  --organic-green: #73854a;
  --earth-beige: #f6f3ed;
  --natural-brown: #8e7865;
  --soft-white: #fcf9f4;
  --warning-yellow: #e6c871;
  --error-red: #b94545;
  --text-dark: #29401E;
  --card-bg: #fff;
  --shadow: 0 2px 16px 0 rgba(46, 57, 20, 0.07);
  --radius-large: 26px;
  --radius-card: 18px;
  --radius-small: 8px;
}

/* --- CONTAINER & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  background-color: var(--soft-white);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
  padding: 38px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width:768px) {
  .content-wrapper {
    padding: 24px 10px;
    gap: 16px;
  }
  .section {
    padding: 24px 6px;
    margin-bottom: 36px;
  }
}

/* --- HEADER --- */
header {
  background: var(--earth-beige);
  box-shadow: 0 2px 18px 0 rgba(52,92,113,0.06);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo img {
  height: 52px;
  width: auto;
  border-radius: var(--radius-small);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: none;
  border-radius: var(--radius-small);
  padding: 7px 14px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:not(.btn-primary):hover {
  background: var(--organic-green);
  color: var(--soft-white);
}
.btn-primary {
  background-color: var(--primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 32px 24px 36px 20px / 36px 14px 32px 28px; /* organic shape */
  padding: 12px 30px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  margin-left: 20px;
  box-shadow: 0 2px 12px 0 rgba(100,50,122,0.11);
  transition: background 0.21s, color 0.16s, transform 0.2s;
  outline: none;
  text-decoration: none !important;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--success);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  padding: 8px 16px;
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.2s, transform 0.16s;
  z-index: 1021;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--primary);
  transform: scale(1.08);
}

/* --- MOBILE MENU --- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(243, 236, 234, 0.92);
  box-shadow: 0 4px 32px 0 rgba(61,81,54,0.22);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.66,0,0.08,1);
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.3rem;
  color: var(--primary);
  background: transparent;
  border: none;
  position: absolute;
  top: 24px;
  right: 30px;
  cursor: pointer;
  z-index: 2201;
  line-height: 1;
  transition: color 0.18s, transform 0.13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--success);
  transform: rotate(5deg) scale(1.08);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 16px;
  margin-top: 60px;
  padding: 24px 24px 12px 40px;
}
.mobile-nav a {
  font-size: 1.27rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--accent);
  background: none;
  border-radius: var(--radius-small);
  padding: 8px 0;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  width: 88%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: #fff;
  padding-left: 18px;
}
@media (max-width:1050px) {
  .main-nav {
    gap: 12px;
  }
  .btn-primary {
    margin-left: 6px;
  }
}
@media (max-width:900px) {
  .main-nav a:not(.btn-primary) { font-size: 0.97rem; }
  .logo img { height: 39px; }
}
@media (max-width:860px) {
  .main-nav { gap: 8px; }
  .btn-primary { padding: 11px 22px; font-size: 1rem; }
}
@media (max-width:768px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    flex-direction: row;
    gap: 9px;
    min-height: 65px;
  }
}

/* --- FLEX ARRAYS: MANDATORY SPACING/ALIGNMENT --- */
.features-grid, .features, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features-grid {
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 12px;
}
.card-container {
  gap: 24px;
  margin-bottom: 18px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 22px;
}
.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;
}
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 20px 22px 26px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: 0 2px 24px 0 rgba(41,64,30,0.07);
  color: #2a301e;
  min-width: 247px;
  max-width: 100%;
  flex: 1 1 247px;
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #354426;
  margin-bottom: 6px;
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.96rem;
  color: var(--primary);
  margin-top: 3px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--earth-beige);
  border-radius: 20px 28px 18px 28px / 24px 16px 32px 14px; /* organic q */
  box-shadow: 0 1px 7px 0 rgba(52,80,47,0.044);
  gap: 15px;
  padding: 26px 24px 18px 20px;
  min-width: 226px;
  flex: 1 1 226px;
  margin-bottom: 20px;
}
.feature-item img {
  height: 42px;
  width: auto;
}
.feature-item h3 {
  font-size: 1.13rem;
  color: var(--organic-green);
}
.feature-item p {
  color: #395737;
  font-size: 1rem;
}
@media (max-width:1025px) {
  .features-grid, .content-grid, .card-container, .testimonials-list { gap: 16px; }
  .feature-item, .testimonial-card { min-width: 170px; padding: 16px 10px 12px 10px; }
  .features-grid { margin-top: 12px; }
}
@media (max-width:768px) {
  .features-grid, .content-grid, .card-container, .testimonials-list {
    gap: 12px;
  }
  .feature-item, .testimonial-card {
    min-width: 120px;
    flex: 1 1 100%;
    margin-bottom: 14px;
    padding: 16px 9px 10px 13px;
  }
  .features-grid {
    flex-direction: column;
  }
  .testimonials-list {
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* --- CARDS / ORGANIC --- */
.card {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  background: #fff;
  margin-bottom: 20px;
}

/* --- TEXT SECTIONS --- */
.text-section {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #292d17;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.text-section ul, .text-section ol {
  margin: 0 0 8px 18px;
  color: #395737;
  font-size: 1rem;
}
.text-section a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.18s;
}
.text-section a:hover, .text-section a:focus{
  color: var(--accent);
}

/* --- MAP PLACEHOLDER (Contact Page) --- */
.map-placeholder {
  background: var(--earth-beige);
  border-radius: 13px;
  padding: 15px;
  color: #73854a;
  font-weight: 600;
  margin-top: 8px;
}

/* --- FOOTER --- */
footer {
  background: var(--accent);
  color: #fff;
  padding: 48px 0 22px;
  margin-top: 36px;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width:900px) {
  .footer-columns {
    gap: 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #e6f3e2;
  text-decoration: underline;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--warning-yellow);
}
.footer-contact {
  font-size: 1rem;
  color: #e1e7db;
  margin-top: 12px;
}
.footer-columns img {
  height: 55px;
  width: auto;
  margin-bottom: 10px;
  border-radius: 15px;
  background: #fcf9f4;
  padding: 3px;
}

/* --- BUTTONS & INTERACTIONS --- */
button, .btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
}
.btn-primary:active {
  background: var(--organic-green);
  color: #fff;
}
button:focus, a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* --- TYPOGRAPHY HIERARCHY --- */
.subtitle {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--accent);
  font-size: 1.34rem;
  margin-bottom: 20px;
  margin-top: 0;
}

/* --- RESPONSIVE FONTS --- */
@media (max-width:700px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.02rem; }
  .btn-primary { padding: 11px 15px; font-size: 1rem; }
}

/* --- TABLE (Pricing) --- */
table {
  margin: 20px 0 30px 0;
}
th, td {
  font-size: 1rem;
}

/* --- ZEBRA ROWS --- */
tbody tr:nth-child(even) td {
  background: #f4f7ef;
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #e8efe3;
  color: #222f10;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -2px 18px 0 rgba(44,71,32,0.06);
  z-index: 3999;
  padding: 20px 30px 18px 30px;
  font-size: 1rem;
  gap: 24px;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  animation: cookieBannerIn 0.47s cubic-bezier(.67,-0.41,.59,1.41);
  transition: transform 0.3s;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 13px 8px 11px 8px;
    gap: 12px;
    font-size: 0.98rem;
  }
}
@keyframes cookieBannerIn {
  from { transform: translateY(70%); opacity: 0;}
  to { transform: translateY(0); opacity: 1;}
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn {
  background: var(--organic-green);
  color: #fff;
  border: none;
  border-radius: 22px 18px 26px 14px/30px 11px 32px 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 24px;
  transition: background 0.16s, color 0.18s, transform 0.18s;
  cursor: pointer;
  margin-right: 2px;
  box-shadow: 0 1px 6px 0 rgba(60,60,30,0.06);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--success);
  color: #fff;
  transform: scale(1.05);
}
.cookie-btn.reject {
  background: var(--error-red);
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #832c2c;
}
.cookie-btn.settings {
  background: var(--accent);
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--primary);
}

/* Cookie modal popup */
.cookie-modal-bg {
  display: none;
  position: fixed;
  z-index: 4005;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(67,78,62,0.27);
  align-items: flex-end;
  justify-content: center;
}
.cookie-modal-bg.active {
  display: flex;
}
.cookie-modal {
  background: #fcf9f4;
  color: #062d13;
  border-radius: var(--radius-large);
  box-shadow: 0 10px 50px 0 rgba(61,81,54,0.20);
  padding: 34px 28px 25px;
  min-width: 322px;
  max-width: 98vw;
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookieModalIn 0.39s cubic-bezier(.88,-0.18,.54,1.11);
}
@keyframes cookieModalIn {
  from { transform: translateY(60%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 10px;
  background: var(--earth-beige);
  border-radius: 12px;
  font-size: 1rem;
}
.cookie-category label, .cookie-category span {
  color: #29401E;
  font-weight: 500;
}
.cookie-category.essential label {
  color: #527b42;
  font-weight: bold;
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  background: #bfd9ae;
  border-radius: 24px;
  position: relative;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.18s;
}
.cookie-toggle:disabled {
  opacity: 0.64;
  cursor: not-allowed;
}
.cookie-toggle .toggle-dot {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.2s, background 0.18s;
  box-shadow: 0 0.2px 2px 0 rgba(30,34,20,0.26);
}
.cookie-toggle.active {
  background: var(--success);
}
.cookie-toggle.active .toggle-dot {
  left: 23px;
  background: #def2da;
}
.cookie-modal-footer {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 18px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #776853;
  font-size: 2.1rem;
  position: absolute;
  right: 17px;
  top: 12px;
  cursor: pointer;
  z-index: 1;
  transition: color 0.19s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--error-red);
}

/* --- ANIMATIONS --- */
a, .btn-primary, .feature-item, .card, .main-nav a, .testimonials-list .testimonial-card, .footer-nav a, .cookie-btn {
  transition: background 0.17s, color 0.16s, box-shadow 0.18s, transform 0.12s;
}

/* --- MICRO-INTERACTIONS (Hover) --- */
.feature-item:hover, .card:hover {
  box-shadow: 0 7px 32px 0 rgba(52,92,113,0.10);
  transform: translateY(-2px) scale(1.025);
}

/* --- CONTENT ALIGNMENT OVERRIDES & SAFETY --- */
section + section {
  margin-top: 10px;
}
.card, .feature-item, .testimonial-card {
  margin-bottom: 20px;
}

/* --- RESPONSIVE UTILITIES --- */
@media (max-width: 600px) {
  .container { padding-left: 5px; padding-right: 5px; }
  .footer-columns { flex-direction: column; gap: 16px; }
}
@media (max-width: 500px) {
  h1, h2, h3 { line-height: 1.13; }
  .logo img, .footer-columns img { height: 36px; }
  .cookie-modal { min-width: 98vw; padding: 17px 6px 12px; }
  .main-nav a:not(.btn-primary), .footer-nav a { font-size: 0.93rem; }
}

/* --- FORMS (Reservation) --- */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 10px;
  border: 1.5px solid #d2d3c5;
  padding: 10px 13px;
  font-size: 1rem;
  margin-bottom: 16px;
  width: 100%;
  background: #f9f8f4;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--accent);
  outline: none;
}

/* --- ACCESSIBILITY --- */
:focus-visible {
  outline: 2.5px solid var(--success);
  outline-offset: 2px;
  z-index: 3;
}

/* --- UTILITY / SPACE --- */
.mt-0 { margin-top:0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }

/* --- PRINT --- */
@media print {
  header, nav, .mobile-menu, footer, .cookie-banner, .cookie-modal-bg { display: none !important; }
  .container, .content-wrapper, .section { box-shadow:none; background:none; padding:0; }
}
