/* 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;
  scroll-behavior: smooth;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F5F1EB;
  color: #2C3A3F;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
ul,
ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
ul {
  margin-bottom: 24px;
}
li {
  margin-bottom: 10px;
}
:focus {
  outline: 2px solid #A87C4F;
  outline-offset: 2px;
}

/* TYPOGRAPHY ----------------------------------- */
h1,
h2,
h3,
h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.02em;
  color: #2C3A3F;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  font-weight: 500;
}
p {
  font-size: 1.05rem;
  margin-bottom: 16px;
}
strong {
  font-weight: 600;
}
em {
  font-style: italic;
  color: #A87C4F;
}
blockquote {
  font-style: italic;
  color: #2C3A3F;
  background: #EFEAE3;
  border-left: 4px solid #A87C4F;
  margin: 0 0 12px 0;
  padding: 18px 20px;
}

/* GENERAL CONTAINER ----------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* SECTIONS SPACING & PATTERNS (CRITICAL) -------------- */
section {
  background: transparent;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(44, 58, 63, 0.07);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 240px;
  flex: 1 1 300px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(44, 58, 63, 0.13);
  transform: translateY(-4px);
}
.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;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(44, 58, 63, 0.085);
  gap: 20px;
  padding: 20px;
  margin-bottom: 22px;
  min-width: 240px;
  max-width: 410px;
  border-left: 5px solid #A87C4F;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(44, 58, 63, 0.13);
  border-color: #2C3A3F;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card blockquote {
  margin: 0 0 6px 0;
  background: none;
  border: none;
  padding: 0;
  color: #2C3A3F;
}
.testimonial-card footer {
  font-size: 0.98rem;
  color: #A87C4F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: normal;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION ----------------------------------- */
.hero {
  background: #fff;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 6px 36px rgba(44, 58, 63, 0.09);
  margin-bottom: 52px;
  padding: 52px 0 46px 0;
}
.hero h1 {
  color: #2C3A3F;
  font-size: 2.6rem;
  margin-bottom: 16px;
}
.hero p {
  max-width: 600px;
  margin-bottom: 20px;
}

/* NAVIGATION ----------------------------------- */
.main-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  background: #fff;
  padding: 16px 0;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 2px 14px rgba(44, 58, 63, 0.04);
}
.main-nav > a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  color: #2C3A3F;
  padding: 8px 10px;
  border-radius: 7px;
  transition: background 0.14s, color 0.13s;
  display: flex;
  align-items: center;
  position: relative;
}
.main-nav > a:not(.btn-primary):hover {
  background: #EFEAE3;
  color: #A87C4F;
}
.main-nav img {
  height: 34px;
  margin-right: 4px;
}
.btn-primary {
  background: #A87C4F;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  padding: 10px 28px;
  border-radius: 32px;
  box-shadow: 0 4px 18px rgba(168, 124, 79, 0.08);
  font-size: 1.12rem;
  transition: background 0.18s, box-shadow 0.15s, transform 0.13s;
  cursor: pointer;
  display: inline-block;
  margin-left: 8px;
}
.btn-primary:hover, .btn-primary:active {
  background: #2C3A3F;
  color: #fff;
  box-shadow: 0 8px 32px rgba(44, 58, 63, 0.15);
  transform: translateY(-2px) scale(1.03);
}

/* MOBILE NAVIGATION ----------------------------- */
.mobile-menu-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 2.2rem;
  color: #2C3A3F;
  padding: 10px 18px;
  cursor: pointer;
  z-index: 1070;
  transition: color 0.16s;
}
.mobile-menu-toggle:hover {
  color: #A87C4F;
}
.mobile-menu {
  display: none;
}
.mobile-menu.active {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44, 58, 63, 0.91);
  z-index: 1100;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  pointer-events: auto;
  transition: background 0.24s;
  animation: mobileMenuSlideIn 0.34s cubic-bezier(0.83,0,0.17,1);
}
@keyframes mobileMenuSlideIn {
  0% { transform: translateX(-60vw); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}
.mobile-menu-close {
  border: none;
  background: none;
  color: #fff;
  font-size: 2rem;
  align-self: flex-end;
  margin: 26px 36px 0 0;
  cursor: pointer;
  z-index: 1200;
  transition: color 0.15s;
}
.mobile-menu-close:hover {
  color: #A87C4F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 32px 38px;
  gap: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  color: #fff;
  border-radius: 7px;
  padding: 14px 0 14px 10px;
  min-width: 180px;
  display: flex;
  transition: background 0.13s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A87C4F;
  color: #fff;
}
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 18px;
    right: 22px;
  }
}
@media (min-width: 993px) {
  .mobile-menu-toggle,
  .mobile-menu {
    display: none !important;
  }
}

/* FOOTER ----------------------------------- */
footer {
  background: #fff;
  border-top: 1px solid #EFEAE3;
  box-shadow: 0 -2px 14px rgba(44, 58, 63, 0.03);
  padding: 34px 0 14px 0;
  margin-top: 50px;
  font-size: 1rem;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 38px;
}
.footer-main a img {
  height: 48px;
  margin-bottom: 14px;
}
.footer-main nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 10px;
}
.footer-main nav a {
  color: #2C3A3F;
  transition: color 0.16s;
  font-size: 1.02rem;
}
.footer-main nav a:hover {
  color: #A87C4F;
}
.contact-summary p {
  font-size: 0.98rem;
  margin-bottom: 6px;
  color: #736655;
}
@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

/* BUTTONS, LINKS, INTERACTIONS ------------------- */
.button,
.btn-primary,
.mobile-menu-close, .mobile-menu-toggle {
  transition: background 0.18s, color 0.16s, box-shadow 0.18s, transform 0.13s;
}
button {
  font-family: inherit;
  font-size: 1rem;
}

/* FEATURE ICON GRIDS ----------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 8px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(44, 58, 63, 0.065);
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 345px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 14px 22px 14px;
  gap: 13px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 28px rgba(44, 58, 63, 0.13);
}
.feature-grid img {
  height: 54px;
  width: auto;
  margin-bottom: 3px;
}
.feature-grid h3 {
  font-size: 1.16rem;
  color: #2C3A3F;
}

/* SERVICES LIST/GRID ----------------------------- */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.services-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 13px rgba(44, 58, 63, 0.07);
  flex: 1 1 250px;
  min-width: 250px;
  max-width: 385px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 20px 18px 20px;
  margin-bottom: 20px;
  gap: 9px;
  transition: box-shadow 0.16s, transform 0.14s;
}
.services-list li:hover {
  box-shadow: 0 8px 34px rgba(44, 58, 63, 0.13);
  transform: translateY(-3px);
}
.services-list img {
  height: 46px;
  margin-bottom: 4px;
}
.services-list h2 {
  font-size: 1.3rem;
  color: #A87C4F;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 3px;
}

/* FORMS & ADDITIONAL ELEMENTS -------------------- */
address {
  font-style: normal;
  color: #2C3A3F;
  margin-bottom: 8px;
}

/* RESPONSIVE LAYOUTS (MOBILE FIRST) --------------- */
@media (max-width: 1120px) {
  .container {
    max-width: 950px;
  }
  .footer-main {
    gap: 20px;
  }
}
@media (max-width: 800px) {
  .container {
    max-width: 99vw;
    padding: 0 10px;
  }
  .feature-grid {
    gap: 18px;
  }
  .services-list {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  .hero { padding: 34px 0 28px 0; }
  .section { margin-bottom: 30px; padding: 18px 8px; }
  .content-wrapper { gap: 13px; }
  .feature-grid,
  .services-list,
  .testimonial-slider {
    flex-direction: column;
    gap: 12px;
  }
  .card,
  .feature-grid > div,
  .services-list li,
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 550px) {
  body { font-size: 0.98rem; }
  .btn-primary,
  .main-nav > a {
    font-size: 1rem;
    padding: 9px 18px;
  }
  .footer-main nav a {
    font-size: 0.98rem;
  }
  .testimonial-card,
  .feature-grid > div,
  .services-list li {
    padding-left: 12px; padding-right: 12px;
  }
}

/* BLOG CATEGORIES & CATEGORY TAGS ----------------- */
.blog-categories {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.blog-categories strong {
  color: #A87C4F;
  font-size: 1.01em;
}

/* ANIMATIONS & MICRO-INTERACTIONS ---------------- */
.card, .feature-grid > div, .services-list li, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.17s;
}
.btn-primary, .main-nav > a, .footer-main nav a {
  transition: background 0.16s, color 0.18s, box-shadow 0.16s;
}

/* COOKIE CONSENT BANNER -------------------------- */
.cookie-banner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #2C3A3F;
  color: #fff;
  padding: 18px 26px 22px 26px;
  box-shadow: 0 -2px 24px rgba(44,58,63,0.22);
  z-index: 1201;
  animation: bannerShow 0.34s cubic-bezier(0.4,0.15,0.55,1);
}
@keyframes bannerShow {
  0% { transform: translateY(80px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 4px;
  color: #FFF;
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-btn {
  background: #A87C4F;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 28px;
  padding: 9px 21px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(168, 124, 79, 0.09);
  transition: background 0.16s, color 0.16s, box-shadow 0.14s, transform 0.13s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff;
  color: #2C3A3F;
  box-shadow: 0 8px 24px rgba(44, 58, 63, 0.13);
  transform: translateY(-2px) scale(1.03);
}
.cookie-btn.settings {
  background: #EFEAE3;
  color: #2C3A3F;
  border: 1px solid #88888833;
}
.cookie-btn.settings:hover { background: #fff; color: #A87C4F; }

/* COOKIE MODAL POPUP ----------------------------- */
.cookie-modal-overlay {
  display: none;
}
.cookie-modal-overlay.active {
  display: flex;
  position: fixed;
  z-index: 1400;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(44, 58, 63, 0.75);
  align-items: center;
  justify-content: center;
  animation: modalOverlay 0.26s cubic-bezier(.4,0,.65,1);
}
@keyframes modalOverlay {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #2C3A3F;
  border-radius: 16px;
  box-shadow: 0 4px 48px rgba(44,58,63,0.18);
  padding: 38px 30px 28px 30px;
  max-width: 380px;
  width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modalShow 0.22s cubic-bezier(.3,0,.99,1);
}
@keyframes modalShow {
  0% { transform: scale(0.96) translateY(40px); opacity: 0; }
  100% { transform: scale(1) translateY(0px); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.18rem;
  color: #A87C4F;
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category label {
  font-size: 1.01rem;
  color: #2C3A3F;
}
.cookie-category input[type=checkbox] {
  accent-color: #A87C4F;
  width: 19px;
  height: 19px;
  border-radius: 4px;
}
.cookie-category .always {
  color: #8B8985;
  font-size: 0.93em;
  margin-left: 3px;
}
.cookie-modal .cookie-btn {
  width: 100%;
  font-size: 1.08rem;
  margin-bottom: 0;
}
.cookie-modal .cookie-btn.settings {
  margin-top: 10px;
}
.cookie-modal .cookie-btn:last-child {
  margin-bottom: 0;
}

/* SCROLLBAR ----------------------------- */
::-webkit-scrollbar { width: 9px; background: #EFEAE3; }
::-webkit-scrollbar-thumb { background: #A87C4F33; border-radius: 14px; }

/* ACCESSIBILITY ------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { transition: none !important; animation: none !important; }
}

/* CLASSES FOR ALIGNMENT & SPACING ------ */
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.gap-2 { gap: 16px; }
.gap-4 { gap: 32px; }

/* PRINT SUPPORT ------------------------ */
@media print {
  body { background: #fff; color: #222; }
  .main-nav, footer, .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay { display: none !important; }
}
