/* ============================================
   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;
}
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  background: #F4F0EB;
  color: #234628;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
:root {
  --primary: #234628;
  --secondary: #F4F0EB;
  --accent: #865629;
  --accent-lite: #9E6635;
  --text-main: #234628;
  --text-muted: #49774b;
  --bg: #ffffff;
  --shadow: 0 2px 24px rgba(35, 70, 40, 0.08);
  --radius: 14px;
  --radius-sm: 8px;
  --nav-height: 70px;
}
img {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}
main {
  flex: 1 0 auto;
}

/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #234628;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 1rem;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #234628;
}
strong, b {
  font-weight: 700;
  color: var(--primary);
}
a {
  color: var(--accent);
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--accent-lite);
  text-decoration-thickness: 2px;
}
blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #234628;
  background: #e8eef0;
  border-left: 4px solid var(--primary);
  padding: 16px 24px;
  margin-bottom: 8px;
  border-radius: var(--radius-sm);
}
cite {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: normal;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
}

/* ============================================
   CONTAINER & LAYOUT
============================================ */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  position: relative;
  padding: 24px;
  transition: box-shadow 0.25s;
}
.card:hover {
  box-shadow: 0 4px 32px rgba(35, 70, 40, 0.16);
}
.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;
}
.feature-grid, .inspiration-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  width: 100%;
  justify-content: center;
}
.service-list {
  gap: 20px;
  flex-direction: column;
  align-items: stretch;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  gap: 15px;
  min-width: 230px;
  flex: 1 1 230px;
  max-width: 320px;
  position: relative;
  transition: box-shadow 0.25s;
}
.feature-item img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
}
.feature-item:hover {
  box-shadow: 0 4px 32px rgba(35, 70, 40, 0.15);
}
.service-entry {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 22px 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  width: 100%;
}
.inspiration-grid .text-section {
  flex: 1 1 230px;
  min-width: 210px;
  max-width: 330px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 22px 20px;
  margin-bottom: 0;
}

.testimonials {
  margin-bottom: 60px;
  padding: 40px 0;
}
.testimonial-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  gap: 20px;
  padding: 20px 26px;
  margin-bottom: 24px;
  width: 100%;
  max-width: 550px;
  color: #234628;
  position: relative;
  transition: box-shadow 0.23s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 36px rgba(158, 102, 53, 0.13);
  transform: translateY(-4px) scale(1.011);
}
.testimonial-card blockquote {
  color: #234628;
  background: transparent;
  border-left: 4px solid var(--accent);
  padding: 8px 0 8px 16px;
  border-radius: 0;
}
.testimonial-card cite {
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.018em;
  margin-top: 7px;
  align-self: flex-end;
}

/* ============================================
   HEADER & NAVIGATION
============================================ */
header {
  background: #ffffff;
  border-bottom: 1px solid #e7e9ec;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 70;
  min-height: var(--nav-height);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
}
header img {
  height: 44px;
  margin: 8px 24px 8px 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: #234628;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 500;
  letter-spacing: 0.012em;
  font-size: 1.05rem;
  text-decoration: none;
  padding: 6px 4px;
  border-radius: 4px;
  transition: color 0.17s, background 0.13s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent);
  background: #f3ede7;
  text-decoration: underline;
}
.cta-btn {
  display: inline-block;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 600;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 28px;
  font-size: 1.09rem;
  box-shadow: 0 2px 8px rgba(35,70,40,0.07);
  cursor: pointer;
  margin-left: 16px;
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.2s, transform 0.14s;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 5px 24px rgba(158, 102, 53, 0.18);
  transform: translateY(-2px) scale(1.015);
}
button, .button {
  font-family: inherit;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 8px;
  padding: 9px 20px;
  cursor: pointer;
  font-weight: 500;
  box-shadow: none;
  transition: background 0.16s, color 0.18s;
}
button:focus, .button:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Burger */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.1rem;
  line-height: 1;
  margin-left: 12px;
  cursor: pointer;
  z-index: 201;
  padding: 6px 12px;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--accent);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #234628;
  box-shadow: 0 4px 40px rgba(35, 70, 40, 0.29);
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(0.76,0.04,0.54,0.99);
  z-index: 200;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2rem;
  border: none;
  align-self: flex-end;
  margin: 25px 25px 0 0;
  cursor: pointer;
  z-index: 210;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 46px;
  padding-left: 32px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  text-decoration: none;
  letter-spacing: 0.012em;
  padding: 8px 8px 8px 0;
  border-radius: 6px;
  transition: color 0.16s, background 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent-lite);
  color: #fff;
}

/* ============================================
   HERO SECTIONS
============================================ */
.hero {
  display: flex;
  align-items: center;
  background: #f4f8f7;
  min-height: 320px;
  justify-content: center;
  padding: 50px 0 30px 0;
  margin-bottom: 52px;
}
.hero .container {
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 750px;
}
.hero h1 {
  margin-top: 8px;
  color: var(--primary);
}
.hero p {
  font-size: 1.1rem;
  margin-bottom: 22px;
  color: #234628;
}

/* ============================================
   SECTIONS, ABOUT ETC.
============================================ */
.about, .features, .services, .contact {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.about .content-wrapper, .features .content-wrapper, .services .content-wrapper, .contact .content-wrapper {
  align-items: flex-start;
}

/* ============================================
   FOOTER
============================================ */
footer {
  background: #234628;
  color: #fff;
  padding: 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 16px;
}
footer .content-wrapper {
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0 24px 0;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-right: 28px;
}
.footer-nav a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2.5px;
  font-size: 1rem;
  opacity: 0.93;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent);
}
.brand-address p {
  color: #fffffa;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.brand-address a {
  color: #b9ecd1;
  text-decoration: underline;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-left: 22px;
}
.footer-social a {
  display: flex;
  align-items: center;
}
.footer-social img {
  width: 30px;
  height: 30px;
  transition: filter 0.15s;
  filter: grayscale(0.23);
  opacity: 0.93;
}
.footer-social a:hover img {
  opacity: 1;
  filter: none;
}

/* ============================================
   COOKIE CONSENT BANNER
============================================ */
.cookie-consent {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #234628;
  color: #fff;
  box-shadow: 0 -2px 18px rgba(35,70,40,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 16px 15px 16px;
  z-index: 3999;
  animation: slideUp 0.55s ease;
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-text {
  font-size: 1.05rem;
  margin-right: 18px;
}
.cookie-consent-buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-btn {
  background: #fff;
  color: var(--primary);
  border: none;
  border-radius: var(--radius-sm);
  padding: 9px 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.14s, color 0.15s, box-shadow 0.18s;
  margin-left: 0;
  box-shadow: 0 1px 6px rgba(76,115,93,0.09);
}
.cookie-btn.settings {
  background: #f4f0eb;
  color: var(--primary);
}
.cookie-btn.accept {
  background: var(--accent);
  color: #fff;
}
.cookie-btn.reject {
  background: #49774b;
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--accent-lite);
  color: #fff;
}

/* Cookie modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4001;
  left: 0; right: 0;
  top: 0; bottom: 0;
  background: rgba(35,70,40,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalIn 0.45s cubic-bezier(0.24,0.58,0.56,1.13);
}
@keyframes modalIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #ffffff;
  min-width: 330px;
  max-width: 410px;
  width: 90vw;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 34px 28px 32px;
  position: relative;
}
.cookie-modal h2 {
  color: var(--primary);
  margin-bottom: 13px;
  font-size: 1.32rem;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 1.3rem;
  border: none;
  background: none;
  color: var(--primary);
  cursor: pointer;
}
.cookie-modal .cookie-option {
  display: flex;
  align-items: center;
  margin-bottom: 17px;
  flex-direction: row;
  gap: 12px;
  font-size: 1.05rem;
}
.cookie-modal label {
  flex: 1 1 auto;
  color: var(--primary);
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--primary);
  width: 19px;
  height: 19px;
  margin-right: 8px;
}
.cookie-modal .modal-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  gap: 15px;
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 1100px) {
  .container {
    max-width: 980px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 97vw;
  }
  .feature-grid, .inspiration-grid, .content-grid {
    justify-content: flex-start;
  }
  .footer-social { margin-top: 28px; }
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    padding: 32px 0 24px 0;
  }
  footer .container {
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 10px;
    min-height: 60px;
    padding: 0 10px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-btn {
    margin-left: auto;
  }
  /* Section & grid responsiveness */
  .content-wrapper {
    padding: 0;
    align-items: flex-start;
  }
  .feature-grid, .inspiration-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item, .inspiration-grid .text-section {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding: 18px 12px;
  }
  .testimonial-card {
    max-width: 97vw;
    padding: 12px 6vw;
  }
  .service-list, .content-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .section, .about, .features, .services, .contact {
    padding: 32px 8px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.55rem;
  }
  h2 {
    font-size: 1.27rem;
  }
  h3 {
    font-size: 1.09rem;
  }
  .section, .about, .features, .services, .contact {
    padding: 20px 2vw;
  }
  .hero {
    padding: 28px 0 16px 0;
    min-height: 190px;
    margin-bottom: 24px;
  }
  footer .content-wrapper {
    padding: 18px 0 12px 0;
    gap: 18px;
  }
}

/* ============================================
   MISCELLANEOUS UTILITIES
============================================ */
.text-center {
  text-align: center;
}
.mt-16 { margin-top: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-36 { margin-bottom: 36px; }

/*
  END OF STYLE SHEET
*/
