/* CSS RESET & BASE STYLES */
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, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F6F5F3;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F6F5F3;
  color: #181818;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img, picture, video, canvas {
  max-width: 100%;
  display: block;
}
a {
  color: #591600;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #FFC857;
  outline: none;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.5em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #591600;
  margin-bottom: 12px;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
p, blockquote, address {
  font-size: 1rem;
  margin-bottom: 16px;
}
blockquote {
  font-style: italic;
  color: #181818;
  background: #fff;
  padding: 0 0 0 24px;
  border-left: 4px solid #FFC857;
}
/* CONTAINER & SECTIONS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.section,
.hero,
.features,
.about,
.services,
.cta,
.testimonials,
.team,
.info,
.pricing,
.legal,
.contact,
.thankyou {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
.section {
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mini-form-info {
  font-size: 0.98rem;
  color: #591600;
  margin-top: 12px;
  background: #FFF9F3;
  border-radius: 7px;
  padding: 8px 16px;
  display: inline-block;
}
/* FLEX LAYOUTS */
.feature-grid,
.usp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.feature-grid > div,
.usp-grid > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(38,36,31,0.07);
  padding: 32px 24px;
  min-width: 235px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 20px;
  transition: box-shadow 0.20s, transform 0.2s;
}
.feature-grid > div:hover, .usp-grid > div:hover {
  box-shadow: 0 6px 20px rgba(38,36,31,0.12);
  transform: translateY(-2px) scale(1.014);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(38,36,31,0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px 20px 24px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 10px rgba(38,36,31,0.10);
  margin-bottom: 20px;
  transition: box-shadow 0.2s, border-color 0.2s;
  border-left: 6px solid #FFC857;
}
.testimonial-card:hover {
  box-shadow: 0 6px 20px rgba(38,36,31,0.14);
  border-left: 6px solid #591600;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: #8D826B;
  font-style: italic;
}
/* HERO SECTION */
.hero {
  background: #FFFBEA;
  border-bottom: 1px solid #f2e6cc;
  margin-bottom: 60px;
  padding: 60px 0 50px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  color: #591600;
  font-size: 2.6rem;
  margin-bottom: 14px;
}
.hero .subheadline, .hero .intro-text {
  font-size: 1.15rem;
  color: #594829;
  margin-bottom: 14px;
  font-weight: 400;
}
/* PRIMARY CTA BUTTON */
.primary-cta {
  display: inline-block;
  background: #591600;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.11rem;
  font-weight: 700;
  padding: 13px 34px;
  border-radius: 32px;
  box-shadow: 0 2px 12px rgba(38,36,31,0.08);
  margin-top: 14px;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  position: relative;
}
.primary-cta:hover,
.primary-cta:focus {
  background: #FFC857;
  color: #591600;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 6px 26px rgba(255,200,87,0.16);
}
/* NAVIGATION STYLES */
header {
  background: #fff;
  border-bottom: 1px solid #F2E6CC;
  position: sticky;
  top: 0;
  z-index: 102;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.logo {
  padding: 13px 0 13px 10px;
  display: inline-flex;
  align-items: center;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
  margin-right: 20px;
  margin-bottom: 0;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #591600;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 26px;
  transition: background 0.14s, color 0.13s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #FFC857;
  color: #181818;
  text-decoration: none;
}
.main-nav .primary-cta {
  margin-top: 0;
  color: #fff
}
header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
header > *:not(:last-child) {
  margin-bottom: 0;
}
/* Responsive Header Layout */
@media (min-width: 860px) {
  header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    min-height: 68px;
  }
  .logo {
    padding: 7px 0 7px 18px;
  }
}
/* MOBILE MENU */
.mobile-menu-toggle {
  display: flex;
  position: absolute;
  right: 17px;
  top: 19px;
  background: #fff;
  border: none;
  color: #591600;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 40px;
  padding: 2px 13px 2px 11px;
  z-index: 120;
  transition: background 0.12s, box-shadow 0.12s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #FFC857;
}
@media (min-width: 980px) {
  .mobile-menu-toggle { display: none; }
  .mobile-menu { display: none !important; }
  .main-nav { display: flex; }
}
@media (max-width: 979px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle { display: flex; }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(246,245,243,0.97);
  box-shadow: 0 0 32px 0 rgba(0,0,0,0.17);
  z-index: 221;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.24s cubic-bezier(0.4,0.2,0.2,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  margin: 23px 30px 12px 0;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #591600;
  cursor: pointer;
  transition: color 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #FFC857;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 13px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #591600;
  background: #fff;
  border-radius: 26px;
  font-size: 1.09rem;
  font-weight: 600;
  padding: 12px 26px;
  margin: 0 0 2px 0;
  width: 85%;
  text-align: center;
  transition: background 0.12s, color 0.13s;
  box-shadow: 0 1px 4px rgba(38,36,31,0.06);
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #FFC857;
  color: #181818;
}
@media (max-width: 979px) {
  .mobile-menu {
    display: flex !important;
  }
}
/* END MOBILE MENU */
/* FOOTER */
footer {
  background: #fff;
  border-top: 1px solid #F2E6CC;
  margin-top: auto;
  padding: 32px 0 20px 0;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-contact, .footer-nav, .footer-links {
  min-width: 175px;
  margin-bottom: 12px;
}
.footer-contact address {
  font-style: normal;
  color: #594829;
  line-height: 1.6;
}
.footer-nav, .footer-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 1.01rem;
}
.footer-nav a, .footer-links a {
  color: #594829;
  border-radius: 18px;
  padding: 6px 11px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover,
.footer-links a:hover {
  background: #FFC857;
  color: #591600;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  min-width: 90px;
}
.footer-social a {
  display: inline-flex;
  border-radius: 50%;
  background: #F6F5F3;
  padding: 8px;
  transition: background 0.15s, box-shadow 0.17s;
}
.footer-social a:hover {
  background: #FFC857;
  box-shadow: 0 2px 7px rgba(89,22,0,0.08);
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
}
/* TABLES */
.pricing-table {
  margin: 24px 0;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  background: #FFF;
  box-shadow: 0 1px 8px rgba(89,22,0,0.08);
}
.pricing-table th, .pricing-table td {
  padding: 13px 20px;
  font-size: 1rem;
  color: #181818;
  text-align: left;
}
.pricing-table th {
  background: #FFFBEA;
  color: #591600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.pricing-table tr {
  border-bottom: 1px solid #f3eee6;
}
.pricing-table tr:last-child {
  border-bottom: none;
}
/* PRICES INSIDE CARDS */
.price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #591600;
  font-size: 1.14rem;
  margin-top: 6px;
  padding: 2px 15px;
  background: #FFFBEA;
  border-radius: 21px;
  display: inline-block;
  letter-spacing: 0.03em;
}
/* DETAILS/FAQ */
details {
  background: #FFFBEA;
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 11px 16px;
  color: #591600;
  font-family: 'Open Sans', Arial, sans-serif;
  position: relative;
}
details summary {
  cursor: pointer;
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #591600;
  outline: none;
}
details[open] summary {
  color: #FFC857;
}
details div {
  margin-top: 8px;
  color: #181818;
  font-weight: normal;
}
/* LEGAL SECTION */
.legal {
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 1px 10px rgba(38,36,31,0.08);
  margin-bottom: 60px;
  padding: 38px 20px;
}
.legal h1 {
  font-size: 2.3rem;
  margin-bottom: 18px;
}
.legal h2, .legal h3 {
  margin-top: 24px;
}
.legal ul {
  list-style: disc inside;
  margin: 8px 0 16px 19px;
}
/* MAP EMBED, CONTACT, THANK YOU */
.map-embed {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(38,36,31,0.08);
  padding: 22px 18px;
  margin-top: 12px;
  margin-bottom: 10px;
}
.thankyou .primary-cta {
  margin-top: 16px;
}
/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: #fffbe9;
  color: #181818;
  box-shadow: 0 -2px 16px 0 rgba(89,22,0,0.07);
  border-top: 2px solid #FFC857;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
  z-index: 9999;
  animation: cookieSlideIn 0.5s cubic-bezier(.68,-0.55,.27,1.55);
  font-size: 1rem;
}
@keyframes cookieSlideIn {
  0% { transform: translateY(100%); }
  100% { transform: translateY(0); }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  padding: 9px 23px;
  border: none;
  border-radius: 26px;
  cursor: pointer;
  margin-right: 2px;
  margin-top: 2px;
  transition: background 0.14s, color 0.13s, border 0.13s;
}
.cookie-banner .cookie-accept {
  background: #591600;
  color: #fff;
}
.cookie-banner .cookie-accept:hover,
.cookie-banner .cookie-accept:focus {
  background: #FFC857;
  color: #591600;
}
.cookie-banner .cookie-reject {
  background: #fff;
  color: #591600;
  border: 1.5px solid #FFC857;
}
.cookie-banner .cookie-reject:hover,
.cookie-banner .cookie-reject:focus {
  background: #FFC857;
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: #8D826B;
  border: 1.2px solid #F2E6CC;
}
.cookie-banner .cookie-settings:hover,
.cookie-banner .cookie-settings:focus {
  background: #FFC857;
  color: #591600;
  border: 1.2px solid #FFC857;
}
/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(38,36,31,0.25);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn 0.28s;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(38,36,31,0.14);
  padding: 36px 32px 28px 32px;
  min-width: 320px;
  max-width: 95vw;
  color: #181818;
  font-size: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-content h2 {
  color: #591600;
  font-size: 1.35rem;
}
.cookie-modal-content ul {
  list-style: none;
  margin: 0;
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 12px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #591600;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal-close:hover {
  color: #FFC857;
}
.cookie-toggle-group {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 14px 0;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-toggle label {
  font-weight: 500;
}
.cookie-modal .cookie-accept,
.cookie-modal .cookie-reject {
  margin-right: 13px;
  margin-top: 0;
}
/* Toggle Switch Style */
.switch {
  position: relative;
  display: inline-block;
  width: 40px; height: 23px;
}
.switch input { display: none; }
.slider {
  position: absolute;
  cursor: pointer;
  top: 2px; left: 0; right: 0; bottom: 2px;
  background-color: #F2E6CC;
  border-radius: 26px;
  transition: background 0.2s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 17px; width: 17px;
  left: 3px; bottom: 2.5px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 2px rgba(89,22,0,0.07);
  transition: transform 0.2s;
}
input:checked + .slider {
  background: #FFC857;
}
input:checked + .slider:before {
  transform: translateX(15px);
}
.cookie-modal-content .desc {
  font-size: 0.98rem;
  color: #594829;
}
.cookie-modal-content small {
  color: #8D826B;
  font-size: 0.92rem;
}
.cookie-modal-content .cookie-accept,
.cookie-modal-content .cookie-reject {
  margin-top: 8px;
}
.cookie-modal-content .save-prefs {
  margin-top: 15px;
  background: #591600;
  color: #fff;
  border-radius: 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 30px;
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal-content .save-prefs:hover {
  background: #FFC857;
  color: #591600;
}
/* ------------------- RESPONSIVE DESIGN ------------------- */
@media (max-width: 768px) {
  .container {
    padding-left: 9px;
    padding-right: 9px;
  }
  h1 {
    font-size: 2.05rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .hero {
    padding: 37px 0 20px 0;
  }
  .feature-grid, .usp-grid {
    flex-direction: column;
    gap: 16px;
  }
  .footer-content {
    gap: 21px;
  }
  .testimonial-card {
    padding: 17px 12px;
    border-left-width: 3.5px;
  }
}
@media (max-width: 600px) {
  .content-wrapper, .text-section {
    gap: 13px;
    padding: 0;
  }
  .hero h1 {
    font-size: 1.45rem;
  }
  .hero .subheadline, .hero .intro-text {
    font-size: 0.98rem;
  }
  .feature-grid > div, .usp-grid > div {
    min-width: 30vw;
    padding: 15px 11px;
    font-size: 0.97rem;
  }
  .mini-form-info {
    font-size: 0.93rem;
  }
  .testimonial-card {
    font-size: 0.97rem;
    padding: 11px 6px 12px 10px;
    gap: 11px;
  }
  .pricing-table th, .pricing-table td {
    padding: 9px 7px;
    font-size: 0.98rem;
  }
}
@media (max-width: 490px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.96rem;
  }
  .cookie-modal-content {
    padding: 14px 4vw 14px 4vw;
    min-width: 0;
  }
}
/* FORM ELEMENTS (BASE) */
input, select, textarea, button {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #F2E6CC;
  outline: none;
  padding: 8px 10px;
  box-sizing: border-box;
  margin-bottom: 18px;
}
input:focus, select:focus, textarea:focus {
  border-color: #FFC857;
  background: #FFFBEA;
}
button:active {
  transform: scale(0.96);
}
/* Hide the scroll on modal bg but not content */
body.modal-open {
  overflow: hidden;
}
/* MICRO-ANIMATIONS */
.primary-cta, .feature-grid > div, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.16s, background 0.17s, color 0.13s;
  will-change: transform, box-shadow;
}
/* ICONS */
.feature-grid img, .usp-grid img {
  width: 39px;
  height: 39px;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 6px rgba(252,216,120,0.08));
  object-fit: contain;
}
.footer-social img {
  width: 25px; height: 25px;
  display: block;
}
/* VISUAL EMPHASIS */
strong {
  font-weight: 700;
  color: #591600;
}
em {
  font-style: italic;
}
.small {
  font-size: 0.94rem;
  color: #8D826B;
}
hr {
  border: 0; height: 1px;
  background: #F2E6CC;
  margin: 20px 0;
}
/* Accessibility improvement for key navigation */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #FFC857;
  outline-offset: 2px;
}
