/* =======================
   CSS RESET & NORMALIZATION
   ======================= */
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;
  vertical-align:baseline;
  font:inherit;
  box-sizing:border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  background: #fff;
}
*,*::before,*::after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #263238;
  background: #fff;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width:100%;
  display:block;
}
a {
  color: #A67C52;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,a:focus {
  color: #263238;
  outline: none;
}
ul,ol {
  margin: 0 0 1.5em 1.5em;
  padding-left: 1.2em;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #263238;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
p {
  margin-bottom: 16px;
}
strong,b {
  font-weight: 700;
}

/* =======================
   LAYOUT & CONTAINER
   ======================= */
.container {
  width: 100%;
  max-width: 970px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section, section.hero, section.services, section.features, section.cta, section.testimonials, section.contact, section.legal, section.confirmation, section.about {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(38, 50, 56, 0.04), 0 1.5px 5px rgba(38,50,56,.02);
}
section.hero {
  background: #F3E9D2;
  box-shadow: none;
}

/* =======================
   FLEXBOX LAYOUT RULES
   ======================= */
.card-container, .card-grid, .features ul, .services ul, .footer-navigation, .content-grid, .text-image-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features ul, .services ul {
  gap: 24px 32px;
  flex-wrap: wrap;
}
footer .footer-navigation {
  gap: 20px;
  flex-wrap: wrap;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .content-wrapper, .content-grid, .features ul, .services ul, .footer-navigation, .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}

/* =======================
   MAIN NAVIGATION
   ======================= */
header {
  background: #fff;
  min-height: 64px;
  box-shadow: 0 2px 8px rgba(38,50,56,0.05);
}
.main-navigation {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}
.main-navigation a {
  color: #263238;
  padding: 8px 6px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-navigation a:hover,.main-navigation a:focus {
  background: #F3E9D2;
  color: #A67C52;
}
.main-navigation img {
  height: 34px;
  width: auto;
  margin-right: 8px;
}
.cta-primary {
  background: #263238;
  color: #fff !important;
  padding: 10px 26px;
  margin-left: 14px;
  border-radius: 28px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.22s;
  box-shadow: 0 1.5px 6px rgba(38,50,56,0.10);
  outline: none;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: #A67C52;
  color: #fff !important;
  box-shadow: 0 5px 22px rgba(38,50,56,0.11);
}
.cta-secondary {
  background: none;
  border: 2px solid #A67C52;
  color: #A67C52 !important;
  padding: 10px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 24px;
  margin-top: 14px;
  transition: background 0.23s, color 0.23s;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #F3E9D2;
  color: #263238 !important;
  border-color: #263238;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #263238;
  font-size: 2rem;
  cursor: pointer;
  padding: 8px 16px;
  margin-left: auto;
  z-index: 110;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #A67C52;
}

@media (max-width: 1024px) {
  .main-navigation {
    gap: 14px;
    font-size: 0.97rem;
  }
  .cta-primary {
    margin-left: 8px;
    padding: 9px 18px;
  }
}

@media (max-width: 900px) {
  .main-navigation {
    gap: 5px;
    font-size: .95rem;
  }
}

@media (max-width: 768px) {
  .main-navigation {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 22px;
  }
}

/* ========== MOBILE MENU ========= */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width:100vw;
  height:100vh;
  background:#fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.65,.05,.36,1);
  box-shadow: 2px 0 20px rgba(38,50,56,0.07);
  padding-top: 32px;
  overflow-y:auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  color: #263238;
  background: none;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  margin-bottom: 16px;
  margin-right: 16px;
  transition: background 0.18s;
  border-radius: 4px;
}
.mobile-menu-close:focus {
  outline: 2px solid #A67C52;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding-left: 18px;
}
.mobile-nav a {
  color: #263238;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 12px 4px 12px 0;
  border-radius: 6px;
  transition: background 0.22s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F3E9D2;
  color: #A67C52;
  outline: none;
}

@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}


/* ========== HERO SECTIONS & HIGHLIGHTS ========= */
.hero .content-wrapper {
  align-items: center;
  gap: 18px;
  justify-content: center;
}
.hero h1, .hero h2 {
  color: #263238;
}
.hero p {
  font-size: 1.16rem;
  max-width: 570px;
}
@media (max-width: 768px) {
  .hero .content-wrapper {
    gap:14px;
  }
  .hero p {
    font-size: 1rem;
  }
}

/* =======================
   FEATURES / SERVICES / CONTENT LISTS
   ======================= */
.features ul, .services ul {
  list-style: none;
  margin: 0;
}
.features ul li, .services ul li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1.5px 8px rgba(38, 50, 56, 0.06);
  padding: 22px 20px;
  margin-bottom: 20px;
  flex: 1 1 320px;
  min-width: 235px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.features ul li:hover, .services ul li:hover {
  box-shadow: 0 8px 28px rgba(38, 50, 56, 0.10);
}
.features ul li img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}
.service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #A67C52;
  margin-top:8px;
  font-size: 1.07rem;
}

@media (max-width: 900px) {
  .features ul li, .services ul li {
    min-width: unset;
    max-width: unset;
    width:100%;
  }
}

/* =======================
   CARD & GRID PATTERNS
   ======================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  box-shadow: 0 2px 16px rgba(38, 50, 56, 0.05);
  border-radius: 12px;
  padding: 28px 22px;
  transition: box-shadow 0.21s;
}
.card:hover {
  box-shadow: 0 10px 30px rgba(38,50,56,0.15);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
@media (max-width:700px) {
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
}

/* =======================
   CTA & CTA HIGHLIGHT BOX
   ======================= */
.cta {
  background: none;
  box-shadow: none;
  padding:0;
  margin-bottom: 36px;
}
.cta-highlight-box {
  background: #F3E9D2;
  padding: 34px 20px 32px;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(38,50,56,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.cta-highlight-box h2 {
  color: #263238;
  margin-bottom: 10px;
}
.cta-highlight-box p {
  margin-bottom:18px;
}

/* =======================
   TESTIMONIALS
   ======================= */
.testimonials {
  background: none;
  box-shadow: none;
  margin-bottom: 44px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 14px rgba(38,50,56,0.07);
  margin-bottom: 20px;
  border-left: 4px solid #A67C52;
  transition: box-shadow 0.18s;
  font-size: 1.07rem;
  color: #263238;
}
.testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(38,50,56,0.13);
}
.testimonial-card .author {
  font-size: .97rem;
  font-style: italic;
  color: #4B4744;
  margin-left: auto;
  font-family: 'Open Sans', Arial, sans-serif;
}

@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 14px;
    gap: 10px;
  }
}

/* =======================
   GENERIC TEXT/IMAGE + OTHER REPEATED BLOCKS
   ======================= */
.text-section {
  max-width: 670px;
}
.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;
    gap: 18px;
  }
}

/* =======================
   FOOTER
   ======================= */
footer {
  background: #fff;
  border-top: 1px solid #F3E9D2;
  padding: 36px 0 16px 0;
  margin-top: 54px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: stretch;
}
.footer-navigation {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 12px;
}
.footer-navigation a {
  color: #A67C52;
  font-size: .95rem;
  padding: 4px 3px;
  border-radius: 4px;
  transition: background 0.19s;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  background: #F3E9D2;
  color: #263238;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #555;
  font-size: .96rem;
  align-items: flex-start;
}
.footer-info img {
  height: 32px;
  width: auto;
  margin-bottom: 8px;
}
.footer-info a {
  color: #A67C52;
  text-decoration: underline;
}
.footer-info a:hover {
  color: #263238;
}

@media (max-width:700px) {
  footer .container, .footer-info {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .footer-navigation {
    gap: 12px;
  }
}

/* =======================
   MISCELLANEOUS COMPONENTS
   ======================= */
::-webkit-input-placeholder {color:#999;opacity:1}
::-moz-placeholder {color:#999;opacity:1}
:-ms-input-placeholder{color:#999;opacity:1}
::placeholder{color:#999;opacity:1}

hr {
  border: none;
  border-top: 1px solid #F3E9D2;
  margin: 32px 0;
}

/* =======================
   LEGAL PAGE / ABOUT / CONFIRMATION
   ======================= */
.legal, .about, .contact, .confirmation {
  background: #fff;
  box-shadow: 0 2px 12px rgba(38,50,56,0.03);
  margin-bottom: 48px;
}
.text-section h3 {
  margin-top: 18px;
  margin-bottom: 10px;
  font-size: 1.11rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #263238;
}

/* ========== ACCESSIBILITY/MICRO-INTERACTIONS ========= */
button:focus, a:focus {
  outline: 2px solid #A67C52;
  outline-offset: 2px;
}

/* =======================
   COOKIE CONSENT BANNER
   ======================= */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #263238;
  color: #fff;
  z-index: 9200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 12px 22px 16px;
  box-shadow: 0 -2px 16px rgba(38,50,56,0.10);
  transition: transform 0.26s ease;
}
.cookie-consent-banner .cookie-text {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-right: 28px;
  max-width: 530px;
}
.cookie-consent-banner .cookie-controls {
  display: flex;
  gap: 18px;
}
.cookie-consent-banner button {
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 21px;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.17s, color 0.14s;
}
.cookie-consent-banner .accept {
  background: #A67C52;
  color: #fff;
}
.cookie-consent-banner .accept:hover, .cookie-consent-banner .accept:focus {
  background: #F3E9D2;
  color: #263238;
}
.cookie-consent-banner .reject {
  background: #fff;
  color: #263238;
  border:1.5px solid #A67C52;
}
.cookie-consent-banner .reject:hover, .cookie-consent-banner .reject:focus {
  background: #A67C52;
  color: #fff;
}
.cookie-consent-banner .settings {
  background: none;
  color: #A67C52;
  border: 1.5px solid #A67C52;
}
.cookie-consent-banner .settings:hover, .cookie-consent-banner .settings:focus {
  background: #A67C52;
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-consent-banner .cookie-text {
    margin-right: 0;
    max-width: 95vw;
    font-size: .98rem;
  }
  .cookie-consent-banner .cookie-controls {
    flex-direction: column;
    gap: 6px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 8px 18px 8px;
  }
}

/* COOKIE MODAL (POPUP) */
.cookie-modal {
  position: fixed;
  left:0; top:0; width:100vw; height:100vh;
  background: rgba(38,50,56,0.44);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  color: #263238;
  border-radius: 18px;
  padding: 34px 28px 28px 32px;
  max-width: 420px;
  width: 90vw;
  box-shadow: 0 12px 56px rgba(38,50,56,0.21);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookieModalIn .31s cubic-bezier(.64,.03,.52,.99);
}
@keyframes cookieModalIn {
  0% { transform: translateY(32px) scale(.96); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  color: #A67C52;
  font-size: 1.8rem;
  border: none;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 4px;
}
.cookie-modal .cookie-modal-close:focus {
  outline: 2px solid #A67C52;
}
.cookie-modal h3 {
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 9px;
  color: #263238;
}
.cookie-modal .cookie-modal-section {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 8px;
  font-size:1.07rem;
}
.cookie-modal .cookie-modal-section input[type="checkbox"] {
  accent-color: #A67C52;
  width: 18px;
  height:18px;
  vertical-align: middle;
}
.cookie-modal .cookie-modal-section .cookie-required {
  color: #A67C52;
  font-size:.98rem;
  margin-left:7px;
}
.cookie-modal .modal-controls {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 12px;
}
.cookie-modal .modal-controls button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 22px;
  font-size:1rem;
  border-radius:22px;
  font-weight:700;
  border:none;
  transition: background 0.17s, color 0.15s;
  cursor:pointer;
}
.cookie-modal .modal-controls .accept {
  background: #A67C52;
  color: #fff;
}
.cookie-modal .modal-controls .accept:hover {
  background: #263238;
}
.cookie-modal .modal-controls .reject {
  background: #fff;
  color: #263238;
  border: 1.5px solid #A67C52;
}
.cookie-modal .modal-controls .reject:hover {
  background: #A67C52;
  color: #fff;
}
@media (max-width: 500px) {
  .cookie-modal .cookie-modal-content {
    padding: 20px 10px 18px 14px;
  }
}

/* =======================
   RESPONSIVE QUERIES
   ======================= */
@media (max-width: 730px) {
  .section, section.hero, section.services, section.features, section.cta, section.testimonials, section.contact, section.legal, section.confirmation, section.about {
    padding: 24px 3vw;
    margin-bottom: 32px;
  }
  h1 {
    font-size: 1.48rem;
  }
  h2 {
    font-size: 1.14rem;
  }
}
@media (max-width:480px) {
  h1 { font-size: 1.1rem; }
  h2 { font-size: 0.98rem; }
  .cta-highlight-box { padding: 22px 0 22px 0; }
}

/* =======================
   END
   ======================= */