/* 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, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,  figure, figcaption, footer, header,
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 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #4B3222;
  background: #F6EFE5;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; border: 0; }
a { color: #5D4632; text-decoration: none; transition: color .2s; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit; font-size: inherit; outline: none; background: none; border: none;
}
button { cursor: pointer; transition: background .15s, color .15s, box-shadow .2s; }

/* BRAND FONTS */
h1, h2, h3, h4, h5, h6, .display-font {
  font-family: 'Cormorant Garamond', serif !important;
  letter-spacing: .01em;
  color: #5D4632;
}

@media (max-width: 768px) {
  html { font-size: 15px; }
}

/* TYPOGRAPHY SCALE */
h1 { font-size: 2.8rem; line-height: 1.15; margin-bottom: 12px; font-weight: 700; }
h2 { font-size: 2.1rem; line-height: 1.18; margin-bottom: 10px; font-weight: 600; }
h3 { font-size: 1.35rem; line-height: 1.2; margin-bottom: 8px; font-weight: 500; }
h4 { font-size: 1.17rem; margin-bottom: 6px; font-weight: 500; }
p, ul, ol, li, address { font-size: 1rem; line-height: 1.7; margin-bottom: 10px; }
strong { font-weight: 600; }
blockquote {
  font-family: 'Cormorant Garamond', serif; color: #90692c;
  background: #F6EFE5;
  border-left: 6px solid #C2B8A3;
  margin: 24px 0; padding: 18px 28px;
  font-size: 1.22rem;
  border-radius: 0 24px 24px 0;
  box-shadow: 0 2px 14px #deceb0a0;
}

/* CONTAINER & SPACING SYSTEM */
.container {
  width: 100%; max-width: 1130px; margin: 0 auto;
  padding: 0 20px;
  display: flex; flex-direction: column;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
  display: flex; flex-direction: column; align-items: flex-start;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
@media (max-width: 768px) {
  section { padding: 32px 0; margin-bottom: 28px; }
  .container { padding: 0 10px; }
}

/* MAIN NAVIGATION */
header {
  background: #fff6ed;
  box-shadow: 0 4px 24px #ddbe8a15;
  padding-top: 6px;
  position: relative;
  z-index: 21;
}
.main-nav {
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; width: 100%; max-width: 1130px;
  margin: 0 auto; padding: 10px 20px 10px 20px;
}
.main-nav img {
  height: 44px;
  margin-right: 8px;
  filter: drop-shadow(0 2px 4px #c2b8a355);
}
.main-nav ul {
  display: flex; gap: 22px;
}
.main-nav li { display: flex; align-items: center; }
.main-nav a {
  font-family: 'Montserrat'; font-weight: 600; font-size: 1.01rem;
  color: #5D4632; opacity: 0.94;
  padding: 3px 0;
  position: relative;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: #C2B8A3;
  transition: width .24s cubic-bezier(.7,.17,.21,.99);
  border-radius: 1px;
  position: absolute;
  left: 0; bottom: -3px;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #8D7028;
}
.main-nav a:hover:after,
.main-nav a:focus:after {
  width: 70%;
}

@media (max-width: 990px) {
  .main-nav {
    padding: 9px 6px;
  }
  .main-nav img { height: 36px; }
  .main-nav ul { gap: 14px; }
}
@media (max-width: 825px) {
  .main-nav ul { display: none !important; } /* Hamburger only on mobile/tablet */
}

/* MOBILE NAVIGATION (Hamburger & Overlay) */
.mobile-menu-toggle {
  background: #5D4632;
  color: #fff6ed;
  border: none;
  border-radius: 7px;
  font-size: 2.2rem;
  padding: 2px 16px;
  display: none;
  margin: 8px 18px 8px auto;
  z-index: 106;
  transition: background .2s;
}
@media (max-width: 825px) {
  .mobile-menu-toggle {
    display: block;
    position: absolute; top: 7px; right: 1vw;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fff8f2ee;
  box-shadow: 0 10px 100px #5D463266;
  z-index: 120;
  transform: translateX(-110vw);
  transition: transform 0.35s cubic-bezier(.92,.06,.15,1.01);
  display: flex; flex-direction: column; align-items: flex-start;
  padding-top: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute; top: 16px; right: 20px;
  background: none;
  color: #90692c;
  font-size: 2.3rem;
  padding: 0 8px;
  z-index: 121;
  transition: color .2s;
}
.mobile-menu-close:hover { color: #d09d35; }
.mobile-nav {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 22px; padding: 80px 34px 40px 34px;
  font-family: 'Montserrat', sans-serif;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #5D4632;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid #f3e1c5;
  width: 100%;
  transition: color .12s, background .18s;
  border-radius: 3px;
}
.mobile-nav a:active, .mobile-nav a:focus {
  background: #f3e5d1;
}

@media (min-width: 826px) {
  .mobile-menu,
  .mobile-menu-toggle { display: none !important; }
}

/* HERO/MAIN CTA STYLES */
.cta-button {
  background: #C2B8A3;
  color: #5D4632;
  border-radius: 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1.1rem;
  padding: 15px 38px;
  margin-top: 26px;
  box-shadow: 0 2px 16px 0 #b2946d29;
  border: 2px solid #C2B8A3;
  text-align: center;
  transition: background .18s, color .19s, box-shadow .17s;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: #5D4632;
  color: #FFF6ED;
  border-color: #c6a75a;
  box-shadow: 0 6px 29px #4b322213, 0 2px 12px #c6a75a19;
}
.secondary-cta {
  background: none;
  color: #5D4632;
  border: 2px solid #C2B8A3;
  font-size: 1.08rem;
  border-radius: 16px;
  padding: 10px 22px;
  font-weight: 600;
  margin-top: 16px;
  transition: background .16s, color .13s;
}
.secondary-cta:hover, .secondary-cta:focus {
  background: #d3c3a8;
  color: #5D4632;
}

/* FEATURES, CARDS, FLEX-LAYOUTS */
ul, ol {
  /* Ensure lists never run together */
  margin-bottom: 20px;
}
section ul,
.content-wrapper > ul {
  display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 22px;
}
section ul > li {
  background: #fff;
  color: #5D4632;
  border-radius: 24px;
  box-shadow: 0 3px 13px #af927234;
  padding: 24px 22px 18px 24px;
  margin-bottom: 20px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 15px;
  min-width: 200px;
  transition: transform .17s, box-shadow .18s;
  position: relative;
}
section ul > li:hover {
  box-shadow: 0 8px 34px #be9b4859;
  transform: translateY(-3px) scale(1.016);
}
section ul > li img {
  height: 38px; width: 38px;
  margin-bottom: 5px;
  filter: drop-shadow(0 2px 5px #c2b8a310);
}

@media (max-width: 850px) {
  section ul, .features {
    flex-direction: column;
    gap: 14px;
  }
  section ul > li { width: 100%; min-width: unset; }
}

/* CARDS/CARD-CONTAINER (Gallery, Catalog, Service List) */
.card-container, .card-grid, .product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 30px;
}
.card, .product-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px #c2b8a322;
  margin-bottom: 20px;
  position: relative;
  padding: 22px 18px 20px 24px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  min-width: 220px;
  max-width: 330px;
  transition: box-shadow .18s, transform .15s;
}
.card:hover, .product-item:hover {
  box-shadow: 0 7px 32px #c2b8a366;
  transform: scale(1.024);
}
.product-item h3 { margin-top: 0; margin-bottom: 6px; }
.product-item .price { font-family: 'Cormorant Garamond', serif; font-size: 1.22rem; color: #90692c; margin-bottom: 8px; }
.product-item button {
  background: #C2B8A3;
  color: #5D4632;
  padding: 7px 22px;
  border-radius: 20px;
  font-weight: 600;
  border: 1.6px solid #C2B8A3;
  font-size: 1rem;
  margin-top: 4px;
  margin-bottom: 0;
  box-shadow: 0 2px 8px #c2b8a325;
  transition: background .14s, color .14s;
}
.product-item button:hover, .product-item button:focus {
  background: #5D4632;
  color: #fff6ed;
}

/* FILTER BAR (CATALOG) */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-bottom: 14px;
}
.filters ul {
  display: flex; gap: 14px;
  margin-bottom: 0;
}
.filters button {
  background: #fffefb;
  color: #957746;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  border-radius: 18px;
  border: 2px solid #C2B8A3;
  padding: 7px 20px;
  font-size: 1rem;
  transition: background .15s, color .14s;
}
.filters button:hover, .filters button:focus {
  background: #C2B8A3;
  color: #5D4632;
}
.filters input[type="text"] {
  background: #f6efe5;
  border: 1.2px solid #C2B8A3;
  border-radius: 16px;
  padding: 10px 14px;
  font-size: 1rem;
  color: #7A6043;
  margin-left: 18px;
  min-width: 155px;
  transition: border .15s;
}
.filters input[type="text"]:focus {
  border: 1.6px solid #b2946d;
}

@media (max-width: 650px) {
  .filters, .filters ul { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 26px 18px 28px;
  background: #FFF6ED;
  border-radius: 28px;
  box-shadow: 0 3px 16px #c2b8a342;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 580px;
  color: #483319;
  transition: box-shadow .18s, transform .16s;
}
.testimonial-card p {
  font-size: 1.18rem;
  color: #706252;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 2px;
  line-height: 1.5;
}
.testimonial-card strong {
  color: #5D4632;
  font-size: 1.01rem;
}
.testimonial-card > div {
  color: #C2B8A3;
  letter-spacing: .15em;
  font-size: 1.4em;
  margin-top: -6px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 34px #b2946d4c;
  transform: translateY(-2px) scale(1.012);
}

/* FLEX: TEXT-IMAGE-SECTIONS & SPECIAL WRAPPERS */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 18px; }
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-content {
  display: flex; flex-direction: column; justify-content: center;
  gap: 13px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FOOTER STYLE */
footer {
  background: #F6EFE5;
  border-top: 2px solid #C2B8A3;
  padding: 36px 0 24px 0;
  color: #5D4632;
  font-size: 1rem;
  margin-top: auto;
}
.footer-nav {
  display: flex; flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #5D4632;
  font-weight: 600;
  font-size: 1.08rem;
  opacity: 0.84;
  transition: color .13s, opacity .1s, text-decoration .14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  text-decoration: underline;
  color: #8D7028;
  opacity: 1;
}
.footer-info {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 3px;
}
.footer-info a { color: #8D7028; text-decoration: underline; }
.footer-info address { font-style: normal; }

@media (max-width: 768px) {
  .footer-nav {
    gap: 12px;
    font-size: 1rem;
    flex-direction: column;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #fff6ed;
  color: #5D4632;
  box-shadow: 0 -2px 18px #C2B8A355;
  display: flex; flex-direction: row; align-items: center; gap: 22px;
  justify-content: center;
  padding: 24px 6vw 18px 6vw;
  z-index: 9999;
  font-size: 1.03rem;
  animation: slideUp .5s cubic-bezier(.77,.08,.18,.98);
}
@keyframes slideUp {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex; gap: 14px; margin-left: 22px;
}
.cookie-banner button {
  background: #C2B8A3;
  color: #5D4632;
  border: 2px solid #C2B8A3;
  border-radius: 15px;
  padding: 7px 22px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background .12s, color .12s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #5D4632;
  color: #fff6ed;
}
.cookie-banner .cookie-settings {
  background: #FFF6ED;
  color: #C2B8A3;
  border: 2px solid #C2B8A3;
  margin-left: 0;
  padding: 7px 14px;
}
.cookie-banner .cookie-settings:hover {
  color: #5D4632;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column; align-items: flex-start;
    gap: 14px; padding: 18px 2vw;
  }
  .cookie-banner .cookie-buttons { margin-left: 0; gap: 10px; }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(37, 21, 10, 0.32);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .27s cubic-bezier(.7,.1,.23,.97);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-content {
  background: #fff6ed;
  border-radius: 26px;
  box-shadow: 0 10px 40px #b2946d2c;
  padding: 36px 38px;
  max-width: 420px;
  width: 92vw;
  color: #5D4632;
  animation: zoomIn .4s cubic-bezier(.77,.05,.22,.95);
  position: relative;
}
@keyframes zoomIn {
  from { transform: scale(.84); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h2 {
  font-size: 1.33rem;
  margin-bottom: 14px;
  color: #90692c;
}
.cookie-modal-content ul {
  padding-left: 0; display: flex; flex-direction: column; gap: 13px;
  font-size: 1.05rem;
}
.cookie-modal-content label {
  cursor: pointer; font-weight: 600; margin-left: 11px;
}
.cookie-modal-content .cookie-close {
  position: absolute; top: 9px; right: 12px;
  background: none;
  font-size: 1.7rem;
  color: #C2B8A3;
  border: none;
  cursor: pointer;
  transition: color .13s;
}
.cookie-modal-content .cookie-close:hover {
  color: #5D4632;
}
.cookie-modal-content .cookie-modal-actions {
  display: flex; gap: 15px; margin-top: 22px; justify-content: flex-end;
}
.cookie-modal-content button {
  border-radius: 14px;
  padding: 8px 17px;
  background: #C2B8A3;
  border: 2px solid #C2B8A3;
  color: #5D4632;
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
.cookie-modal-content button:hover { background: #5D4632; color: #fff6ed; }
.cookie-modal-content .cookie-tag {
  background: #f6efe5;
  color: #d9c7ad;
  border-radius: 10px;
  font-size: .92rem;
  padding: 3px 9px;
  margin-left: 7px;
}

/* "Creative Artistic" THEME ELEMENTS */
/* -- Vibrant accent splashes and artistic shapes -- */
header:before {
  content: '';
  position: absolute;
  left: -80px; top: -25px;
  width: 165px; height: 60px;
  background: #f6efe5;
  border-top-right-radius: 60px 33px;
  box-shadow: 20px 16px 46px #e7cd9c33;
  z-index: 0;
  opacity: .65;
  pointer-events: none;
}
footer:after {
  content: '';
  position: absolute;
  right: -115px; bottom: 20px;
  width: 210px; height: 70px;
  background: #e8cfa7;
  border-bottom-left-radius: 100px 40px;
  z-index: 0;
  opacity: .12;
  pointer-events: none;
}
section:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: -80px; top: 0;
  width: 140px; height: 38px;
  background: #c2b8a327;
  border-radius: 70px 33px 65px 33px;
  z-index: 1;
  opacity: .12;
  pointer-events: none;
}
section {
  position: relative;
  z-index: 2;
  overflow-x: clip;
}


/* Artistic Details on h1/h2 */
h1, h2 {
  position: relative;
  z-index: 3;
}
h1:after, h2:after {
  content: '';
  display: block;
  height: 9px;
  width: 100px;
  margin-top: 7px;
  border-radius: 8px;
  background: #C2B8A3;
  opacity: .42;
}
h2:after {
  height: 5px;
  width: 55px;
  margin-top: 4px;
}

/* Artistic Button Embellishments */
.cta-button {
  box-shadow: 0 3px 12px #c2b8a347, 0 20px 22px -11px #f6efe585;
  position: relative;
  overflow: visible;
}
.cta-button:before {
  content: '';
  display: block;
  position: absolute;
  left: 10px; top: -16px;
  width: 22px; height: 22px;
  background: #e8cfa7;
  border-radius: 60% 40% 60% 38%;
  opacity: .35;
  z-index: 0;
  pointer-events: none;
}

.secondary-cta:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-left: 9px;
  width: 15px; height: 7px;
  border-radius: 10px 10px 7px 7px;
  background: #f6efe5;
  opacity: .52;
}

/* Micro-interactions & Misc */
a, .cta-button, .secondary-cta, button, .mobile-menu-toggle, .mobile-nav a {
  transition: color .13s, background .13s, border .14s, box-shadow .18s;
}
section ul > li, .product-item, .card {
  transition: box-shadow .18s, transform .16s;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 980px) {
  .container { max-width: 99vw; }
  .card-container, .card-grid, .product-grid { gap: 14px; }
}
@media (max-width: 600px) {
  .product-grid { flex-direction: column; gap: 10px; }
  .card-container, .card-grid { flex-direction: column; gap: 10px; }
  .testimonial-card { min-width: 0; max-width: 97vw; }
}
@media (max-width: 780px) {
  .content-grid { flex-direction: column; gap: 15px; }
}
@media (max-width: 630px) {
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.35rem; }
}

/* ACCESSIBILITY & FOCUS */
a:focus, button:focus, .cta-button:focus, .secondary-cta:focus, input:focus {
  outline: 2.5px solid #C2B8A3;
  outline-offset: 2px;
  z-index: 5;
}

/* UTILITY: Hide visually but keep accessible */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* SCROLLBAR TWEAKS */
::-webkit-scrollbar { width: 9px; background: #f6efe5; }
::-webkit-scrollbar-thumb { background: #c2b8a3b2; border-radius: 9px; }

/* END OF CSS */
