/* ===== CSS 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 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  line-height: 1.6;
  background: #F3F4F6;
  min-height: 100vh;
  color: #22313F;
  font-family: 'Roboto', Georgia, 'Times New Roman', Times, serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  /* Elegant even color background */
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
a {
  color: #22313F;
  text-decoration: none;
  transition: color 0.25s cubic-bezier(.4,0,.2,1);
}
a:focus {
  outline: 2px dashed #a8936c;
  outline-offset: 2px;
}
ul, ol {
  padding-left: 1.4em;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
  font-size: 16px;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #ddd;
}

/* ==== Font Hierarchy: Elegant & Classic ==== */
h1, .h1 {
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 700;
  font-size: 2.75rem;
  color: #22313F;
  line-height: 1.18;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 600;
  font-size: 2rem;
  color: #22313F;
  margin-bottom: 20px;
  line-height: 1.2;
}
h3, .h3 {
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #22313F;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-family: 'Montserrat', 'Georgia', serif;
  color: #22313F;
  margin-bottom: 10px;
}
.subheadline {
  font-size: 1.2rem;
  font-family: 'Roboto', Georgia, serif;
  color: #A8936C;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}
p, address, dl, blockquote, cite {
  font-family: 'Roboto', serif;
  color: #22313F;
  font-size: 1rem;
  margin-bottom: 20px;
}
blockquote {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-style: italic;
  color: #22313F;
  font-size: 1.14rem;
  background: #F7F7F9;
  border-left: 4px solid #A8936C;
  margin: 0 0 16px 0;
  padding: 10px 24px;
}
cite {
  font-family: 'Montserrat', serif;
  color: #A8936C;
  font-size: 1rem;
  font-style: normal;
  display: block;
  margin-top: 8px;
  letter-spacing: 0.03em;
}

/* ===== Layout Foundation ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  margin-top: 6px;
}

/* ===== Mandatory Section & Spacing Patterns ===== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(34,49,63,0.06);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.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: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 6px 0 rgba(34,49,63,0.06);
  border: 1px solid #ECECEC;
  max-width: 640px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== Header & Navigation ===== */
header {
  background: #fff;
  border-bottom: 1px solid #ECECEC;
  position: sticky;
  top: 0;
  z-index: 110;
  width: 100%;
}
.main-navigation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  max-width: 1140px;
  margin: 0 auto;
  justify-content: flex-start;
}
.main-navigation a {
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  color: #22313F;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-right: 8px;
  padding: 8px 6px;
  border-radius: 6px;
  transition: background 0.19s, color 0.19s;
}
.main-navigation a:hover, .main-navigation a:active {
  color: #A8936C;
  background: #F3F4F6;
}
.main-navigation img {
  height: 34px;
  vertical-align: middle;
  margin-right: 12px;
}
.cta-primary {
  background: #A8936C;
  color: #fff !important;
  border-radius: 6px;
  padding: 10px 24px;
  font-weight: 600;
  margin-left: 16px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(168,147,108,0.07);
  border: 2px solid #A8936C;
  letter-spacing: 0.03em;
  font-family: 'Montserrat', serif;
}
.cta-primary:hover, .cta-primary:focus {
  background: #22313F;
  border-color: #A8936C;
  color: #fff;
  box-shadow: 0 3px 10px rgba(34,49,63,0.07);
}
.cta-secondary {
  background: #fff;
  color: #A8936C !important;
  border-radius: 6px;
  padding: 10px 24px;
  border: 2px solid #A8936C;
  transition: background 0.2s, color 0.2s;
  font-family: 'Montserrat', serif;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(168,147,108,0.07);
  letter-spacing: 0.03em;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #A8936C;
  color: #fff !important;
}
.cta-link {
  font-family: 'Montserrat', serif;
  color: #A8936C;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.18s;
  font-size: 1rem;
  padding: 0 2px;
}
.cta-link:hover {
  color: #22313F;
}

.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #22313F;
  border: 2px solid #A8936C;
  border-radius: 6px;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #A8936C;
}

/* --- Mobile Nav Overlay --- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  right:0;
  bottom: 0;
  width: 100vw;
  background: rgba(243,244,246,.96);
  z-index: 9999;
  padding: 38px 20px 32px 20px;
  box-shadow: 0 4px 24px 0 rgba(34,49,63,0.13);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #A8936C;
  font-size: 2rem;
  align-self: flex-end;
  margin-bottom: 28px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: #22313F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', serif;
  color: #22313F;
  font-size: 1.2rem;
  padding: 10px 0;
  letter-spacing: 0.02em;
  border-radius: 0;
  transition: color 0.19s, background 0.18s;
}
.mobile-nav a:hover {
  color: #A8936C;
  background: #EFEFEF;
}

/* ===== Section & Content Patterns ===== */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
section:last-child {
  margin-bottom: 0;
}

/* --- Features Icon List --- */
.content-wrapper ul, .content-wrapper ol {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
  padding-left: 16px;
}
.content-wrapper ul li, .content-wrapper ol li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: #22313F;
  margin-bottom: 0;
}
.content-wrapper ul li img, .content-wrapper ol li img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

ol {
  list-style-type: decimal;
}
dt {
  font-weight: 600;
  margin-top: 18px;
}
dd {
  margin-left: 16px;
  margin-bottom: 12px;
  color: #555;
}

/* --- Address Styling --- */
address {
  font-style: normal;
  line-height: 1.7;
  color: #22313F;
}
address img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 6px;
}

/* ===== Cards, Testimonials, Features ===== */
.card {
  border: 1px solid #ECECEC;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(34,49,63,0.06);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  gap: 16px;
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(34,49,63,0.09);
  border-color: #A8936C;
  transform: translateY(-3px);
}

.testimonial-card {
  color: #22313F;
  background: #fff;
  border: 1px solid #ECECEC;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(34,49,63,0.09);
  padding: 20px 28px;
  margin-bottom: 20px;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.testimonial-card blockquote {
  color: #22313F;
  font-style: italic;
  background: none;
  border: none;
  margin: 0;
  padding-left: 0;
  font-size: 1.1rem;
}
.testimonial-card cite {
  color: #A8936C;
  font-size: 1rem;
  margin-top: 6px;
  font-style: normal;
  letter-spacing: 0.03em;
}

/* ===== Footer Styles ===== */
footer {
  background: #22313F;
  color: #fff;
  padding: 48px 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.footer-nav a {
  color: #A8936C;
  font-weight: 500;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  transition: color 0.18s, text-decoration 0.18s;
  text-decoration: underline dotted;
}
.footer-nav a:hover {
  color: #fff;
  text-decoration: underline solid;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 0;
}
.footer-contact img {
  height: 44px;
  margin-bottom: 14px;
}
.footer-contact address {
  color: #F3F4F6;
  text-align: center;
  font-size: 1rem;
  font-family: 'Roboto', serif;
}
.footer-contact address img {
  filter: invert(71%) sepia(20%) saturate(323%) hue-rotate(352deg) brightness(95%) contrast(84%);
  margin-right: 6px;
  vertical-align: middle;
}

/* ===== Cookie Consent Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fffdfa;
  border-top: 1px solid #A8936C;
  z-index: 11000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 12vw 18px 12vw;
  box-shadow: 0 -4px 24px 0 rgba(34,49,63,0.07);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  gap: 24px;
  font-family: 'Roboto', serif;
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner .cookie-text {
  color: #22313F;
  font-size: 1rem;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.cookie-btn {
  padding: 9px 18px;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  border: 1.5px solid #A8936C;
  border-radius: 6px;
  background: #fff;
  color: #A8936C;
  margin-right: 5px;
  font-weight: 500;
  transition: background 0.16s, color 0.18s;
}
.cookie-btn.accept {
  background: #A8936C;
  color: #fff;
  border: 1.5px solid #A8936C;
}
.cookie-btn.accept:hover {
  background: #22313F;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #22313F;
}
.cookie-btn.reject:hover {
  background: #F3F4F6;
  color: #A8936C;
}
.cookie-btn.settings {
  background: #fff;
  color: #A8936C;
  border: 1.5px solid #A8936C;
}
.cookie-btn.settings:hover {
  background: #F3F4F6;
  color: #22313F;
}

/* ===== Cookie Modal ===== */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 11500;
  background: #fff;
  border: 1.5px solid #A8936C;
  border-radius: 14px;
  box-shadow: 0 8px 32px 0 rgba(34,49,63,0.12);
  width: 90vw;
  max-width: 400px;
  transform: translate(-50%,-50%) scale(0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.22s;
  padding: 30px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.cookie-modal-header h3 {
  font-family: 'Montserrat', serif;
  color: #22313F;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #A8936C;
  font-size: 1.7rem;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal-close:hover {
  color: #22313F;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category label {
  font-family: 'Roboto', serif;
  color: #22313F;
}
.cookie-category input[type="checkbox"] {
  accent-color: #A8936C;
  width: 18px;
  height: 18px;
}
.cookie-category.essential label {
  font-weight: 600;
}
.cookie-category.essential input[type="checkbox"] {
  display: none;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 16px;
}

/* ===== Responsive Mobile-First ===== */
@media (max-width: 1140px) {
  .container {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .main-navigation {
    max-width: 100vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media (max-width: 900px) {
  .main-navigation {
    gap: 12px;
    flex-wrap: wrap;
  }
  .cta-primary, .cta-secondary {
    font-size: 1rem;
    min-width: 168px;
    padding: 10px 10px;
  }
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.35rem; }
  .section, section { padding: 26px 0; margin-bottom: 36px; }
  .container { padding: 0 10px; }
  .main-navigation { display: none; }
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    right: 20px;
    top: 14px;
    z-index: 111;
  }
  .mobile-menu {
    padding: 32px 14px 28px 14px;
  }
  .content-wrapper, .text-section, .card-container {
    gap: 14px;
  }
  .content-grid { gap: 10px; }
  .testimonial-card, .card {
    padding: 16px 10px;
    font-size: 1rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 11px;
    padding: 0 0 14px 0;
    font-size: 1rem;
  }
  .footer-contact img {
    height: 34px;
  }
  .footer-contact address {
    font-size: 0.97rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 2vw 14px 2vw;
    font-size: 0.98rem;
  }
  .cookie-actions { flex-direction: column; gap: 7px; width: 100%;}
  .cookie-modal { width: 96vw; max-width: 96vw; }
}
@media (max-width: 420px) {
  h1,.h1 { font-size: 1.25rem; }
  h2,.h2 { font-size: 1.05rem; }
  .cookie-modal {
    padding: 16px 3vw 9px 3vw;
  }
}

/* ===== Utility, Animations & Misc ===== */
.fade-in {
  animation: fadeIn 0.7s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

::-webkit-scrollbar {
  width: 8px;
  background: #ECECEC;
}
::-webkit-scrollbar-thumb {
  background: #A8936C;
  border-radius: 4px;
}

/* ===== Misc === */
.contact-data p, .contact-data address {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #22313F;
}

/* ----- Remove unwanted space ------ */
main > section:first-child { margin-top: 0; }

/* --- Hide cookie modal/backdrop overlays by default --- */
.cookie-modal, .cookie-backdrop {
  display: none;
}
.cookie-modal.open, .cookie-backdrop.open {
  display: flex;
}
.cookie-backdrop {
  position: fixed;
  z-index: 11499;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(34,49,63,0.19);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.cookie-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

/* ===== Selection Style for Brand Accent ===== */
::selection {
  background: #A8936C;
  color: #fff;
}

/* ====== END of style.css ====== */