/* 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, 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; }
*, *:before, *:after { box-sizing: inherit; }

body {
  background: linear-gradient(135deg, #F4EEDF 0%, #e9e6d7 100%);
  min-height: 100vh;
  color: #23242D;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 1.7;
  transition: background 0.3s;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: #B49D68; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #23242D; text-decoration: underline; }

ul, ol {
  margin-left: 1.2em;
  margin-bottom: 20px;
}

li { margin-bottom: 12px; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  color: #23242D;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
h4, h5, h6 { font-size: 1.12rem; margin-bottom: 8px; }

p, span, li {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  color: #23242D;
}

strong { color: #23242D; font-weight: bold; }

/* CONTAINER & SECTION SPACING */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 20px;
  background: rgba(244, 238, 223, 0.92);
  box-shadow: 0 8px 32px rgba(35,36,45,0.06);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-section {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.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 4px 20px rgba(35,36,45,0.07);
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  transition: box-shadow 0.25s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(180,157,104,0.18);
  transform: translateY(-4px) scale(1.015);
  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: center;
  gap: 20px;
  padding: 20px;
  background: #faf8f3;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(180,157,104,0.12);
  border: 1px solid #eadbb9;
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(36,31,19,0.04);
  margin-bottom: 20px;
}

/* HEADER */
header {
  background: linear-gradient(93deg, #F4EEDF 74%, #B49D68 98%);
  box-shadow: 0 1px 8px rgba(35,36,45,0.06);
  position: relative;
  z-index: 10;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
  min-height: 80px;
}
.logo {
  display: block;
  height: 52px;
  margin-right: 18px;
}
.logo img {
  height: 52px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  color: #23242D;
  font-weight: 500;
  padding: 6px 4px;
  border-radius: 4px;
  transition: color 0.2s, background 0.18s;
  position: relative;
}
header nav a:hover,
header nav a:focus {
  background: #eadbb9;
  color: #B49D68;
}
.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg,#b49d68 40%,#f4eedf 100%);
  color: #23242D;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  border: none;
  padding: 11px 34px;
  border-radius: 28px;
  font-size: 1.14rem;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 10px rgba(180,157,104,0.12);
  transition: background 0.3s, color 0.18s, box-shadow 0.2s;
  cursor: pointer;
  margin-left:16px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #B49D68;
  color: #fff;
  box-shadow: 0 4px 20px rgba(35,36,45,0.13);
  text-decoration: none;
}
.btn-secondary {
  display: inline-block;
  background: #23242D;
  color: #fff;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 600;
  border: none;
  padding: 10px 28px;
  border-radius: 24px;
  font-size: 1rem;
  box-shadow: 0 1px 4px rgba(35,36,45,0.14);
  letter-spacing: 0.033em;
  transition: background 0.24s, color 0.18s, box-shadow 0.18s;
  cursor: pointer;
  margin-left:10px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #B49D68;
  color: #23242D;
}

/* ========== MOBILE MENU STYLES ========== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 20px;
  top: 24px;
  z-index: 101;
  width: 44px;
  height: 44px;
  background: #f4eedf;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(35,36,45,0.07);
  font-size: 2.1rem;
  color: #23242D;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #eddba5;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #F4EEDF;
  z-index: 200;
  transform: translateX(-110vw);
  transition: transform 0.32s cubic-bezier(.8,.1,.2,1);
  display: flex;
  flex-direction: column;
  padding: 0 0;
  box-shadow: 0 8px 32px rgba(35,36,45,0.20);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 26px;
  top: 26px;
  font-size: 2.3rem;
  background: none;
  border: none;
  color: #23242D;
  cursor: pointer;
  z-index: 301;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #eadbb9;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 80px;
  padding: 40px 30px 20px 30px;
}
.mobile-nav a {
  color: #23242D;
  font-size: 1.19rem;
  font-weight: 500;
  padding: 10px 0;
  width: 100%;
  border-radius: 4px;
  transition: background 0.18s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background:#eadbb9;
  color: #B49D68;
}

/* ========== MAIN SECTIONS ========== */
main { width: 100%; margin: 0 auto; }
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  background: rgba(244, 238, 223, 0.94);
  box-shadow: 0 6px 24px rgba(35,36,45,0.07);
}

/* Spacing for testimonial, feature card, etc. */
.testimonial-card:not(:last-child) { margin-bottom: 20px; }

/* Simple filter select styling */
select {
  background: #faf8f3;
  border: 1px solid #eadbb9;
  font-size: 1rem;
  border-radius: 8px;
  padding: 8px 16px;
  color: #23242D;
  margin-left: 10px;
  transition: border 0.2s;
}
select:focus {
  border: 1px solid #B49D68;
  outline: none;
}
label {
  vertical-align: middle;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  color: #B49D68;
  font-size: 1.25rem;
  letter-spacing: 2px;
  font-family:'Lato', Arial, sans-serif;
}

/* FOOTER */
footer {
  margin-top: 0px;
  background: linear-gradient(91deg,#B49D68 10%,#f4eedf 90%);
  padding: 36px 0 20px 0;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  box-shadow: 0 -4px 24px rgba(35,36,45,0.06);
}
footer .container {
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
footer nav {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
footer nav a {
  font-family: 'Lato', Arial, sans-serif;
  color: #23242D;
  font-size: 1rem;
  padding: 6px 8px;
  border-radius: 3px;
  transition: background 0.16s, color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  background: #eadbb9;
  color: #B49D68;
}
.brand-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 1.08rem;
  color: #23242D;
}
.brand-footer img {
  width: 42px; height: 42px;
  border-radius: 8px;
}
.footer-info {
  font-size: .98rem;
  color: #23242d;
  opacity: 0.7;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: #23242D;
  color: #F4EEDF;
  padding: 30px 20px 20px 20px;
  box-shadow: 0 6px 32px rgba(35,36,45,0.23);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 1rem;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  animation: cookie-banner-slide-in 0.55s cubic-bezier(.77,.25,.16,1);
}
@keyframes cookie-banner-slide-in {
  0% { transform: translateY(110%); opacity:0; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  margin-bottom: 10px;
  color: #F4EEDF;
  line-height: 1.6;
  font-weight: 500;
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner .btn-cookie {
  background: #B49D68;
  color: #23242D;
  border-radius: 23px;
  padding: 10px 22px;
  font-size: 1rem;
  border: none;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.21s, color 0.18s;
}
.cookie-banner .btn-cookie:hover, .cookie-banner .btn-cookie:focus {
  background: #F4EEDF;
  color: #B49D68;
}
.cookie-banner .btn-cookie.settings {
  background: #23242D;
  border:1px solid #B49D68;
  color: #B49D68;
}
.cookie-banner .btn-cookie.settings:hover {
  background: #B49D68;
  color: #23242D;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position:fixed;
  left:0; top:0;right:0; bottom:0;
  z-index: 10000;
  background: rgba(35,36,45,0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein-modal 0.28s ease-in;
}
@keyframes fadein-modal { 0% { opacity:0; } 100% {opacity:1;} }
.cookie-modal {
  background: #f4eedf;
  color: #23242D;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(35,36,45,0.13);
  padding: 36px 30px 26px 30px;
  width: 95%;
  max-width: 420px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: slideInModal 0.36s cubic-bezier(.7,.2,.2,1);
}
@keyframes slideInModal {
  0% {opacity: 0;transform: translateY(40px);} 100%{opacity: 1;transform: translateY(0);}
}
.cookie-modal h3 {
  font-size: 1.20rem;
  margin-bottom: 10px;
  color: #23242D;
  font-family: 'Playfair Display', serif;
}
.cookie-modal .cookie-category {
  margin-bottom: 14px;
  padding: 12px 10px 9px 15px;
  border-radius: 10px;
  background: #faf8f3;
  display: flex; align-items: center; gap: 10px;
}
.cookie-modal label {
  font-size: 1rem;
  color: #23242D;
  font-weight: 600;
  flex: 1;
  gap:7px;
}
.cookie-modal .toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 23px;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top:0; left:0; right:0; bottom:0;
  background: #eddba5;
  border-radius: 23px;
  transition: .3s;
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  height: 17px; width: 17px;
  left: 3px; bottom: 3px;
  background: #23242D;
  border-radius: 50%;
  transition: .3s;
}
.cookie-modal .toggle-switch input:checked + .slider {
  background: #B49D68;
}
.cookie-modal .toggle-switch input:checked + .slider:before {
  transform: translateX(17px);
  background: #f4eedf;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px; right: 18px;
  background: none;
  border: none;
  color: #23242D;
  font-size: 1.45rem;
  cursor: pointer;
  border-radius: 50%;
  width: 34px; height: 34px;
  transition: background 0.2s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus { background: #eadbb9; }
.cookie-modal .mandatory {
  background: #ede7d0;
  font-weight: 600;
  color: #836b34;
  font-size: .98rem;
  padding: 2px 8px;
  border-radius: 6px;
  margin-left: 5px;
}

/* ========== FORM ELEMENTS ========== */
input[type="text"], input[type="email"], textarea {
  border: 1px solid #eadbb9;
  background: #faf8f3;
  color: #23242D;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  margin-bottom: 14px;
  transition: border 0.2s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  outline: none;
  border: 1.5px solid #B49D68;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
  .container { max-width: 94vw; }
  header .container {padding-left: 6px; padding-right: 6px;}
}
@media (max-width: 900px) {
  header .container { flex-direction: column; align-items: flex-start; gap: 10px; min-height: unset; }
  header nav {
    gap: 14px;
    flex-wrap: wrap;
  }
  .brand-footer { flex-direction: column; align-items: flex-start; gap:4px; }
}
@media (max-width: 768px) {
  .container { max-width: 100vw; padding: 0 4.5vw; }
  .section, section {
    padding: 26px 6vw;
    border-radius: 16px;
  }
  .content-wrapper { gap: 18px; }
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.38rem; }
  .brand-footer img { width: 38px; height: 38px; }
  .btn-primary, .btn-secondary { font-size: 1rem; padding: 10px 22px; border-radius: 23px; }
  .testimonials, .features, .card-container, .content-grid { gap: 16px; }
  .feature-item, .testimonial-card, .card { padding: 16px 10px; }
  .mobile-menu-toggle { top:16px;right:8px; width:42px;height:42px;}
}
@media (max-width: 700px) {
  header nav, header .btn-primary { display:none; }
  .mobile-menu-toggle { display: flex; }
  .brand-footer span { font-size: .98rem;}
}
@media (max-width: 600px) {
  h1 { font-size: 1.38rem; }
  .btn-primary, .btn-secondary { font-size: 0.98rem; padding: 9px 12px; }
  .cookie-modal {padding:22px 8vw 22px 8vw;}
}
@media (max-width: 540px) {
  .container { padding-left:0.5vw; padding-right: 0.5vw; }
  .section, section { padding: 18px 1vw; border-radius: 10px;}
  .cookie-banner { flex-direction: column; gap:12px; padding:23px 4vw 12px 6vw; font-size:.97rem;}
}
@media (max-width: 420px) {
  .cookie-modal {max-width: 97vw; padding: 10px 2vw 10px 2vw;}
  .cookie-banner {font-size: 0.92rem;}
  .btn-primary, .btn-secondary, .btn-cookie { font-size: 0.95rem; padding: 6px 8px;}
}
@media (max-width:768px) {
  .text-image-section { flex-direction: column; align-items: stretch; }
}

/* ================================
   MICRO-INTERACTIONS & ANIMATIONS
   ================================ */
.btn-primary, .btn-secondary, .btn-cookie, .mobile-menu-toggle, .mobile-menu-close, .cookie-modal-close {
  transition: background 0.22s, color 0.22s, box-shadow 0.27s, transform 0.17s;
}
.btn-primary:active, .btn-secondary:active, .btn-cookie:active {
  transform: scale(0.97);
}

/* Accessibility: focus visible outline */
:focus-visible {
  outline: 2px solid #B49D68;
  outline-offset: 1px;
}

/* Custom scrollbar for overlay/modal */
.cookie-modal-overlay::-webkit-scrollbar, .mobile-menu::-webkit-scrollbar {
  width: 9px;
  background: #F4EEDF;
}
.cookie-modal-overlay::-webkit-scrollbar-thumb, .mobile-menu::-webkit-scrollbar-thumb {
  background: #eadbb9;
  border-radius: 14px;
}

/* Hide scroll for overlay on mobile */
@media (max-width: 600px) {
  .cookie-modal-overlay, .mobile-menu {
    overscroll-behavior: contain;
  }
}
