/* == 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; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }


/* == VARIABLES & FONTS (nature_organic inspired) == */
:root {
  /* Brand palette */
  --cs-primary: #2A4062;
  --cs-secondary: #D2691E;
  --cs-accent: #F5F5F5;
  /* Nature Organic Extension */
  --cs-earth1: #43594b;
  --cs-earth2: #a89363;
  --cs-earth3: #e9e3d0;
  --cs-green: #6a8958;
  --cs-offwhite: #faf8f3;
  --cs-brown-light: #e9dac4;
  --cs-brown-dark: #825f29;
  --cs-shadow: 0 2px 20px rgba(67, 89, 75, .07);
}

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

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--cs-primary);
  background: var(--cs-offwhite);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--cs-earth1);
  letter-spacing: -.01em;
  margin-bottom: 12px;
  font-weight: 900;
}
h1 { font-size: 2.5rem; line-height: 1.2; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }

p, li, address {
  color: var(--cs-primary);
  font-size: 1rem;
  margin-bottom: 10px;
}

strong { font-weight: 700; color: var(--cs-earth2); }


/* == CONTAINERS, LAYOUTS, SPACING == */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  background: var(--cs-offwhite);
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 36px;
  box-shadow: var(--cs-shadow);
  /* organic edge: subtle oval shadow */
  position: relative;
  overflow: hidden;
}

.section:nth-child(even) {
  background: var(--cs-earth3);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: var(--cs-accent);
  margin-bottom: 20px;
  border-radius: 28px;
  box-shadow: var(--cs-shadow);
  position: relative;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 260px;
}

.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;
  background: #fff;
  box-shadow: 0 2px 12px rgba(70,90,60,0.08);
  border-radius: 24px;
  margin-bottom: 20px;
  min-width: 240px;
  border-left: 7px solid var(--cs-green);
}
.testimonial-card p {
  color: #232b1b;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-card strong {
  color: var(--cs-brown-dark);
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}


/* == BUTTONS & CALLS-TO-ACTION == */
.cta-primary {
  display: inline-block;
  background: var(--cs-green);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  padding: 14px 34px;
  border-radius: 32px 28px 36px 32px/38px 28px 32px 34px;
  margin-top: 12px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(67,89,75,0.09);
  border: 0;
  cursor: pointer;
  transition: background 0.22s, transform 0.22s;
  letter-spacing: 0.03em;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--cs-secondary);
  color: #fff;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 4px 18px rgba(85,63,20,0.11);
}
.mobile-nav a, nav a {
  padding: 8px 0;
  border-radius: 18px;
  transition: color 0.18s, background 0.18s;
  color: var(--cs-earth1);
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-right: 12px;
  margin-bottom: 4px;
}
nav a:last-child { margin-right: 0; }
.mobile-nav a:hover, nav a:hover, .mobile-nav a:focus, nav a:focus {
  background: var(--cs-green);
  color: #fff;
}


/* == HEADER, NAVIGATION & LOGO == */
header {
  background: var(--cs-earth2);
  padding: 14px 0;
  border-radius: 0 0 32px 32px/0 0 44px 44px;
  box-shadow: 0 3px 20px rgba(90,70,40,.11);
  position: relative;
  z-index: 10;
  min-height: 72px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
header > a {
  margin-right: 25px;
  display: flex;
  align-items: center;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
header .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--cs-primary);
  margin-left: 16px;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 11;
}
header .mobile-menu-toggle:hover, header .mobile-menu-toggle:focus {
  color: var(--cs-green);
}

/* == MOBILE MENU (OFFCANVAS) == */
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100%; height: 100vh;
  background: rgba(64,84,68,0.95);
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.9,-0.07,.05,1.02);
  z-index: 98;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 14px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  right: 24px;
  top: 24px;
  cursor: pointer;
  z-index: 99;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--cs-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 54px;
  gap: 16px;
  padding: 0 32px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  border-radius: 22px;
  padding: 14px 18px;
  width: 100%;
  transition: background 0.14s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--cs-green);
  color: var(--cs-secondary);
}

/* == MAIN STYLES == */
main {
  margin: 0 auto;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
}

ul {
  list-style: none;
}
ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
}
ul li span {
  margin-right: 7px;
  display: inline-flex;
  align-items: center;
}
ul li img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

address {
  font-style: normal;
  margin-bottom: 10px;
  color: var(--cs-primary);
  font-size: 1rem;
}

.text-section ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section ul li {
  font-size: 1.03rem;
  align-items: center;
  gap: 10px;
}
.text-section ul li img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.map-location {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}
.map-location img {
  max-width: 260px;
  min-width: 120px;
  border-radius: 18px;
  box-shadow: 0 2px 7px rgba(38,46,36,.11);
  background: var(--cs-brown-dark);
  padding: 8px;
}

/* == FOOTER == */
footer {
  width: 100%;
  padding: 40px 0 24px 0;
  background: var(--cs-earth1);
  border-radius: 44px 44px 0 0/64px 64px 0 0;
  box-shadow: 0 -4px 20px rgba(60,60,30,0.10);
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: var(--cs-brown-light);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin: 0 0 0 0!important;
  background: none;
  transition: color 0.2s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--cs-green);
  background: none;
}
.footer-contact p, .footer-contact a {
  color: var(--cs-earth3);
  font-size: .98rem;
  margin-bottom: 6px;
  line-height: 1.6;
}
.footer-contact a { text-decoration: underline; }


/* == RESPONSIVE DESIGN == */
@media (max-width: 1100px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 760px;
  }
  main, .container {
    padding: 0 10px;
  }
  .section {
    padding: 28px 10px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  header .mobile-menu-toggle { display: inline-block; }
  .container {
    max-width: 100vw;
    padding: 0 4vw;
  }
  .section {
    margin-bottom: 38px;
    padding: 24px 4vw;
    border-radius: 22px;
  }
  main {
    padding-bottom: 20px;
  }
  .footer-contact p, .footer-contact a {
    font-size: .92rem;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .card {
    padding: 22px 12px;
    min-width: unset;
  }
  .testimonial-card {
    min-width: unset;
    padding: 13px 9px;
    border-radius: 16px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.11rem; }
}

@media (max-width: 520px) {
  .section {
    padding: 12px 2vw;
    margin-bottom: 20px;
    border-radius: 12px;
  }
}


/* == ANIMATIONS & HOVERS == */
.card, .testimonial-card, .cta-primary, .section {
  transition: box-shadow 0.22s, transform 0.18s, background 0.18s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(107,142,88,0.13);
  transform: translateY(-2px) scale(1.018);
}
.section:hover {
  box-shadow: 0 8px 35px rgba(120,94,40,0.15);
}

/* Distinctive organic shadow for top/bottom of main blocks */
.section:before {
  content: '';
  position: absolute;
  left: -6vw;
  top: 0;
  width: 20vw;
  height: 24px;
  background: radial-gradient(ellipse at center,rgba(210,150,80,0.06),transparent 80%);
  z-index: 0;
  pointer-events: none;
}
.section:after {
  content: '';
  position: absolute;
  right: -10vw;
  bottom: 0;
  width: 20vw;
  height: 18px;
  background: radial-gradient(ellipse at center,rgba(70,130,70,0.08),transparent 90%);
  z-index: 0;
  pointer-events: none;
}

/* == ORGANIC SHAPE DECORATIONS (visual) == */
/* Not overlapping content, only as subtle organic backgrounds */

/* == COOKIE CONSENT BANNER == */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--cs-brown-light);
  color: var(--cs-primary);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 5vw 22px 5vw;
  box-shadow: 0 -2px 24px rgba(40,60,44,0.12);
  z-index: 9999;
  transition: transform 0.34s;
  border-radius: 38px 38px 0 0/32px 32px 0 0;
  font-size: 1rem;
  gap: 28px;
  min-height: 70px;
}
.cookie-consent-banner.hide {
  transform: translateY(140%);
}
.cookie-consent-banner p {
  flex: 1 1 260px;
  color: var(--cs-primary);
  margin-right: 29px;
  margin-bottom: 0;
}
.cookie-consent-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  background: var(--cs-green);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 21px 20px 25px 23px/25px 19px 23px 21px;
  cursor: pointer;
  font-weight: 600;
  margin-right: 0;
  transition: background 0.14s, color 0.17s, transform 0.18s;
}
.cookie-btn:last-child {
  margin-right: 0;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--cs-secondary);
  color: #fff;
  transform: scale(1.04);
}
.cookie-btn.cookie-btn-secondary {
  background: var(--cs-primary);
  color: #fff;
}
.cookie-btn.cookie-btn-tertiary {
  background: var(--cs-accent);
  color: var(--cs-primary);
  border: 1.2px solid var(--cs-green);
}
.cookie-btn.cookie-btn-tertiary:hover, .cookie-btn.cookie-btn-tertiary:focus {
  background: var(--cs-green);
  color: #fff;
}

/* ===== Cookie Modal ===== */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(40,60,44,0.33);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.19s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 28px 36px 22px 30px/26px 30px 24px 32px;
  box-shadow: 0 8px 48px rgba(70,130,70,0.14);
  max-width: 440px;
  width: 96vw;
  padding: 36px 27px 27px 27px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 10001;
}
.cookie-modal h3 {
  font-size: 1.45rem;
  margin-bottom: 2px;
  color: var(--cs-green);
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 10px;
  background: none;
  border: none;
  font-size: 1.44rem;
  color: var(--cs-brown-dark);
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: var(--cs-secondary);
}
.cookie-options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-option {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
}
.cookie-option input[type='checkbox'] {
  accent-color: var(--cs-green);
  width: 18px;
  height: 18px;
  min-width: 18px;
}
.cookie-label {
  font-size: 1rem;
  color: var(--cs-primary);
  font-weight: 500;
}
.cookie-essential {
  color: var(--cs-green);
  font-weight: 700;
  font-size: .98rem;
  margin-left: 8px;
}
.cookie-modal-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 19px;
  justify-content: flex-end;
}

@media (max-width: 540px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 3vw;
    font-size: .95rem;
  }
  .cookie-consent-banner p { margin-right: 0; }
  .cookie-consent-buttons {
    flex-wrap: wrap;
    gap: 8px;
  }
  .cookie-modal {
    padding: 16px 9px 18px 9px;
  }
}

/* ======= FORMS ======= */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 13px;
  border: 1.2px solid var(--cs-green);
  padding: 10px 13px;
  font-size: 1rem;
  transition: border-color 0.18s;
  margin-bottom: 15px;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--cs-secondary);
  outline: none;
}

label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  color: var(--cs-primary);
  margin-bottom: 3px;
}

/* ======= ACCESSIBILITY ======= */
:focus-visible {
  outline: 2px dashed var(--cs-green);
  outline-offset: 2px;
}

/* == MISC == */
::-webkit-scrollbar {
  width: 9px;
  background: var(--cs-brown-light);
}
::-webkit-scrollbar-thumb {
  background: var(--cs-green);
  border-radius: 8px;
}
