/* --- CSS RESET & BASE --- */
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,
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: linear-gradient(135deg, #F9F6F2 0%, #f3ede3 45%, #C9A66B 100%);
  color: #283044;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #283044;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C9A66B;
  text-decoration: underline;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}
/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  color: #283044;
  font-weight: 700;
  line-height: 1.2;
  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: 12px;
}
.subtitle {
  font-size: 1.1rem;
  color: #5d677c;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 24px;
}
p {
  color: #283044;
  font-size: 1rem;
  margin-bottom: 16px;
}
strong {
  color: #C9A66B;
}
blockquote {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.1rem;
  color: #283044;
  font-style: italic;
  margin-bottom: 10px;
  margin-left: 0;
}
cite {
  color: #80652d;
  font-size: 0.98rem;
  font-style: normal;
}

/* --- COMMON LAYOUTS --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(40,48,68,0.09);
  padding: 28px 22px 20px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 4px 20px 0 rgba(40,48,68,0.14);
  transform: translateY(-4px) scale(1.025);
}
.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;
  background: #FFF6E6;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(200,166,107,0.09);
  min-width: 220px;
  max-width: 430px;
  color: #283044;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(40,48,68,0.06);
  position: relative;
  z-index: 60;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  position: relative;
}
.main-nav > a img {
  height: 42px;
  width: auto;
  margin-right: 24px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.main-nav ul li {
  margin-right: 0;
}
.main-nav ul li:last-child {
  margin-right: 0;
}
.main-nav ul li a {
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #283044;
  padding: 8px 6px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.main-nav ul li a.active, .main-nav ul li a:hover {
  background: #f2e5c8;
  color: #C9A66B;
  text-decoration: none;
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #C9A66B 0%, #fddb85 100%);
  color: #283044;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  border: none;
  border-radius: 8px;
  padding: 11px 28px;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(40,48,68,0.06);
  margin-left: 20px;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #b19056 0%, #eec871 100%);
  color: #fff;
  box-shadow: 0 6px 18px 0 rgba(200,166,107,0.17);
  text-decoration: none;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: 1.5px solid #C9A66B;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
  color: #283044;
  align-items: center;
  justify-content: center;
  z-index: 125;
  margin-left: 18px;
  transition: background 0.14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #eca81c12;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  max-width: 360px;
  background: #fff;
  box-shadow: -4px 0 28px 2px rgba(40,48,68,0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.67,.06,.24,1);
  z-index: 99999;
  padding: 28px 28px 0 28px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  color: #283044;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ece1c9;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #f3ede3;
  color: #C9A66B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 23px;
  margin-top: 12px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #283044;
  font-size: 1.13rem;
  font-weight: 500;
  padding: 11px 0;
  border-radius: 6px;
  transition: background 0.12s, color 0.12s;
  width: 100%;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #f9f6f2;
  color: #C9A66B;
}
@media (max-width: 1000px) {
  .main-nav ul {
    gap: 13px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 95vw;
  }
  .main-nav {
    gap: 9px;
  }
  .main-nav > a img {
    height: 38px;
    margin-right: 8px;
  }
}
@media (max-width: 768px) {
  .main-nav ul,
  .main-nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .container {
    padding: 0 11px;
  }
}

/* --- HERO / SECTIONS --- */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  width: 100%;
}
section:first-of-type {
  margin-top: 12px;
}

@media (max-width: 768px) {
  section {
    padding: 26px 0 24px 0;
    margin-bottom: 32px;
  }
  h1 { font-size: 2rem; margin-bottom: 18px; }
  h2 { font-size: 1.35rem; margin-bottom: 13px; }
  .subtitle { font-size: 1rem; margin-bottom: 17px; }
  .card { padding: 20px 12px 15px 12px; }
}

/* --- FEATURES GRID --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
  justify-content: flex-start;
}
.feature-grid li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(40,48,68,0.08);
  padding: 28px 22px 22px 22px;
  min-width: 220px;
  max-width: 360px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.23s, transform 0.2s;
  gap: 13px;
}
.feature-grid li:hover {
  box-shadow: 0 7px 26px 0 rgba(200,166,107,0.13);
  transform: translateY(-4px) scale(1.03);
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
  border-radius: 6px;
  background: #f3ede3;
  padding: 5px;
}

.selling-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
}
.selling-points li {
  background: #f3ede3;
  color: #283044;
  padding: 8px 20px;
  border-radius: 99px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
@media (max-width: 1000px) {
  .feature-grid {
    gap: 17px;
  }
  .feature-grid li {
    padding: 19px 13px 14px 13px;
    min-width: 160px;
    max-width: 98vw;
  }
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 10px;
  }
  .feature-grid li {
    min-width: unset;
    max-width: unset;
    width: 100%;
  }
  .selling-points {
    gap: 10px;
  }
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  background: #FFF6E6;
  border-left: 6px solid #C9A66B;
  box-shadow: 0 1px 6px 0 rgba(41,49,71,0.12);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-right: 14px;
  margin-bottom: 22px;
  color: #283044;
  min-width: 200px;
  max-width: 410px;
  margin-top: 0;
}
.testimonial-card blockquote {
  color: #283044;
  margin-bottom: 8px;
}
.testimonial-card cite {
  color: #80652d;
  font-weight: 600;
}
@media (max-width: 768px) {
  .testimonial-card {
    max-width: unset;
    width: 100%;
    margin-right: 0;
    margin-bottom: 22px;
  }
  .content-wrapper {
    gap: 14px;
  }
}

/* --- CONTACT INFO --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 17px;
}
.contact-info li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #283044;
  gap: 11px;
}
.contact-info img {
  width: 20px;
  height: 20px;
  min-width: 20px;
}

/* --- FOOTER --- */
footer {
  background: linear-gradient(90deg,#283044 60%, #3e4760 100%);
  color: #fff;
  padding: 40px 0 18px 0;
  font-size: 1rem;
  margin-top: 30px;
  box-shadow: 0 -2px 12px 0 rgba(40,48,68,0.07);
}
.footer-menu {
  margin-bottom: 15px;
}
.footer-menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: center;
}
.footer-menu ul li a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.85;
  font-size: 0.98rem;
  padding: 7px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.16s, border-bottom 0.18s;
}
.footer-menu ul li a:hover {
  color: #C9A66B;
  border-bottom: 2px solid #C9A66B;
}
.footer-contact {
  margin-bottom: 13px;
}
.footer-contact p, .footer-contact a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  opacity: 0.92;
}
footer small {
  display: block;
  font-size: 0.88rem;
  color: #ccbc9e;
  margin-top: 9px;
}
@media (max-width: 768px) {
  .footer-menu ul {
    flex-direction: column;
    gap: 13px;
  }
  .footer-contact {
    margin-bottom: 8px;
  }
  footer {
    padding: 22px 0 14px 0;
    font-size: 0.97rem;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffdfa;
  color: #283044;
  box-shadow: 0 -3px 16px 0 rgba(200,166,107,0.11);
  z-index: 10001;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  gap: 20px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: transform 0.27s cubic-bezier(.63, .14, .22, 1);
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
}
.cookie-consent-message {
  flex: 1 1 280px;
  min-width: 140px;
}
.cookie-consent-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  background: #F6DDA4;
  color: #283044;
  border-radius: 24px;
  border: none;
  padding: 9px 24px;
  margin: 0;
  transition: background 0.16s, color 0.16s;
}
.cookie-btn.accept {
  background: linear-gradient(90deg,#C9A66B 60%, #fddb85 100%);
  color: #283044;
  border: 1.5px solid #C9A66B;
}
.cookie-btn.reject {
  background: #edeae4;
  color: #C9A66B;
  border: 1.5px solid #C9A66B;
}
.cookie-btn.settings {
  background: #fff;
  color: #80652d;
  border: 1.5px solid #C9A66B;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #C9A66B;
  color: #fff;
  outline: none;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 12px;
    gap: 13px;
    font-size: 0.97rem;
  }
  .cookie-consent-actions {
    width: 100%;
    gap: 11px;
  }
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 12001;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(40,48,68,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.24s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  visibility: hidden;
}
.cookie-modal {
  background: #fff;
  max-width: 400px;
  min-width: 225px;
  padding: 32px 26px 24px 26px;
  border-radius: 14px;
  box-shadow: 0 4px 28px 0 rgba(40,48,68, .13);
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #283044;
  font-family: 'Merriweather', Georgia, serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
}
.cookie-category label {
  font-size: 1.01rem;
  color: #283044;
}
.cookie-toggle {
  width: 42px;
  height: 22px;
  border-radius: 12px;
  background: #f3ede3;
  position: relative;
  cursor: pointer;
  transition: background 0.13s;
  border: 1.5px solid #C9A66B;
}
.cookie-toggle input[type="checkbox"] {
  display: none;
}
.cookie-toggle .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: #C9A66B;
  border-radius: 50%;
  transition: left 0.15s, background 0.13s;
}
.cookie-toggle input[type="checkbox"]:checked + .slider {
  left: 22px;
  background: #283044;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 19px;
}
.cookie-modal-close {
  position: absolute;
  top: 11px; right: 11px;
  background: #fff;
  color: #C9A66B;
  border: 1.2px solid #C9A66B;
  border-radius: 6px;
  width: 32px; height: 32px;
  font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.14s;
}
.cookie-modal-close:hover {
  background: #FFF6E6;
  color: #283044;
}
@media (max-width: 430px) {
  .cookie-modal {
    max-width: 95vw;
    padding: 14px 4.5vw 15px 4.5vw;
  }
}

/* --- UTILS & HELPERS --- */
.gap-20 { gap: 20px; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* --- RESPONSIVE LAYOUTS & FLEX ADJUSTMENTS --- */
@media (max-width: 900px) {
  .container { max-width: 92vw; }
}
@media (max-width: 850px) {
  .contact-info { font-size: 0.98rem; }
}
@media (max-width: 900px) {
  .text-image-section {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .content-grid, .card-container, .text-image-section, .footer-menu ul, .selling-points {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section { flex-direction: column; align-items: flex-start; }
  .content-grid { gap: 14px; }
}

/* --- ANIMATIONS --- */
.cta-btn, .card, .feature-grid li, .testimonial-card, .cookie-consent-banner, .cookie-btn, .mobile-menu, .mobile-menu-toggle {
  transition: all 0.19s cubic-bezier(.57,.21,.37,.91);
}

/* --- FOCUS STYLES FOR ACCESSIBILITY --- */
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid #C9A66B;
  outline-offset: 2px;
}

/* --- SCROLL BAR --- */
body {
  scrollbar-color: #C9A66B #f3ede3;
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 8px;
  background: #f3ede3;
}
::-webkit-scrollbar-thumb {
  background: #C9A66B;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #b19056;
}

/* --- END --- */
