/* --------------------- 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,
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 {
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  background: #F3F2EE;
  color: #23272D;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #23272D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #BB925C;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
}

/* --------------------- TYPOGRAPHY --------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #23272D;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}
h2 {
  font-size: 1.625rem;
  margin-bottom: 18px;
  text-transform: uppercase;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  text-transform: uppercase;
}
p, li, span {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #23272D;
}
p {
  font-size: 1rem;
  margin-bottom: 14px;
}

strong {
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.3px;
}

.text-section {
  max-width: 700px;
}

/* --------------------- STRUCTURE & LAYOUT --------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(35,39,45,0.09);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(35,39,45,0.22);
  transform: translateY(-5px) scale(1.02);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(35,39,45,0.09);
  border-left: 7px solid #BB925C;
  transition: box-shadow 0.2s, border-color 0.23s;
  min-width: 260px;
  max-width: 460px;
}
.testimonial-card p {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  color: #23272D;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}
.testimonial-card span {
  font-size: 0.95rem;
  color: #6C6860;
  font-family: 'Open Sans', Arial, sans-serif;
  font-style: italic;
}
.testimonial-card:hover {
  border-color: #23272D;
  box-shadow: 0 6px 24px rgba(187,146,92,0.10);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Minimum spacing for all cards and sections */
section, .testimonial-card, .card {
  margin-bottom: 20px;
}

/* ------------- HEADER / NAVIGATION ------------- */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(35,39,45,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: 'Montserrat', Arial, sans-serif;
}
header nav a {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: border-color 0.18s, color 0.18s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  color: #BB925C;
  border-bottom: 3px solid #BB925C;
}
header img {
  width: 135px;
  height: auto;
}

.cta-primary {
  background: #BB925C;
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  padding: 13px 38px;
  border-radius: 32px 6px;
  box-shadow: 0 1.5px 10px rgba(35,39,45,0.07);
  margin-left: 30px;
  transition: background 0.2s, transform 0.16s, box-shadow 0.2s;
  border: 2.5px solid #BB925C;
  display: inline-block;
  position: relative;
}
.cta-primary:hover, .cta-primary:focus {
  background: #23272D;
  border-color: #23272D;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(35,39,45,0.14);
  outline: none;
  text-decoration: none;
}

/* MOBILE MENU --------------- */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #23272D;
  font-size: 2.1rem;
  border-radius: 8px;
  padding: 6px 14px 6px 14px;
  margin-left: 15px;
  box-shadow: 0 1.5px 8px rgba(35,39,45,0.07);
  transition: background 0.2s, color 0.18s;
  z-index: 1003;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #BB925C;
  color: #fff;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #23272D;
  color: #fff;
  z-index: 2000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.77,.01,.29,.99), opacity 0.25s;
  opacity: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  font-size: 2.2rem;
  color: #fff;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  transition: color 0.18s;
  z-index: 2001;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #BB925C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  margin-top: 30px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px 36px;
  border-left: 4px solid transparent;
  border-radius: 0 18px 18px 0;
  transition: border-color 0.18s, background 0.2s, color 0.18s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #BB925C;
  color: #23272D;
  border-left: 4px solid #fff;
}

/* ------------------- MAIN & SECTIONS ------------------- */
main {
  width: 100%;
  min-height: 640px;
  background: #F3F2EE;
  padding-top: 20px;
  padding-bottom: 60px;
}
section {
  width: 100%;
  background: none;
  border-radius: 24px;
}

section .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
ul li, ol li {
  font-size: 1.08rem;
  margin-bottom: 12px;
  padding-left: 0.5em;
  line-height: 1.7;
  position: relative;
}
ul li img {
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin-right: 12px;
  display: inline-block;
  border-radius: 7px;
  box-shadow: 0 1px 3px rgba(35,39,45,.09);
  background: #F3F2EE;
  padding: 4px;
}
ul li strong {
  color: #BB925C;
}

ol {
  padding-left: 1.2em;
}
ol li {
  list-style: decimal inside;
  margin-bottom: 10px;
}

.text-section ul {
  margin-bottom: 0;
}

/* --------------------- FOOTER --------------------- */
footer {
  background: #23272D;
  color: #fff;
  padding: 44px 0 20px 0;
  margin-top: 28px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
footer .content-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
footer nav a {
  color: #fff;
  text-transform: uppercase;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: color 0.18s;
  opacity: 0.85;
}
footer nav a:hover, footer nav a:focus {
  color: #BB925C;
  opacity: 1;
  text-decoration: underline;
}
footer img {
  width: 70px;
  margin-bottom: 16px;
}
.social-icons {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  margin-top: 12px;
}
.social-icons img {
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 7px;
  padding: 4px;
  transition: background 0.19s, box-shadow 0.14s;
  box-shadow: 0 1px 6px rgba(187,146,92,0.07);
}
.social-icons img:hover, .social-icons img:focus {
  background: #BB925C;
  box-shadow: 0 2px 10px rgba(187,146,92,0.14);
}

/* --------------------- SHAPES & GEOMETRIC DECOR --------------------- */
/* Example geometric SVG backgrounds or shapes for accents */
.section {
  position: relative;
}
.section::before {
  content: "";
  display: block;
  position: absolute;
  top: -18px; left: -18px;
  width: 72px; height: 72px;
  background: #F3F2EE;
  border-top-left-radius: 22px;
  border-bottom-right-radius: 10px 40px;
  box-shadow: 0 4px 20px rgba(35,39,45,0.03);
  z-index: 0;
  opacity: 0.23;
  pointer-events: none;
}
.section:last-child::before {
  display: none;
}

/* --------------- COOKIE CONSENT BANNER & MODAL --------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #23272D;
  color: #fff;
  z-index: 4000;
  padding: 22px 12px 22px 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  box-shadow: 0 -4px 40px rgba(35,39,45,0.07);
  transition: transform 0.33s cubic-bezier(.77,.01,.29,.99), opacity 0.19s;
}
.cookie-banner span {
  color: white;
}
.cookie-banner a {
  color: white;
}
.cookie-banner.hide {
  transform: translateY(130%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 5px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 18px 6px 18px 6px;
  padding: 11px 28px;
  margin: 0 4px;
  font-size: 1rem;
  color: #23272D;
  background: #fff;
  border: 2px solid #BB925C;
  transition: background 0.18s, color 0.18s, border 0.14s, box-shadow 0.18s;
  box-shadow: 0 1px 7px rgba(35,39,45,0.06);
}
.cookie-btn.accept {
  background: #BB925C;
  color: #fff;
  border-color: #BB925C;
}
.cookie-btn:focus,
.cookie-btn:hover {
  background: #23272D;
  color: #fff;
  border-color: #23272D;
  outline: none;
  box-shadow: 0 2px 16px rgba(35,39,45,0.13);
}

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(35,39,45,0.52);
  z-index: 4010;
  display: none;
}
.cookie-modal-backdrop.active {
  display: block;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #fff;
  color: #23272D;
  z-index: 4012;
  min-width: 320px;
  max-width: 490px;
  border-radius: 16px 40px 22px 16px;
  box-shadow: 0 8px 36px rgba(35,39,45,0.19);
  padding: 36px 36px 16px 36px;
  display: none;
  flex-direction: column;
  gap: 22px;
  animation: cookie-modal-in 0.30s cubic-bezier(.77,.01,.29,.99);
}
@keyframes cookie-modal-in {
  from { transform: translate(-50%,-60%) scale(0.98); opacity: 0; }
  to { transform: translate(-50%,-50%) scale(1); opacity: 1; }
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal h3 {
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 10px;
}
.cookie-modal p {
  font-size: 1rem;
  margin-bottom: 2px;
}
.cookie-category {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-switch {
  width: 44px;
  height: 26px;
  background: #F3F2EE;
  border-radius: 15px;
  position: relative;
  border: 1.3px solid #BB925C;
  transition: background 0.15s, border-color 0.11s;
  cursor: pointer;
}
.cookie-switch input {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  cursor: pointer;
}
.cookie-switch .slider {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  position: absolute;
  top: 1.5px; left: 2px;
  background: #BB925C;
  transition: left 0.15s, background 0.13s;
  box-shadow: 0 1px 5px rgba(35,39,45,0.04);
}
.cookie-switch input:checked + .slider {
  left: 18px;
  background: #23272D;
}

.cookie-category.essential .cookie-switch {
  opacity: 0.5;
  pointer-events: none;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 6px;
}

.cookie-modal .cookie-btn {
  font-size: 0.97rem;
  padding: 9px 19px;
}

/* --------------- RESPONSIVE DESIGN --------------- */
@media (max-width: 1023px) {
  header .container,
  footer .content-wrapper,
  .content-wrapper,
  .section .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  header nav, footer nav {
    flex-direction: column;
    gap: 17px;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 12px;
  }
  main {
    padding-bottom: 30px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.27rem; }
  .cta-primary {
    margin-left: 0;
    margin-top: 7px;
    width: 98%;
    text-align: center;
    display: block;
  }
  section {
    padding: 28px 4px;
  }
  .content-wrapper, .container, .section .container {
    gap: 18px;
  }
  ul li img {
    width: 24px; height: 24px;
    margin-right: 7px;
  }
  .testimonial-card {
    max-width: 98vw;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  header nav,
  .cta-primary {
    display: none;
  }
  .mobile-menu {
    width: 100vw;
    height: 100vh;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 17px;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  footer .content-wrapper {
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .section {
    margin-bottom: 30px;
  }
}
@media (max-width: 420px) {
  h1 {
    font-size: 1.22rem;
  }
  .card, .testimonial-card {
    padding: 16px 9px;
  }
  .cookie-banner {
    padding: 11px 1px;
  }
}

/* --------------- ANIMATIONS --------------- */
.cta-primary, .cookie-btn, .card, .testimonial-card {
  transition: 
    background 0.18s,
    color 0.18s,
    border-color 0.19s,
    box-shadow 0.18s,
    transform 0.2s;
}

/* --------------- VISUAL HIERARCHY ------------------- */
h1, .cta-primary {
  background-clip: padding-box;
}
h2 {
  margin-top: 16px;
}

/* --------------- UTILITY CLASSES --------------- */
.text-center {
  text-align: center !important;
}
.mt-24 {
  margin-top: 24px !important;
}
.mb-18 {
  margin-bottom: 18px !important;
}

/* ------------- MAKE ELEMENTS TOUCH TARGET FRIENDLY ON MOBILE ------------- */
.mobile-nav a {
  min-height: 46px;
  display: flex;
  align-items: center;
}

/* ------------- ACCESSIBILITY FOCUS RINGS ------------- */
a:focus-visible, button:focus-visible {
  outline: 2.5px solid #BB925C;
  outline-offset: 2px;
  background: #F3F2EE;
}

/* ------------- SELECTION COLOR ------------- */
::selection {
  background: #BB925C;
  color: #fff;
}

/* ------------ SCROLLBAR FOR DESKTOP ---------- */
@media (pointer: fine) {
  ::-webkit-scrollbar {
    width: 10px;
    background: #F3F2EE;
  }
  ::-webkit-scrollbar-thumb {
    background: #BB925C;
    border-radius: 9px;
    border: 2.5px solid #F3F2EE;
  }
}

/* --------------- LAST -- NO OVERLAPPING GUARANTEE -------------- */
.card, .testimonial-card, .section, .content-wrapper > * {
  z-index: 1;
}
.section::before {
  z-index: 0;
}

/* ---- END OF geometric_structured novaic mode style.css ---- */
