/* CSS RESET & NORMALIZATION -------------------------------------------------- */
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, menu, 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, 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-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: #F2E9E4;
}
body {
  line-height: 1.65;
  color: #222;
  background: #F8F9FA;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  padding-bottom: 80px; /* ensure footer stays off cookie banner */
}
a {
  color: #473647;
  background: none;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
a:focus {
  outline: 2px solid #AA856C;
}
ul, ol {
  list-style: none;
  margin-left: 0;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #473647;
  margin-bottom: 16px;
  font-weight: 700;
}
h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
@media (min-width: 768px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.5rem; }
}
p {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #23252A;
}
strong { font-weight: bold; }
em { font-style: italic; }

/* BRAND COLORS (with fallback) ---------------------------------------------- */
:root {
  --primary: #473647;
  --secondary: #AA856C;
  --accent: #F2E9E4;
  --text-main: #222;
  --text-on-dark: #fff;
  --gray-bg: #F8F9FA;
  --light-gray: #EBECF0;
  --border: #e0e0e0;
  --shadow: 0 4px 18px rgba(71,54,71,0.08), 0 1.5px 5px rgba(170,133,108,0.04);
}

/* GENERAL LAYOUT CONTAINERS ------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
@media (max-width: 991px) {
  .section {
    padding: 32px 10px;
    margin-bottom: 36px;
  }
}

/* HEADER ------------------------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(71,54,71,0.05);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
header img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: #473647;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
}
.cta-btn.primary {
  background: var(--primary);
  color: var(--text-on-dark);
  padding: 12px 24px;
  border-radius: 999px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  border: none;
  box-shadow: 0 2px 8px rgba(170,133,108,0.06);
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  cursor: pointer;
  margin-left: 16px;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: var(--secondary);
  color: var(--text-on-dark);
  box-shadow: 0 4px 16px rgba(170,133,108,0.11);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  padding: 7px 15px;
  border-radius: 8px;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--accent);
}
/* --- Hide main nav on mobile, show burger */
@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .cta-btn.primary {
    margin-left: 0;
  }
  header .container {
    min-height: 56px;
    height: 56px;
    gap: 14px;
  }
  header img {
    height: 36px;
  }
}

/* MOBILE MENU (off-canvas style) ---------------------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(71,54,71,0.94);
  z-index: 1400;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transform: translateX(-100vw);
  transition: transform 0.42s cubic-bezier(0.6,0,0.2,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  margin: 24px 26px 8px 0;
  cursor: pointer;
  padding: 7px 12px;
  border-radius: 8px;
  transition: background 0.18s;
  z-index: 2001;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--secondary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  margin-top: 54px;
  flex: 1 1 auto;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 14px 0;
  width: 94vw;
  text-align: center;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: var(--secondary);
  color: #fff;
}
@media (min-width: 992px) {
  .mobile-menu { display: none; }
}

/* HERO SECTION ------------------------------------------------------------- */
.hero {
  background: var(--accent);
  border-bottom: 2px solid var(--secondary);
  min-height: 230px;
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  padding: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: 38px;
  padding-bottom: 38px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 { color: var(--primary); }
.subheadline {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  color: #474646;
  line-height: 1.7;
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .hero {
    min-height: 310px;
  }
  .hero .container { padding-top: 56px; padding-bottom: 56px; }
}

/* FLEXBOX LAYOUTS: SECTIONS & CARDS ----------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 24px 18px;
  position: relative;
  min-width: 280px;
  flex: 1 1 290px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.19s, transform 0.16s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 8px 28px rgba(71,54,71,0.14);
  transform: translateY(-2px) scale(1.01);
}
@media (max-width: 767px) {
  .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .card {
    min-width: 0;
    width: 100%;
  }
}
.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;
}
@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* FEATURES and BENEFITS ---------------------------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 16px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F8F9FA;
  border-radius: 12px;
  box-shadow: 0 1px 5px rgba(170,133,108,0.07);
  padding: 18px 20px;
  flex: 1 1 235px;
  min-width: 200px;
  max-width: 290px;
  transition: box-shadow 0.2s, background 0.2s;
}
.feature-item img {
  height: 44px;
  width: auto;
  margin-bottom: 4px;
}
.feature-item h3 {
  color: var(--secondary);
  margin-bottom: 6px;
  font-size: 1.2rem;
}
.feature-item p {
  color: #383838;
  font-size: 1.02rem;
}
.feature-item:hover {
  background: #fff;
  box-shadow: 0 4px 16px rgba(170,133,108,0.12);
}
@media (max-width: 991px) {
  .feature-grid {
    gap: 18px;
  }
  .feature-item {
    min-width: 180px;
    padding: 12px 12px;
  }
}
@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item {
    max-width: 100%;
    width: 100%;
  }
}

/* TESTIMONIALS ------------------------------------------------------------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 26px;
  background: #F2E9E4;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(71,54,71,0.10);
  margin-bottom: 20px;
  min-width: 280px;
  max-width: 650px;
  transition: box-shadow 0.18s, background 0.18s;
}
.testimonial-card:hover {
  background: #fff;
  box-shadow: 0 8px 30px rgba(170,133,108,0.17);
}
.testimonial-card p {
  color: #26303E;
  font-size: 1.03rem;
  margin-bottom: 4px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  line-height: 1.7;
}
.client-name {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.star-rating {
  color: var(--secondary);
  font-size: 1.2rem;
  font-family: monospace, monospace;
  margin-top: -8px;
}

/* FOOTER ------------------------------------------------------------------- */
footer {
  background: #473647;
  color: #fff;
  padding: 0;
  margin-top: 60px;
  box-shadow: 0 -3px 24px rgba(71,54,71,0.13);
  font-size: 15px;
}
footer .container {
  display: flex;
  flex-direction: column;
  padding-top: 32px;
  padding-bottom: 32px;
  gap: 20px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 7px;
  padding: 5px 9px;
  transition: background 0.12s, color 0.12s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: var(--secondary);
  color: #fff;
}
.footer-contact {
  color: #faf4f0;
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  opacity: 0.93;
}
@media (max-width: 991px) {
  footer .container {
    padding: 22px 10px;
    gap: 14px;
  }
  .footer-nav {
    gap: 12px;
    font-size: 0.96rem;
  }
}

/* UTILITY CLASSES ---------------------------------------------------------- */
.text-section {
  margin-bottom: 16px;
}
.text-section img {
  height: 22px;
  width: 22px;
  vertical-align: sub;
  margin-right: 6px;
}
.value-statements,
.feature-list,
.benefit-list,
.collection-list,
.step-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-left: 0;
}
.value-statements li,
.feature-list li,
.benefit-list li,
.collection-list li,
.step-list li {
  font-size: 1.01rem;
}

/* RESPONSIVE SPACINGS & ADJUSTMENTS ---------------------------------------- */
@media (max-width: 767px) {
  .section, .hero {
    padding: 18px 0 18px 0;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-nav { flex-direction: column; gap: 6px; }
}

/* BUTTONS ------------------------------------------------------------------ */
button, .cta-btn, .mobile-menu-close, .mobile-menu-toggle {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border: none;
  outline: none;
  cursor: pointer;
}
.cta-btn {
  padding: 12px 23px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  margin-top: 12px;
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s, transform 0.14s;
  box-shadow: 0 2px 9px rgba(170,133,108,0.09);
  display: inline-block;
  text-align: center;
}
.cta-btn.primary {
  background: var(--primary);
  color: #fff !important;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-1px) scale(1.01);
}

/* CONTACT INFOS ------------------------------------------------------------ */
.contact-short, .text-section p a {
  color: var(--secondary);
  font-weight: 600;
  transition: color 0.18s;
}
.contact-short a:hover, .text-section p a:hover {
  color: var(--primary);
}

/* Cookie Consent Banner -----------------------------------------------------*/
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 2001;
  background: #fff;
  box-shadow: 0 -2px 16px rgba(71,54,71,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 12px 20px 12px;
  gap: 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.35s, transform 0.33s;
}
#cookie-banner.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
#cookie-banner .banner-text {
  color: #1C2326;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 6px;
}
#cookie-banner .banner-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
#cookie-banner button {
  min-width: 100px;
  padding: 10px 16px;
  border-radius: 7px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  margin: 0 2px;
  transition: background 0.19s, color 0.19s, transform 0.11s;
}
#cookie-banner .accept {
  background: var(--primary);
  color: #fff;
}
#cookie-banner .accept:hover, #cookie-banner .accept:focus {
  background: var(--secondary);
}
#cookie-banner .reject {
  background: #e0e0e0;
  color: #473647;
}
#cookie-banner .reject:hover, #cookie-banner .reject:focus {
  background: #d7c9c2;
  color: #473647;
}
#cookie-banner .settings {
  background: var(--accent);
  color: var(--primary);
}
#cookie-banner .settings:hover, #cookie-banner .settings:focus {
  background: #fff4ea;
  color: var(--secondary);
}
@media (max-width: 600px) {
  #cookie-banner .banner-actions {
    flex-direction: column;
    gap: 8px;
  }
  #cookie-banner {
    padding: 16px 6px 10px 6px;
  }
}

/* Cookie Modal Popup --------------------------------------------------------*/
#cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(71,54,71,0.33);
  z-index: 3001;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.33s;
}
#cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
#cookie-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 50px rgba(71,54,71,0.21);
  padding: 38px 24px 28px 24px;
  max-width: 390px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transform: translateY(48px) scale(0.95);
  opacity: 0;
  transition: opacity 0.33s, transform 0.37s;
}
#cookie-modal-overlay.open #cookie-modal {
  opacity: 1;
  transform: translateY(0) scale(1);
}
#cookie-modal h3 {
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 6px;
}
#cookie-modal ul {
  list-style: none;
  padding-left: 0;
}
#cookie-modal li {
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
#cookie-modal label {
  flex: 1;
  color: #444;
  font-weight: 500;
}
#cookie-modal input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 18px;
  height: 18px;
}
#cookie-modal .cookie-category-essential {
  color: #888;
  font-style: italic;
  font-size: 0.98rem;
}
#cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
#cookie-modal .close-modal {
  position: absolute;
  top: 18px;
  right: 14px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 2px 7px;
  border-radius: 6px;
  transition: background 0.16s;
}
#cookie-modal .close-modal:hover,
#cookie-modal .close-modal:focus {
  background: var(--accent);
}
#cookie-modal .action-main {
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  padding: 10px 19px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.19s;
}
#cookie-modal .action-main:hover {
  background: var(--secondary);
}
#cookie-modal .action-secondary {
  background: #e0e0e0;
  color: #473647;
  border-radius: 8px;
  padding: 10px 19px;
}
#cookie-modal .action-secondary:hover {
  background: #d7c9c2;
}

/* ANIMATIONS --------------------------------------------------------------- */
@keyframes bounceIn {
  from { opacity: 0; transform: scale(0.9); }
  60% { opacity: 1; transform: scale(1.03); }
  80% {transform: scale(0.98);}
  to { opacity: 1; transform: scale(1); }
}
.section, .card, .testimonial-card, .feature-item, .hero {
  animation: bounceIn 0.9s cubic-bezier(0.3,0.8,0.3,1) 1;
}

/* FORMATTED LISTS ----------------------------------------------------------*/
ul.value-statements, .benefit-list, .collection-list, .feature-list, .step-list {
  padding-left: 18px;
}
ul.value-statements li:before, .benefit-list li:before, .feature-list li:before, .collection-list li:before {
  content: '\2022';
  color: var(--secondary);
  margin-right: 8px;
  font-size: 1.1em;
  vertical-align: middle;
}

/* ACCESSIBILILTY ----------------------------------------------------------- */
a, button, .cta-btn {
  outline: none;
  box-shadow: none;
}
a:focus-visible, .cta-btn:focus-visible, button:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* MISC --------------------------------------------------------------------- */
::-webkit-scrollbar {
  width: 9px;
  background: #F2E9E4;
}
::-webkit-scrollbar-thumb {
  background: #cbbdb4;
  border-radius: 10px;
}

/* Hide elements not needed */
[hidden] { display: none !important; }

/* END CSS */
