/* RESET & BASE STYLES */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #24334A;
  background: #F9F6F1;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
}
a {
  color: #A97340;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: bold;
}
a:hover, a:focus {
  color: #24334A;
  text-decoration: underline;
}
ul, ol {
  list-style-position: inside;
  margin: 16px 0 16px 0;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', 'Georgia', serif;
  color: #24334A;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.subheadline {
  font-size: 1.125rem;
  color: #A97340;
  font-weight: 700;
  margin-bottom: 16px;
}
blockquote {
  border-left: 4px solid #A97340;
  background: #fff;
  color: #24334A;
  font-style: italic;
  margin: 18px 0;
  padding: 14px 22px;
  border-radius: 8px;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.05rem;
}
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* SECTION & LAYOUT PATERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(36,51,74,0.07), 0 1.5px 6px rgba(169,115,64,0.06);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgb(36 51 74 / 12%);
  padding: 28px 22px;
  min-width: 220px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.22s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 12px 32px rgb(36 51 74 / 18%);
  transform: translateY(-2px) scale(1.012);
  z-index: 1;
}
.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: flex-start;
  gap: 16px;
  padding: 24px 26px;
  margin-bottom: 20px;
  background: #F9F6F1;
  border: 2.5px solid #A97340;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(36, 51, 74, 0.09);
  color: #24334A;
  min-width: 240px;
  max-width: 440px;
  font-size: 1.04rem;
}
.testimonial-card strong {
  color: #A97340;
  font-weight: 700;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features-grid > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 5px 16px rgba(36,51,74,0.07);
  padding: 24px 18px 22px;
  min-width: 200px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 20px;
}
.features-grid > div img {
  max-height: 58px;
  margin-bottom: 14px;
}
.features-grid > div h3 {
  color: #24334A;
  font-size: 1.22rem;
  margin-bottom: 10px;
}
.features-grid > div:hover, .features-grid > div:focus-within {
  box-shadow: 0 10px 36px #A9734066;
  transform: scale(1.018);
}
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.features-list > div {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(36,51,74,0.08);
  padding: 20px 20px 18px;
  min-width: 230px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
}

.contact-quick-info, .contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  align-items: center;
  font-size: 1.01rem;
  margin-bottom: 15px;
}
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* HEADER / NAVIGATION */
header {
  background: #24334A;
  padding: 0;
  box-shadow: 0 3px 18px rgba(36,51,74,0.11);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  gap: 18px;
}
header img {
  height: 54px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  color: #F9F6F1;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 9px 0;
  border-bottom: 2.5px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #A97340;
  border-bottom: 2.5px solid #A97340;
}

/* CTA BUTTONS */
.cta {
  background: #A97340;
  color: #fff !important;
  border: none;
  font-weight: bold;
  font-size: 1.125rem;
  padding: 16px 36px;
  border-radius: 32px;
  box-shadow: 0 2px 8px rgba(36,51,74,0.09);
  text-decoration: none;
  margin-top: 14px;
  display: inline-block;
  transition: background 0.16s, box-shadow 0.16s, transform 0.17s;
  cursor: pointer;
  letter-spacing: 1px;
}
.cta.primary {
  background: #24334A;
  color: #fff;
}
.cta:hover,
.cta.primary:hover, .cta:focus {
  background: #fff;
  color: #A97340!important;
  box-shadow: 0 6px 26px #ad834380;
  outline: none;
  transform: translateY(-2px) scale(1.02);
}

/* FOOTER */
footer {
  background: #24334A;
  color: #F9F6F1;
  padding: 36px 0 0 0;
  font-size: 0.97rem;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 11px;
}
.footer-nav a {
  color: #A97340;
  font-weight: 700;
  padding: 3px 0;
  text-transform: uppercase;
  font-size: 0.98rem;
  border-bottom: 2px solid transparent;
  transition: color 0.13s, border-color 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  border-bottom: 2px solid #A97340;
}
.footer-contact {
  color: #fff;
}
.footer-contact a {
  color: #A97340;
  transition: color 0.16s;
  font-weight: bold;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #fff;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 102;
  background: #fff;
  border: none;
  font-size: 2rem;
  color: #A97340;
  padding: 10px 13px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(36, 51, 74, 0.10);
  cursor: pointer;
  display: none;
  transition: background 0.19s, color 0.19s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #A97340;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #24334A;
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.77,0,.18,1);
  box-shadow: 4px 0 24px #2225;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 48px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 205;
  padding: 5px 9px;
  border-radius: 50%;
  transition: background 0.12s, color 0.12s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #A97340;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: flex-start;
  margin-top: 32px;
  padding: 0 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.14rem;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.13s, border-color 0.15s;
  width: 100%;
  border-radius: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A97340;
  color: #fff;
  border-bottom: 2px solid #A97340;
  padding-left: 10px;
}

/* COOKIE BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 400;
  background: #24334A;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  padding: 22px 38px;
  font-size: 1.08rem;
  box-shadow: 0 -3px 20px #24334Ad1;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.36s cubic-bezier(.77,0,.18,1), opacity 0.28s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(80px);
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 10px 20px;
  border-radius: 28px;
  font-size: 1rem;
  font-family: inherit;
  font-weight: bold;
  cursor: pointer;
  border: none;
  margin: 0 3px;
  transition: background 0.13s, color 0.13s, box-shadow 0.09s;
}
.cookie-banner .accept {
  background: #A97340;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #fff;
  color: #A97340;
  box-shadow: 0 4px 16px #ad834340;
}
.cookie-banner .reject {
  background: transparent;
  color: #fff;
  border: 2px solid #A97340;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #A97340;
  color: #fff;
}
.cookie-banner .settings {
  background: #fff;
  color: #A97340;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #A97340;
  color: #fff;
}
.cookie-modal-overlay {
  position: fixed;
  z-index: 405;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36,51,74,0.64);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn 0.2s;
}
@keyframes cookieModalFadeIn {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal {
  background: #fff;
  color: #24334A;
  padding: 36px 24px 30px;
  border-radius: 18px;
  box-shadow: 0 6px 44px #3333;
  min-width: 320px;
  max-width: 425px;
  width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalZoomIn 0.22s;
}
@keyframes cookieModalZoomIn {
  from { transform:scale(.93); opacity:.92; }
  to { transform:scale(1); opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 16px 0 12px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.01rem;
}
.cookie-category .switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
}
.cookie-category .switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-category .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ccc;
  border-radius: 12px;
  transition: background 0.2s;
}
.cookie-category .switch input:checked + .slider {
  background: #A97340;
}
.cookie-category .slider:before {
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
.cookie-category .switch input:checked + .slider:before {
  transform: translateX(20px);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.cookie-modal .modal-actions button {
  font-size: 1rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 980px) {
  .container { max-width: 100%; }
  header .container { flex-direction: column; height: auto; gap: 8px; align-items: flex-start; padding: 20px 18px; }
  .main-nav { gap: 16px; }
  footer .container { padding: 16px 10px; }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 22px 9px;
  }
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.27rem; }
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    flex-direction: row;
    height: 60px;
    align-items: center;
    padding: 5px 10px;
  }
  .footer-nav { gap: 16px; }
  .features-grid, .features-list {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid { flex-direction: column; gap: 16px; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .testimonial-card { padding: 16px 10px; font-size: 0.97rem; }
  .features-grid > div, .features-list > div {
    min-width: 0;
    width: 100%;
    align-items: flex-start;
    text-align: left;
    padding: 19px 9px;
  }
  .card {
    min-width: 0;
    width: 100%;
    padding: 19px 11px;
  }
  .cookie-banner { flex-direction: column; font-size: 1.01rem; padding: 14px 8px; gap: 13px; }
  .cookie-banner .cookie-buttons { flex-direction: column; gap: 9px; width: 100%; }
  .cookie-modal { padding: 26px 5vw; min-width: 90vw; }
}
@media (max-width: 520px) {
  .footer-nav { gap: 10px; font-size: 0.92rem; }
  .footer-contact { font-size: 0.92rem; }
  .testimonial-card { padding: 13px 4px; max-width: 98vw; }
  .features-grid > div, .features-list > div { padding: 10px 3px; }
}

/* ANIMATIONS & TRANSITIONS */
.section, .card, .testimonial-card, .features-grid > div, .features-list > div {
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:active, .features-grid > div:active {
  transform: scale(0.98);
}

/* ADDITIONAL BOLD DESIGN ELEMENTS */
h1, h2 {
  border-left: 8px solid #A97340;
  padding-left: 20px;
}
h1 {
  border-left-width: 10px;
  background: linear-gradient(90deg,#F9F6F1 80%,#A9734040 100%);
}
hr {
  border: 0; height: 2px;
  background: #A97340;
  margin: 30px 0 20px 0;
  opacity: 0.28;
}

/* GEOMETRIC ACCENT BADGES */
.section > .container > .content-wrapper > h2:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 22px; height: 22px;
  background: #A97340;
  border-radius: 6px 12px 4px 13px;
  margin-right: 12px;
}
h2, h3 { display: flex; align-items: center; gap: 10px; }

/* FOCUS STATES */
a:focus, .cta:focus, .mobile-menu-close:focus, .cookie-banner button:focus, input:focus, button:focus {
  outline: 2.5px solid #A97340;
  outline-offset: 2.5px;
  z-index: 10;
}

/* GEOMETRIC / BOLD DECORATIONS */
.features-grid > div, .features-list > div, .testimonial-card {
  border-left: 5px solid #A97340;
}

/* FORM ELEMENTS */
input[type=text], input[type=email], textarea {
  padding: 12px 13px;
  border-radius: 10px;
  border: 1.5px solid #24334A;
  background: #fff;
  font-size: 1rem;
  margin-bottom: 13px;
  width: 100%;
  font-family: inherit;
  transition: border-color 0.18s, box-shadow 0.18s;
}
input:focus, textarea:focus {
  border-color: #A97340;
  box-shadow: 0 2px 15px #a9734042;
}
button {
  font-family: inherit;
}

/* UTILITIES */
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.m-0 { margin: 0 !important; }
.pt-20 { padding-top: 20px; }
.small { font-size: 0.93rem; }

/* ENSURE NO GRID OR COLUMNS USED */
/* END OF CSS */