/* MESH NOVA – NATURE_ORGANIC STYLE.CSS */
/* CSS RESET & BASE ------------------------------------------------- */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F6F6F6;
  color: #2E2E2C;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
button, input, select, textarea {
  font-family: inherit;
  outline: none;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* VARIABLES --------------------------------------------------------- */
:root {
  --mesh-primary: #242F36;   /* dark graphite */
  --mesh-secondary: #6CCACD; /* blue-green accent */
  --mesh-accent: #F6F6F6;    /* light background */

  --mesh-green: #859178;     /* calm earthy green */
  --mesh-beige: #F2EBDC;     /* sand/organic background */
  --mesh-brown: #B8A178;     /* driftwood brown */
  --mesh-dark: #2E2E2C;
  --mesh-white: #FFFFFF;
}

/* FONT SETUP -------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--mesh-primary);
  font-weight: 700;
  line-height: 1.2;
}
h1 {font-size: 2.5rem; margin-bottom: 24px;}
h2 {font-size: 2rem; margin-bottom: 20px; color: var(--mesh-green);}
h3 {font-size: 1.3rem; margin-bottom: 12px;}
@media (max-width: 768px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.4rem;}
  h3 {font-size: 1.1rem;}
}
p, ul, ol, li, address, blockquote {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--mesh-dark);
}
strong {font-weight: 600;}

/* CONTAINER & WRAPPER --------------------------------------------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}

/* ORGANIC/NATURAL DECORATION -------------------------------------- */
section {
  background: var(--mesh-beige);
  border-radius: 36px 36px 32px 42px / 42px 30px 34px 40px; /* slightly organic curves */
  box-shadow: 0 8px 32px 0 rgba(45, 59, 43, 0.05);
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}
section:nth-child(even) {
  background: var(--mesh-accent);
}

/* FLEXBOX PATTERNS ------------------------------------------------ */
/* pattern: .section.....already handled above for section */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: var(--mesh-white);
  border-radius: 20px 30px 18px 24px/22px 20px 24px 15px;
  padding: 28px 22px 22px 22px;
  box-shadow: 0 4px 20px rgba(80, 110, 85, 0.07);
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  flex: 1 1 320px;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(80, 110, 85, 0.10);
  transform: translateY(-6px) scale(1.02);
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: var(--mesh-white);
  border-radius: 20px 35px 22px 24px/32px 23px 22px 25px;
  box-shadow: 0 4px 20px rgba(36, 47, 54, 0.10);
  margin-bottom: 20px;
  min-width: 260px;
  flex: 1 1 320px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SPACING ------------------------------------------------------ */
ul, ol {
  padding-left: 0;
}
ul li, ol li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  color: var(--mesh-dark);
}
ul li img {
  width: 32px; height: 32px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--mesh-beige);
  box-shadow: 0 0 0 2px var(--mesh-accent);
}

blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  color: var(--mesh-primary);
  margin-bottom: 10px;
  quotes: "\201C" "\201D";
  font-style: italic;
  padding-left: 10px;
  border-left: 4px solid var(--mesh-green);
}

/* BUTTONS -------------------------------------------------------- */
.btn-primary, .content-wrapper a.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: var(--mesh-green);
  color: var(--mesh-white);
  padding: 14px 34px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(85, 145, 120, 0.11);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s;
  margin-top: 12px;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--mesh-secondary);
  color: var(--mesh-primary);
  transform: translateY(-2px) scale(1.03);
  outline: none;
}

/* NAVIGATION ------------------------------------------------------ */
header {
  background: var(--mesh-white);
  box-shadow: 0 4px 24px 0 rgba(36, 47, 54, 0.03);
  padding: 0 0;
  border-radius: 0 0 30px 30px/40px 40px 20px 20px;
  z-index: 30;
  position: relative;
}
header nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px 0 14px 0;
  flex-wrap: wrap;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 8px;
  padding: 7px 18px;
  color: var(--mesh-primary);
  transition: background 0.17s, color 0.17s;
}
header nav a.btn-primary {
  padding: 9px 30px;
  margin-left: 10px;
}
header nav a:not(.btn-primary):hover {
  background: var(--mesh-green);
  color: var(--mesh-white);
}
header nav img {
  width: 140px; height: auto;
  margin-right: 22px;
}

/* MOBILE MENU BURGER ---------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: var(--mesh-green);
  color: var(--mesh-white);
  font-size: 2.2rem;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 16px;
  right: 24px;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(80, 110, 85, 0.09);
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--mesh-secondary);
  color: var(--mesh-primary);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 100vw;
  width: 100vw; height: 100vh;
  background: rgba(242, 235, 220, 0.98);
  box-shadow: -4px 0 32px rgba(36, 47, 54, 0.12);
  z-index: 1100;
  transition: transform 0.38s cubic-bezier(0.7, 0.1, 0.3, 1.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow-y: auto;
  transform: translateX(0);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  left: 0;
  transform: translateX(-100vw);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--mesh-primary);
  font-size: 2.2rem;
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1002;
  cursor: pointer;
  background: #e9e2d2;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(120, 131, 100, 0.09);
  transition: background 0.15s;
}
.mobile-menu-close:hover {
  background: var(--mesh-secondary);
  color: var(--mesh-white);
}

.mobile-nav {
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  font-size: 1.3rem;
  padding: 13px 0;
  color: var(--mesh-primary);
  border-radius: 18px;
  width: 90vw;
  max-width: 400px;
  transition: background 0.16s, color 0.16s;
  letter-spacing: 0.01em;
}
.mobile-nav a:hover {
  background: var(--mesh-green);
  color: var(--mesh-white);
}

@media (max-width:1120px) {
  .header .container { max-width: 100%; }
  .container { max-width: 96vw; }
}

@media (max-width: 900px) {
  header nav a { font-size: 0.97rem; padding: 6px 10px; }
  header nav img { width: 110px; margin-right: 8px; }
}
@media (max-width: 850px) {
  header nav { gap: 12px; }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* PAGE CONTENT LAYOUTS ---------------------------------------------- */
.content-wrapper {
  width: 100%;
}
.content-wrapper > div {
  margin-bottom: 20px;
}
.text-section {
  margin-bottom: 18px;
}

/* CARDS AND TESTIMONIALS ------------------------------------------- */
.testimonial-card {
  background: var(--mesh-white);
  color: var(--mesh-primary);
  border: 1px solid #e5e8e2;
  box-shadow: 0 2px 12px rgba(133, 145, 120, 0.12);
  min-height: 138px;
  font-size: 1.05rem;
  margin-bottom: 20px;
  max-width: 420px;
  width: 100%;
  transition: box-shadow 0.17s, transform 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(85, 145, 120, 0.17);
  transform: scale(1.025);
}
.testimonial-card strong {
  color: var(--mesh-green);
  font-weight: 700;
}

/* SOCIAL ICONS ---------------------------------------------------- */
.social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 14px 0;
}
.social-icons img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--mesh-beige);
  transition: box-shadow 0.15s, transform 0.16s;
  box-shadow: 0 0 2px 2px var(--mesh-accent);
  cursor: pointer;
}
.social-icons img:hover {
  box-shadow: 0 0 0 3px var(--mesh-green);
  transform: scale(1.08);
}

/* FOOTER ---------------------------------------------------------- */
footer {
  background: var(--mesh-beige);
  border-radius: 36px 36px 0 0 / 35px 35px 0 0;
  padding: 44px 0 20px 0;
  box-shadow: 0 -4px 40px 0 rgba(45, 59, 43, 0.04);
  width: 100%;
  margin-top: 60px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
footer nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--mesh-green);
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.13s, color 0.13s;
}
footer nav a:hover {
  background: var(--mesh-green);
  color: var(--mesh-white);
}
footer address {
  font-style: normal;
  font-size: 0.98rem;
  color: var(--mesh-dark);
}
footer p {
  font-size: 0.97rem;
  color: #847c68;
}

/* COOKIE CONSENT BANNER -------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: var(--mesh-brown);
  color: var(--mesh-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 24px 20px 24px;
  gap: 16px;
  box-shadow: 0 -2px 16px rgba(80, 110, 85, 0.14);
  z-index: 1301;
  font-size: 1rem;
  transition: transform 0.36s, opacity 0.36s;
}
.cookie-banner.hide {
  transform: translateY(130%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: var(--mesh-white);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border: none;
  background: var(--mesh-green);
  color: var(--mesh-white);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 32px;
  padding: 7px 22px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
  margin-left: 0;
}
.cookie-banner button:hover {
  background: var(--mesh-secondary);
  color: var(--mesh-primary);
}
.cookie-banner button.cookie-settings {
  background: var(--mesh-accent);
  color: var(--mesh-green);
  border: 1px solid var(--mesh-green);
}
.cookie-banner button.cookie-settings:hover {
  background: var(--mesh-green);
  color: var(--mesh-white);
}

/* COOKIE MODAL ---------------------------------------------------- */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 1500;
  background: rgba(36,47,54,0.28);
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s;
}
.cookie-modal.open {
  display: flex;
  pointer-events: all;
  opacity: 1;
}
.cookie-modal-content {
  background: var(--mesh-white);
  color: var(--mesh-primary);
  padding: 36px 28px 26px 28px;
  border-radius: 34px 34px 20px 28px/42px 30px 14px 32px;
  min-width: 340px;
  max-width: 96vw;
  box-shadow: 0 6px 36px rgba(45, 59, 43, 0.15);
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  position: relative;
  animation: cookie-pop 0.4s ease;
}
@keyframes cookie-pop {
  0% { transform: scale(0.93) translateY(38px); opacity: 0; }
  75% { opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-content h3 {
  font-size: 1.4rem;
  color: var(--mesh-green);
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 12px 0 18px 0;
  width: 100%;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--mesh-green);
  border-radius: 8px;
  margin: 0 6px 0 0;
}
.cookie-modal-content .close-cookie-modal {
  background: none;
  border: none;
  color: var(--mesh-green);
  font-size: 2rem;
  position: absolute;
  top: 20px;
  right: 24px;
  cursor: pointer;
  padding: 2px 12px;
  border-radius: 50%;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal-content .close-cookie-modal:hover {
  background: var(--mesh-green);
  color: var(--mesh-white);
}
.cookie-modal-content .cookie-modal-actions {
  display: flex;
  gap: 18px;
}
.cookie-modal-content button {
  border: none;
  border-radius: 25px;
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  background: var(--mesh-green);
  color: var(--mesh-white);
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.cookie-modal-content button:hover {
  background: var(--mesh-secondary);
  color: var(--mesh-primary);
}

/* LIST TYPOGRAPHY IN MODALS, CARDS -------------------------------- */
.cookie-modal-content ul, .cookie-modal-content li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* TEXT-IMAGE-SECTIONS --------------------------------------------- */
.text-image-section {
  gap: 30px;
  align-items: center;
}
@media (max-width: 768px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* RESPONSIVE ADJUSTMENTS ------------------------------------------ */
@media (max-width: 900px) {
  .container { padding: 0 8px; }
  section { padding: 32px 8px; border-radius: 22px; }
  footer { padding: 28px 2px 9px 2px; border-radius: 14px 14px 0 0 / 22px 22px 0 0;}
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.2rem; }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card, .card {
    min-width: 0;
    max-width: 100%;
  }
  .container { max-width: 100vw; padding: 0 6px; }
}
@media (max-width: 600px) {
  .cookie-modal-content {
    padding: 20px 6px 12px 10px;
    min-width: 0;
    width: 98vw;
    border-radius: 18px 18px 13px 14px/22px 13px 11px 18px;
  }
  section { padding: 22px 2vw; margin-bottom: 30px; border-radius: 13px; }
  .testimonial-card, .card {
    padding: 14px 9px;
    border-radius: 13px;
  }
}

/* FORM ELEMENTS (FOR CONTACT) -------------------------------------- */
input[type="text"], input[type="email"], textarea {
  background: var(--mesh-accent);
  border: 1px solid #bbb;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 1rem;
  color: var(--mesh-primary);
  margin-bottom: 14px;
  width: 100%;
  max-width: 480px;
  transition: border 0.15s, background 0.15s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: var(--mesh-green);
  background: var(--mesh-white);
}

/* UTILITY CLASSES (SPACING, ETC) ----------------------------------- */
.mb-32 {margin-bottom: 32px !important;}
.mt-32 {margin-top: 32px !important;}
.mt-20 {margin-top: 20px !important;}
.mb-20 {margin-bottom: 20px !important;}

/* PRINT STYLES ---------------------------------------------------- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  section, .container { box-shadow: none !important; }
}

/* END OF MESH NOVA CSS */
