/* 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,
main, 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;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F2F1EE;
  color: #22313F;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #22313F;
  text-decoration: none;
  transition: color 0.21s;
}
a:hover, a:focus {
  color: #C79F5D;
  outline: none;
}
ul, ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
}
table { border-collapse: collapse; width: 100%; background: white; border-radius: 8px; box-shadow: 0 4px 12px rgba(34,49,63,0.06); margin-bottom: 40px; }
th, td {
  padding: 14px 18px;
  border-bottom: 1px solid #e7eaf0;
  text-align: left;
}
th {
  background: #22313F;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 18px;
}
tr:last-child td {
  border-bottom: none;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #22313F;
}
h1 {
  font-size: 32px;
  margin-bottom: 20px;
  line-height: 1.13;
}
h2 {
  font-size: 24px;
  margin-bottom: 16px;
  line-height: 1.2;
}
h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 16px;
  margin-bottom: 8px;
}
p {
  margin-bottom: 14px;
}
strong {
  font-weight: bold;
}
.text-section, .text-image-section {
  max-width: 700px;
}
.text-section ul, .text-section ol {
  margin-bottom: 10px;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* FLEXBOX STRUCTURES */
.feature-grid,
.article-grid,
.values-list,
.service-list,
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}

.feature-grid > li,
.article-grid > li {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 10px;
  padding: 24px 18px;
  box-shadow: 0 2px 10px rgba(34,49,63,0.06);
  min-width: 220px;
  border-left: 4px solid #C79F5D;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.values-list {
  gap: 14px;
  font-size: 16px;
}
.values-list > li {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
  color: #22313F;
}
.service-list {
  flex-direction: column;
  gap: 18px;
}
.service-list > li {
  background: #fff;
  border-left: 5px solid #22313F;
  border-radius: 10px;
  box-shadow: 0 2px 7px rgba(34,49,63,0.04);
  padding: 18px 16px;
  position: relative;
  margin-bottom: 0;
  transition: box-shadow 0.18s;
}
.service-list > li:hover {
  box-shadow: 0 6px 24px rgba(34,49,63,0.12);
}
.service-list h3 {
  font-size: 18px;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price {
  font-size: 16px;
  color: #C79F5D;
  margin-left: 8px;
}
.article-grid > li {
  border-left: 4px solid #C79F5D;
}
.tip-highlights {
  background: #22313F;
  border-radius: 8px;
  color: #fff;
  padding: 18px 20px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.tip-highlights h3 {
  color: #fff;
  margin-bottom: 10px;
}
.tip-highlights ul {
  color: #fff;
  margin-bottom: 0;
}

/* BLOG POSTS */
.blog-list {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
}
.blog-post {
  flex: 1 1 320px;
  min-width: 220px;
  background: #fff;
  border-radius: 10px;
  padding: 22px 18px;
  box-shadow: 0 2px 10px rgba(34,49,63,0.06);
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 5px solid #C79F5D;
  transition: box-shadow 0.18s;
}
.blog-post:hover {
  box-shadow: 0 6px 26px rgba(34,49,63,0.13);
}
.category-tags span {
  display: inline-block;
  background: #C79F5D;
  color: #fff;
  font-size: 14px;
  padding: 3px 9px;
  border-radius: 5px;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 14px rgba(34,49,63,0.08);
  margin-bottom: 20px;
  padding: 18px 24px;
  max-width: 560px;
  transition: box-shadow 0.18s, transform 0.14s;
  border-left: 5px solid #22313F;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(34,49,63,0.17);
  transform: translateY(-4px) scale(1.02);
}
.testimonial-card p {
  color: #22313F;
  font-size: 16px;
  line-height: 1.5;
}
.testimonial-name {
  color: #22313F;
  font-weight: 600;
  font-size: 15px;
}
.star-ratings {
  color: #C79F5D;
  font-size: 18px;
  letter-spacing: 1px;
}

/* BUTTONS */
.cta-btn {
  display: inline-flex;
  align-items: center;
  background: #22313F;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 32px;
  border-radius: 8px;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(34,49,63,0.08);
  transition: background 0.2s, box-shadow 0.17s, transform 0.16s;
  margin-top: 6px;
  margin-bottom: 6px;
}
.cta-btn.primary {
  background: #22313F;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: #C79F5D;
  color: #fffbb0;
  box-shadow: 0 8px 32px rgba(199,159,93,0.13);
  transform: translateY(-2px) scale(1.01);
}
.cta-btn.secondary {
  background: #C79F5D;
  color: #fff;
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: #22313F;
  color: #fffbb0;
}

/* NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(34,49,63,0.02);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 101;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 74px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 25px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #22313F;
  font-weight: 500;
  font-size: 16px;
  padding: 6px 2px;
  border-radius: 3px;
  transition: color 0.2s, background 0.15s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  color: #C79F5D;
  background: #eee;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
  color: #22313F;
  margin-left: 16px;
  cursor: pointer;
  padding: 6px 10px;
  z-index: 102;
  transition: color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #C79F5D;
  outline: 2px solid #C79F5D;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #22313F;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.6,.05,.28,1);
  z-index: 200;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 0 300vw rgba(34,49,63,0.55);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  margin: 22px 26px 20px 0;
  cursor: pointer;
  z-index: 202;
  transition: color 0.19s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #C79F5D;
  outline: 2px solid #C79F5D;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-left: 36px;
  padding-top: 10px;
}
.mobile-nav a {
  color: #fff;
  font-size: 21px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  line-height: 1.45;
  padding: 7px 4px;
  border-radius: 3px;
  transition: background 0.17s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #C79F5D;
  color: #22313F;
}

/* Only show mobile menu toggle on mobile */
@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: block;
  }
  header nav {
    display: none;
  }
  .cta-btn.primary {
    display: none;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* FOOTER */
footer {
  background: #22313F;
  color: #fff;
  padding: 42px 0 22px 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  margin-bottom: 4px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 400;
  transition: color 0.17s;
}
footer nav a:hover,footer nav a:focus {
  color: #C79F5D;
  text-decoration: underline;
}
footer .contact-details {
  color: #C79F5D;
  font-size: 15px;
  text-align: center;
}
footer .contact-details a {
  color: #fff;
  border-bottom: 1px dotted #C79F5D;
  transition: color 0.18s, border-color 0.18s;
}
footer .contact-details a:hover,footer .contact-details a:focus {
  color: #C79F5D;
  border-bottom: 1px solid #C79F5D;
}


/* CARDS & CONTENT */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  box-shadow: 0 2px 14px rgba(34,49,63,0.12);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.19s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(34,49,63,0.16);
  transform: translateY(-3px) scale(1.012);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 24px 21px 22px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(34,49,63,0.06);
  padding: 24px;
}

/* QUICK LINKS */
.quick-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.quick-links li a {
  background: #C79F5D;
  color: #fff;
  border-radius: 6px;
  padding: 7px 17px;
  font-weight: 500;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: background 0.18s, color 0.16s;
  font-size: 15px;
}
.quick-links li a:hover, .quick-links li a:focus {
  background: #22313F;
  color: #fffbb0;
}

/* FORMS */
input, textarea, select {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  padding: 10px 14px;
  border: 1px solid #dce3ea;
  border-radius: 6px;
  margin-bottom: 15px;
  transition: border-color 0.15s;
  background: #fff;
}
input:focus, textarea:focus, select:focus {
  border-color: #C79F5D;
  outline: none;
}
label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #22313F;
}

/* MAP EMBED */
.map {
  margin: 20px 0;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  font-size: 16px;
  box-shadow: 0 2px 7px rgba(34,49,63,0.06);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: #22313F;
  color: #fff;
  padding: 20px 18px;
  box-shadow: 0 -2px 20px rgba(34,49,63,0.21);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s, transform 0.35s cubic-bezier(.6,.05,.28,1);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner-message {
  font-size: 15px;
  max-width: 460px;
  flex-shrink: 1;
}
.cookie-banner-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #C79F5D;
  color: #22313F;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 2px;
  margin-bottom: 2px;
  transition: background 0.15s, color 0.15s;
}
.cookie-btn.accept {
  background: #C79F5D;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #22313F;
  color: #fffbb0;
}
.cookie-btn.reject {
  background: #e6e6e6;
  color: #22313F;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #bdbdbd;
  color: #22313F;
}
.cookie-btn.settings {
  background: none;
  color: #C79F5D;
  border: 1.5px solid #C79F5D;
  padding: 7px 15px;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #C79F5D;
  color: #fff;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(34,49,63,0.55);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #22313F;
  padding: 36px 28px 28px 28px;
  border-radius: 16px;
  max-width: 420px;
  width: 98%;
  box-shadow: 0 6px 40px rgba(34,49,63,0.22);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalSlideIn 0.36s cubic-bezier(.6,.05,.28,1);
}
@keyframes cookieModalSlideIn {
  0% { transform: translateY(40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  right: 15px;
  top: 12px;
  background: none;
  border: none;
  font-size: 25px;
  color: #22313F;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #C79F5D;
}
.cookie-modal h2 {
  margin-bottom: 10px;
  color: #22313F;
  font-size: 22px;
}
.cookie-pref-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 7px;
}
.cookie-toggle {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  gap: 8px;
}
.cookie-switch {
  width: 38px;
  height: 21px;
  background: #e4e7f0;
  border-radius: 17px;
  position: relative;
  margin-right: 7px;
  transition: background 0.2s;
}
.cookie-switch input[type='checkbox'] {
  display: none;
}
.cookie-switch .slider {
  position: absolute;
  left: 2.5px;
  top: 2.5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #C79F5D;
  transition: left 0.19s cubic-bezier(.4,.07,.49,1.23);
}
.cookie-switch input[type='checkbox']:checked + .slider {
  left: 18px;
  background: #22313F;
}
.cookie-pref-desc {
  font-size: 15px;
  color: #636c77;
  margin-bottom: 9px;
}
.cookie-modal-btns {
  margin-top: 11px;
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn.accept {
  min-width: 110px;
}

/* SPACING: distance between major sections */
main > section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .container {
    padding: 0 14px;
    max-width: 98vw;
  }
  .section {
    padding: 32px 10px;
    margin-bottom: 45px;
  }
  .card-content, .feature-grid > li, .article-grid > li, .blog-post, .map {
    padding: 18px 13px;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .feature-grid, .article-grid, .service-list, .blog-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > li, .article-grid > li, .blog-post, .testimonial-card {
    min-width: unset;
    width: 100%;
  }
  .section { padding: 24px 4px; margin-bottom: 30px; }
  header .container {
    flex-direction: row;
    gap: 13px;
    min-height: 61px;
    padding: 0 6px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 13px 10px;
  }
  h1 { font-size: 22px; }
  h2 { font-size: 18px; }
  h3 { font-size: 16px; }
  .cookie-banner-message {
    font-size: 14px;
    max-width: 340px;
  }
}
@media (max-width: 600px) {
  footer .container {
    padding: 0 8px;
  }
  .map, .card-content {
    padding: 9px 6px;
  }
  .testimonials-section {
    padding: 10px 0;
  }
  .cookie-modal {
    padding: 18px 5vw;
    min-width: 0;
    max-width: 98vw;
  }
}

/* ACCESSIBILITY FOCUS */
a:focus, .cta-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus, .cookie-btn:focus {
  outline: 2.5px solid #C79F5D;
  outline-offset: 2px;
}

/* MISC */
::-webkit-scrollbar { width: 9px; background: #F2F1EE; }
::-webkit-scrollbar-thumb { background: #C79F5D; border-radius: 5px; }

/* Utility classes */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center !important; }

/* Hide elements visually only */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
