/* === 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, 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #3B281E;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #3B281E;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus,
a:hover {
  color: #CDA879;
}
ul, ol {
  list-style: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  color: #3B281E;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}
p, li, span, .testimonial-meta {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #3B281E;
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* === CONTAINER & SECTIONS === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 20px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(60, 40, 20, 0.035);
}
.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;
  }
}

/* === HEADER/NAVIGATION === */
header {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 2px 16px rgba(60, 40, 20, 0.04);
  padding: 0;
  border-bottom: 1px solid #F2EFE6;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 72px;
  gap: 20px;
}
header img {
  max-height: 52px;
  width: auto;
  vertical-align: middle;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 1rem;
  transition: background 0.15s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F2EFE6;
  color: #CDA879;
}
.cta-button {
  display: inline-block;
  padding: 12px 28px;
  background: #CDA879;
  color: #fff !important;
  border-radius: 32px;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  border: none;
  box-shadow: 0 2px 16px rgba(60, 40, 20, 0.05);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.18s;
}
.cta-button:focus,
.cta-button:hover {
  background: #3B281E;
  color: #fff !important;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 18px rgba(60,40,20,0.09);
}

@media (max-width: 1020px) {
  header .container {
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
    min-height: 60px;
  }
  .main-nav {
    gap: 10px;
    flex-wrap: wrap;
  }
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: 1px solid #CDA879;
  color: #3B281E;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1200;
  cursor: pointer;
  transition: border 0.18s, background 0.16s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F2EFE6;
  border-color: #3B281E;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.65,.05,.36,1);
  box-shadow: 0 6px 40px rgba(60,40,20,0.10);
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #3B281E;
  font-size: 2rem;
  position: absolute;
  top: 22px;
  right: 25px;
  z-index: 2010;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #CDA879;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 80px 32px 32px 32px;
  gap: 20px;
  height: 100%;
  overflow-y: auto;
}
.mobile-nav a {
  font-size: 1.15rem;
  padding: 12px 0;
  color: #3B281E;
  text-align: left;
  width: 100%;
  border-bottom: 1px solid #F2EFE6;
  transition: color 0.14s, background 0.15s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: #CDA879;
  background: #F2EFE6;
}
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1021px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* === SECTIONS, CARDS, LISTS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 0 2px 16px rgba(60,40,20,0.06);
  min-width: 260px;
  transition: box-shadow 0.19s, transform 0.17s;
}
.card:focus-within,
.card:hover {
  box-shadow: 0 6px 28px rgba(60,40,20,0.09);
  transform: translateY(-3px) scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* == TESTIMONIALS == */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F2EFE6;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(60,40,20,0.055);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 600px;
  transition: box-shadow .16s, background .15s;
}
.testimonial-card p {
  color: #3B281E;
  font-size: 1.02rem;
  margin-bottom: 0;
}
.testimonial-meta {
  color: #3B281E;
  font-size: 0.96rem;
  font-style: italic;
  opacity: 0.77;
}
.star-rating {
  font-size: 1.2rem;
  color: #CDA879 !important;
  letter-spacing: 2px;
}

/* == LISTS == */
ul, ol {
  padding-left: 22px;
}
ul:not(.main-nav):not(.footer-nav):not(.mobile-nav):not(.feature-list) li,
ol li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 0;
}
ul:not(.main-nav):not(.footer-nav):not(.mobile-nav):not(.feature-list) li img {
  width: 22px;
  vertical-align: middle;
  margin-right: 10px;
}

/* === FOOTER === */
footer {
  background: #fff;
  border-top: 1px solid #F2EFE6;
  margin-top: 64px;
  padding: 32px 0 16px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #3B281E;
  opacity: 0.84;
  font-size: 0.98rem;
  border-radius: 4px;
  transition: color 0.14s, background 0.15s;
  padding: 2px 10px;
}
.footer-nav a:focus,
.footer-nav a:hover {
  color: #CDA879;
  background: #F2EFE6;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-top: 10px;
  margin-bottom: 10px;
}
.footer-contact > div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #3B281E;
  opacity: 0.93;
}
.footer-contact img {
  width: 20px;
}
@media (max-width: 768px) {
  .footer-contact {
    flex-direction: column;
    gap: 10px;
  }
}

/* === FAQ ACCORDION === */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-accordion > div {
  background: #F2EFE6;
  border-radius: 12px;
  padding: 18px 18px 10px 18px;
  box-shadow: 0 2px 12px rgba(60,40,20,0.045);
  margin-bottom: 8px;
  font-size: 1rem;
}
.faq-accordion h3 {
  margin-bottom: 7px;
  font-size: 1.12rem;
  font-weight: 700;
}
.faq-accordion p {
  margin-bottom: 0;
}

/* === BUTTONS, FORMS === */
button,
input[type="submit"],
input[type="button"] {
  font-family: 'Merriweather', Georgia, serif;
  appearance: none;
  border: none;
  outline: none;
  cursor: pointer;
  background: #CDA879;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 12px 28px;
  border-radius: 32px;
  box-shadow: 0 2px 16px rgba(60,40,20,0.05);
  transition: background 0.2s, box-shadow 0.18s, color 0.17s;
}
button:focus,
button:hover,
input[type="submit"]:focus,
input[type="submit"]:hover,
input[type="button"]:focus,
input[type="button"]:hover {
  background: #3B281E;
  color: #fff;
  box-shadow: 0 4px 18px rgba(60,40,20,0.09);
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 -2px 32px rgba(60,40,20,0.11);
  padding: 24px 20px 16px 20px;
  gap: 16px;
  border-top: 1px solid #F2EFE6;
  font-size: 1rem;
  animation: cookie-banner-fade-in 0.55s cubic-bezier(.68,.01,.31,.99);
}
@keyframes cookie-banner-fade-in {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-btns {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.cookie-banner button,
.cookie-banner .cookie-accept,
.cookie-banner .cookie-reject {
  background: #CDA879;
  color: #fff;
  padding: 10px 22px;
  border-radius: 28px;
  border: none;
  font-size: 1rem;
  box-shadow: none;
  transition: background 0.2s, color 0.19s;
}
.cookie-banner .cookie-accept:focus,
.cookie-banner .cookie-accept:hover {
  background: #3B281E;
  color: #fff;
}
.cookie-banner .cookie-reject {
  background: #F2EFE6;
  color: #3B281E;
  border: 1px solid #CDA879;
}
.cookie-banner .cookie-reject:focus,
.cookie-banner .cookie-reject:hover {
  background: #fff;
  border: 1.5px solid #3B281E;
  color: #CDA879;
}
.cookie-banner .cookie-settings {
  background: none;
  color: #3B281E;
  border: 1px solid #CDA879;
  padding: 10px 20px;
}
.cookie-banner .cookie-settings:focus,
.cookie-banner .cookie-settings:hover {
  background: #F2EFE6;
  color: #CDA879;
}

/* === COOKIE PREFERENCES MODAL === */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 4100;
  left: 0; top: 0;
  right: 0; bottom: 0;
  background: rgba(60,40,20,0.18);
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fade-in 0.42s cubic-bezier(.68,.01,.31,.99);
}
@keyframes cookie-modal-fade-in {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 12px 60px rgba(60,40,20,0.11);
  padding: 38px 30px 30px 30px;
  min-width: 320px;
  max-width: 92vw;
  position: relative;
}
.cookie-modal-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.35rem;
  color: #3B281E;
  font-weight: 700;
  margin-bottom: 12px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #3B281E;
  font-size: 2rem;
  position: absolute;
  top: 18px;
  right: 24px;
  cursor: pointer;
  transition: color 0.1s;
}
.cookie-modal-close:focus,
.cookie-modal-close:hover {
  color: #CDA879;
}
.cookie-modal-section {
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}
.cookie-category label {
  font-weight: 500;
  color: #3B281E;
  font-size: 1rem;
  margin-left: 4px;
}
.cookie-category input[type=checkbox]:disabled + label {
  opacity: 0.44;
}
.cookie-modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

/* === UTILITY & BASE CLASSES === */
.note {
  background: #F2EFE6;
  border-radius: 8px;
  color: #3B281E;
  font-size: 0.98rem;
  padding: 12px 16px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.company-values ul, .team-values ul {
  padding-left: 20px;
}
.company-values li,
.team-values li {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.5;
}

/* === SPACING/ALIGNMENT === */
section {
  padding: 20px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === RESPONSIVENESS === */
@media (max-width: 860px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .container { padding: 0 12px; }
  section { padding: 32px 6px; }
  .card {
    padding: 20px 8px;
    min-width: 190px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.15rem; }
  p, li, span, .testimonial-meta {
    font-size: 0.99rem;
  }
  section {
    padding: 26px 4vw;
  }
  .container {
    padding: 0 4vw;
  }
  .card-container, .content-grid, .footer-contact {
    flex-direction: column;
    gap: 14px;
  }
  .card { min-width: 120px; }
  .cta-button, button {
    width: 100%;
    padding: 10px 0;
    font-size: 1.05rem;
  }
}

/* === ANIMATIONS/MICRO-INTERACTIONS === */
.cta-button, button, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.18s, box-shadow 0.16s, color 0.16s, transform 0.17s;
}
.card, .testimonial-card, .faq-accordion > div {
  transition: box-shadow 0.18s, transform 0.15s, background 0.11s;
}

/* === OVERRIDES FOR CONTENT VISIBILITY === */
[hidden], .hidden {
  display: none !important;
}

/* === END OF STYLE.CSS === */
