/* 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, 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #F5F5F7;
  color: #1a1a25;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #356944;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #799a6c;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
strong {
  font-weight: bold;
}
:focus {
  outline: 2px solid #799a6c;
  outline-offset: 2px;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #1A1A25;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
p, li {
  font-size: 1rem;
  line-height: 1.65;
  color: #354033;
}

/* COLOR PALETTE & CUSTOM PROPERTIES FOR nature_organic */
:root {
  --primary: #1A1A25;
  --secondary: #D4AF37;
  --accent: #F5F5F7;
  --nature-green: #356944;
  --nature-green-light: #A8BF90;
  --nature-brown: #7C6844;
  --nature-beige: #ECE3D0;
  --shadow1: rgba(53,105,68,0.13);
  --shadow2: rgba(122,100,68,0.10);
}

body {
  background: var(--accent);
  color: var(--primary);
}

/* LAYOUT CONTAINERS */
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--nature-beige);
  border-radius: 32px;
  box-shadow: 0 6px 24px var(--shadow1);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
    border-radius: 16px;
  }
}

/* HEADER */
header {
  background: #faf9f3;
  border-bottom: 2px solid var(--nature-beige);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}
header img {
  height: 48px;
}
nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--nature-green);
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 4px 2px;
  transition: color 0.2s;
  border-radius: 8px;
  font-size: 1rem;
}
nav a.btn-primary {
  margin-left: 8px;
}
nav a:hover, nav a:focus {
  color: var(--secondary);
  background: var(--nature-green-light);
}

/* BUTTONS */
.btn, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7em 2em;
  border: none;
  border-radius: 28px;
  background: linear-gradient(90deg, var(--nature-green) 90%, var(--nature-brown) 100%);
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 12px var(--shadow2);
  transition: background 0.25s, box-shadow 0.2s, transform 0.16s;
}
.btn-primary:hover, .btn-primary:focus, .btn:hover, .btn:focus {
  background: linear-gradient(90deg, #426d35 90%, #7c6844 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(53,105,68,0.13);
  transform: translateY(-1px) scale(1.02);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--nature-green);
  color: #fff;
  font-size: 2rem;
  padding: 8px 14px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  margin-left: 16px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--secondary);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  background: rgba(30,42,34,0.93);
  z-index: 400;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1.01);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: var(--nature-green);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  margin: 18px 22px 12px 0;
  width: 47px; height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: #fff;
}
.mobile-nav {
  width: 85vw;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  background: var(--accent);
  box-shadow: 0 4px 22px var(--shadow2);
  min-height: 89vh;
  padding: 36px 32px 32px 32px;
  border-top-left-radius: 38px;
  border-bottom-left-radius: 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.13rem;
  color: var(--primary);
  padding: 10px 0 10px 0;
  border-radius: 18px;
  font-weight: 600;
  transition: color .22s, background .19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  background: var(--nature-green-light);
}

@media (max-width: 1100px) {
  nav {
    gap: 16px;
  }
}
@media (max-width: 980px) {
  nav {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  header .container { gap: 9px; }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (max-width: 768px) {
  .mobile-nav {
    width: 100vw;
    min-height: 96vh;
    border-radius: 0;
    padding: 32px 20px;
  }
  header .container {
    min-height: 54px;
    padding: 3px 10px;
  }
}

/* MAIN SECTIONS & ORGANIC SHAPE DETAILS*/
main {
  width: 100%;
  min-height: 70vh;
}

/* Feature Grid (No grid! Flex only) */
.feature-grid, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div, .card {
  background: #fff;
  border-radius: 28px;
  padding: 32px 24px;
  flex: 1 1 230px;
  min-width: 210px;
  box-shadow: 0 2px 18px var(--shadow1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
  border: 2px solid var(--nature-beige);
}
.feature-grid > div:hover, .card:hover {
  box-shadow: 0px 8px 28px var(--shadow1);
  transform: translateY(-3px) scale(1.03);
  border-color: var(--nature-green-light);
}
.feature-grid img, .card img {
  width: 48px; height: 48px; margin-bottom: 16px;
  background: var(--nature-green-light);
  border-radius: 50%;
}

@media (max-width: 900px) {
  .feature-grid, .card-container, .content-grid {
    gap: 20px;
  }
  .feature-grid > div, .card {
    min-width: 175px;
    padding: 26px 12px;
  }
}
@media (max-width: 600px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div, .card {
    width: 100%; min-width: 0;
    margin-bottom: 16px;
  }
}

/* Organic List Styles */
ul.service-list, ul.feature-list, ul.value-list, ul.contact-details, ul.amenity-list, ul.event-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
ul.service-list li, ul.feature-list li, ul.value-list li, ul.contact-details li, ul.amenity-list li, ul.event-list li {
  padding: 14px 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 1px 9px var(--shadow2);
  display: flex;
  align-items: center;
  font-size: 1.1em;
  color: #425441;
  margin-bottom: 0;
  gap: 14px;
}
ul.contact-details img, ul.amenity-list img, ul.contact-details svg {
  width: 28px; height: 28px;
  margin-right: 6px;
}
.service-list .price {
  color: var(--secondary);
  font-weight: 600;
  margin-left: 12px;
}

/* Testimonials */
.testimonial-slider, .testimonial-card {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}
.testimonial-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px var(--shadow1);
  padding: 24px 30px;
  min-width: 270px;
  max-width: 480px;
  color: #243221;
  font-size: 1.06em;
  margin-bottom: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.testimonial-card p {
  color: #222b25;
  font-size: 1.08em;
  margin-bottom: 6px;
  font-style: italic;
}
.testimonial-card strong {
  color: var(--nature-green);
  font-size: 1em;
}
@media (max-width: 900px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    padding: 18px 16px;
    max-width: 100%;
  }
}

/* Spacing & Alignment Utility Classes */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
    gap: 18px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* CTA Section */
.cta-section {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
}
@media (max-width: 600px) {
  .cta-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 0;
  }
}

/* Footer */
footer {
  background: #edeadb;
  border-top: 2px solid var(--nature-beige);
  margin-top: 60px;
  font-size: 1rem;
}
footer .container {
  flex-direction: row;
  gap: 0;
  align-items: stretch;
  padding: 0 20px;
}
footer .content-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
}
.footer-menu {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-menu a {
  color: var(--nature-green);
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 0.95em;
  padding: 4px 10px;
  border-radius: 14px;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--secondary);
  background: var(--nature-green-light);
}
.brand-info {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1em;
  color: var(--nature-brown);
}
.brand-info img {
  width: 40px; height: 40px;
  border-radius: 50%;
}
.social-links {
  display: flex;
  gap: 14px;
}
.social-links a img {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--nature-green-light);
  transition: background 0.16s, transform 0.18s;
}
.social-links a:hover img, .social-links a:focus img {
  background: var(--secondary);
  transform: scale(1.12);
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-menu {
    gap: 10px;
  }
  .social-links {
    gap: 8px;
  }
}

/* ORGANIC CARD & SHADOWS */
.card, .feature-grid > div, .testimonial-card, ul.service-list li, ul.feature-list li, ul.value-list li, ul.amenity-list li, ul.contact-details li {
  border-radius: 22px 32px 18px 28px/28px 20px 32px 18px;
}

/* FORM ELEMENTS (for possible modals/cookie pref) */
input[type="checkbox"] {
  accent-color: var(--nature-green);
}
label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #354033;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  z-index: 9999;
  bottom: 0; left: 0; right: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  background: #f7f4ec;
  border-top: 3px solid var(--nature-brown);
  box-shadow: 0 -2px 24px var(--shadow1);
  padding: 30px 36px 22px 36px;
  animation: cookie-fadein 0.55s cubic-bezier(.13,0,.51,1);
}
@keyframes cookie-fadein {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #273325;
  font-size: 1.14em;
  max-width: 68vw;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-banner .btn {
  padding: 10px 20px;
  border-radius: 22px;
  font-size: 1em;
  font-weight: 600;
  box-shadow: 0 1px 8px var(--shadow2);
  background: var(--nature-green);
  color: #fff;
  margin: 0 0 0 0;
}
.cookie-banner .btn.cookie-reject {
  background: #95916D;
  color: #fff;
}
.cookie-banner .btn.cookie-settings {
  background: transparent;
  color: var(--nature-green);
  border: 1.5px solid var(--nature-green);
  box-shadow: none;
}
.cookie-banner .btn:hover, .cookie-banner .btn:focus {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 20px;
    padding: 16px 10px 10px 10px;
  }
  .cookie-banner p { max-width: 100%; }
}

/* COOKIE PREFERENCE MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(30,42,34,0.82);
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  animation: cookie-modal-in .37s cubic-bezier(.08,0,.45,1);
}
.cookie-modal.open {
  display: flex;
}
@keyframes cookie-modal-in {
  from { opacity: 0; transform: scale(0.89) translateY(60px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-content {
  background: #fffaf3;
  color: #243221;
  border-radius: 24px 46px 24px 24px/36px 24px 44px 24px;
  padding: 44px 36px 30px 36px;
  min-width: 340px;
  max-width: 95vw;
  box-shadow: 0 8px 36px var(--shadow2);
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  font-size: 1em;
}
.cookie-modal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--nature-green);
}
.cookie-modal-content .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  width: 20px; height: 20px;
}
.cookie-modal-content .cookie-description {
  color: #5a674c;
  font-size: 1em;
  margin-bottom: 8px;
}
.cookie-modal-content .modal-actions {
  display: flex;
  gap: 18px;
}
.cookie-modal-content .btn {
  min-width: 112px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--nature-green);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  width: 34px;
  height: 34px;
  cursor: pointer;
  transition: background 0.16s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--secondary);
}
@media (max-width: 450px) {
  .cookie-modal-content {
    padding: 22px 8px 18px 8px;
    min-width: 0;
    font-size: 0.98em;
  }
}

/* Animations & Micro-interactions */
.btn, .btn-primary {
  transition: background 0.2s, transform 0.14s, box-shadow 0.16s;
}
nav a, .footer-menu a, .mobile-nav a, .social-links a img {
  transition: color 0.16s, background 0.15s, transform 0.15s;
}
.card, .feature-grid > div {
  transition: box-shadow 0.17s, transform 0.16s, border-color 0.17s;
}

/* Responsive Typography */
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.47rem; }
  h3 { font-size: 1.07rem; }
}

/* Form Fields (for any contact forms/modals) */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1em;
  border-radius: 8px;
  border: 1.6px solid var(--nature-green-light);
  padding: 9px 14px;
  background: #f7f8f5;
  margin-bottom: 16px;
  width: 100%;
  box-shadow: 0 1px 8px var(--shadow2);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--nature-green);
  background: #f6fff4;
}

/* Error/success messages */
.form-success {
  background: #e1f5e5;
  color: var(--nature-green);
  padding: 9px 16px;
  border-radius: 10px;
  margin-bottom: 12px;
  border-left: 5px solid var(--nature-green);
}
.form-error {
  background: #fdebee;
  color: #a23c2a;
  padding: 9px 16px;
  border-radius: 10px;
  margin-bottom: 12px;
  border-left: 5px solid #a23c2a;
}

/* Misc Utility */
.hide {
  display: none !important;
}
.show {
  display: block !important;
}

/* Organic background overlays for hero/sections - decorative only */
@media (min-width: 1101px) {
  .section:nth-child(odd)::after {
    content: "";
    display: block;
    position: absolute;
    right: -60px; top: 56px;
    width: 340px; height: 140px;
    background: rgba(53,105,68,0.05);
    border-radius: 80px 120px 90px 80px;
    z-index: 0;
    pointer-events: none;
  }
}

/* Accessibility */
@media (prefers-contrast: more) {
  body { background: #fff !important; }
  .section, .card, .testimonial-card { background: #fff !important; border: 2px solid #aaa !important; }
  .btn, .btn-primary { background: #356944 !important; color: #fff !important; }
  .footer-menu a, nav a, .mobile-nav a { color: #1a1a25 !important; }
}

/* END OF CSS */
