/* =========================
   CSS RESET & BASE STYLES
   ========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: #fff;
  color: #212039;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border: 0;
}
ul,ol {
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}
li {
  margin-bottom: 0.5em;
}
a {
  color: #9B5D26;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #212039;
  outline: none;
}

/* Typography Hierarchy & Artistic Fonts */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #212039;
  font-weight: 700;
  margin-bottom: 0.7em;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.7rem; margin-bottom: 0.6em; }
h2 { font-size: 2rem; margin-bottom: 0.7em; }
h3 { font-size: 1.3rem; margin-bottom: 0.6em; }
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 1.2em;
}

strong,b {
  font-weight: 700;
}

/* =========================
   FLEXBOX LAYOUT HELPERS
   ========================= */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #DEDDE8;
  border-radius: 36px 8px 36px 8px / 8px 36px 8px 36px;
  box-shadow: 0 8px 36px 0 rgba(33,32,57,0.08);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 32px;
    border-radius: 16px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(33,32,57,0.09);
  padding: 28px 22px;
  min-width: 260px;
  flex: 1 1 280px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 32px rgba(155,93,38,0.18);
  transform: translateY(-3px) scale(1.01);
  z-index: 2;
}

.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) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 20px rgba(33,32,57,0.09);
  border-radius: 20px;
  margin-bottom: 20px;
  border-left: 6px solid #9B5D26;
  transition: box-shadow 0.19s;
  max-width: 580px;
}
.testimonial-card p {
  color: #212039;
  font-size: 1.05rem;
  margin-bottom: 0.6em;
  font-style: italic;
}
.testimonial-card strong {
  color: #895012;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
}
.testimonial-card:hover {
  box-shadow: 0 6px 38px 0 rgba(155,93,38,0.16);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: rgba(222,221,232,0.6);
  border-radius: 16px 32px 12px 26px;
  box-shadow: 0 3px 16px rgba(33,32,57,0.06);
  padding: 22px 18px;
  margin-bottom: 20px;
  min-width: 200px;
}


/* =========================
   HEADER & NAVIGATION
   ========================= */
header {
  background: #fff;
  box-shadow: 0 3px 20px 0 rgba(33,32,57,0.04);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
header nav {
  display: flex;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #212039;
  font-size: 1rem;
  padding: 6px 7px;
  border-radius: 6px;
  transition: background 0.15s, color 0.19s;
}
header nav a:hover, header nav a:focus {
  background: #DEDDE8;
  color: #895012;
}
.btn-primary {
  background: #9B5D26;
  color: #fff;
  padding: 12px 28px;
  border-radius: 26px 8px 26px 8px / 8px 26px 8px 26px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.11rem;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 24px rgba(155,93,38,0.12);
  border: none;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.2s, transform 0.13s;
  display: inline-block;
  margin-left: 18px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #212039;
  color: #fff;
  box-shadow: 0 8px 36px rgba(33,32,57,0.17);
  transform: translateY(-2px) scale(1.03);
  outline: none;
}

@media (max-width: 1000px) {
  header nav {
    gap: 12px;
  }
  .btn-primary {
    font-size: 1rem;
    padding: 11px 18px;
    margin-left: 10px;
  }
  header .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* Hide nav & show burger on mobile */
.mobile-menu-toggle {
  display: none;
  background: #DEDDE8;
  color: #212039;
  border: none;
  font-size: 2.1rem;
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 201;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 0px 12px rgba(33, 32, 57, 0.07);
  transition: background 0.14s, box-shadow 0.2s;
  cursor: pointer;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #9B5D26;
  color: #fff;
  outline: none;
}

@media (max-width: 900px) {
  header nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #DEDDE8;
  z-index: 210;
  transform: translateX(-110vw);
  transition: transform 0.35s cubic-bezier(.41,.57,.6,1.01);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 50px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 26px;
  background: #fff;
  color: #9B5D26;
  border: none;
  font-size: 2.1rem;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  box-shadow: 0 1px 8px rgba(33,32,57,0.09);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.14s;
  z-index: 215;
}
.mobile-menu-close:hover {
  background: #9B5D26;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 60px;
  padding: 0 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #212039;
  font-size: 1.25rem;
  padding: 16px 8px 12px 4px;
  border-radius: 8px;
  transition: background 0.15s, color 0.19s;
  margin-right: 12px;
  margin-bottom: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #9B5D26;
  color: #fff;
}

/* Ensure mobile menu covers all content */
@media (max-width: 900px) {
  .mobile-menu {
    padding-top: 38px;
  }
  .mobile-menu-close {
    top: 15px;
    right: 16px;
  }
}

/* =========================
   FOOTER
   ========================= */
footer {
  background: #212039;
  padding: 36px 0 22px 0;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  position: relative;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 38px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
footer nav a {
  color: #fff;
  font-size: 1rem;
  opacity: 0.85;
  text-decoration: underline;
  margin-bottom: 2px;
  transition: color 0.2s, opacity 0.15s;
}
footer nav a:hover {
  color: #9B5D26;
  opacity: 1;
}
.contact-footer {
  font-size: 1rem;
  color: #DEDDE8;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-footer img {
  width: 20px;
  margin-right: 7px;
  vertical-align: middle;
}
@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* =========================
   HOMEPAGE & SPECIAL SECTIONS
   ========================= */
.feature_grid, .values_grid, .collection_grid, .category_grid, .features_grid, .collections_preview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.feature_grid > div, .values_grid > div, .collection_grid > div, .category_grid > div, .features_grid > div, .collections_preview > div, .collection {
  background: #fff;
  border-radius: 20px 8px 20px 8px;
  box-shadow: 0 2px 12px rgba(33,32,57,0.10);
  padding: 26px 18px;
  flex: 1 1 200px;
  min-width: 200px;
  margin-bottom: 24px;
  transition: box-shadow 0.17s, transform 0.11s;
  position: relative;
  border-left: 6px solid #895012;
}
.values_grid > div {
  border-left: 6px solid #212039;
}
.collection_grid > div, .collections_preview > .collection {
  border-left: 6px solid #9B5D26;
  border-radius: 18px 8px 15px 24px;
}
.feature_grid > div:hover,
.values_grid > div:hover,
.collection_grid > div:hover,
.category_grid > div:hover,
.features_grid > div:hover,
.collections_preview > .collection:hover {
  box-shadow: 0 8px 28px rgba(155,93,38,0.13);
  transform: translateY(-3px) scale(1.01);
  z-index: 2;
}
.feature_grid img,
.values_grid img,
.features_grid img {
  height: 49px;
  width: auto;
  margin-bottom: 8px;
}

.collections_preview {
  width: 100%;
  margin-top: 10px;
}
.collections_preview .collection {
  margin-bottom: 0;
}

.customer_ratings {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #212039;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 10px 0 22px 0;
}
.customer_ratings img {
  height: 22px;
}

.faq_teaser {
  background: #DEDDE8;
  border-radius: 14px;
  padding: 14px 19px;
  margin-top: 30px;
  box-shadow: 0 2px 9px rgba(33,32,57,0.06);
  font-style: italic;
}

.static_map {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px 0 8px 0;
}

@media (max-width: 800px) {
  .feature_grid, .values_grid, .collection_grid, .category_grid, .features_grid, .collections_preview {
    flex-direction: column;
    gap: 14px;
  }
  .feature_grid > div, .values_grid > div, .collection_grid > div, .category_grid > div, .features_grid > div, .collections_preview > .collection {
    min-width: 0;
    border-radius: 17px 7px 12px 25px;
    padding: 18px 13px;
  }
}

/* =========================
   BUTTONS, LINKS, MICRO-ANIMATIONS
   ========================= */
button, .btn-primary {
  font-family: 'Montserrat', sans-serif;
  border: none;
  outline: none;
  cursor: pointer;
}
button:disabled, .btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
input, textarea, select {
  border-radius: 10px;
  border: 1px solid #DEDDE8;
  padding: 10px 14px;
  font-size: 1rem;
  margin-bottom: 1rem;
  background: #FAFAFF;
  color: #212039;
  font-family: 'Montserrat', sans-serif;
  width: 100%;
  box-shadow: 0 1px 8px rgba(33,32,57,0.06);
  transition: border-color 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: #9B5D26;
  outline: 2px solid #DEDDE8;
}

/* =========================
   COOKIE CONSENT BANNER
   ========================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #DEDDE8;
  color: #212039;
  padding: 24px 16px 18px 16px;
  box-shadow: 0 -1px 24px rgba(33,32,57,0.13);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 1.1rem;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  padding: 9px 22px;
  border-radius: 22px 7px 22px 7px;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  margin-right: 6px;
  margin-bottom: 2px;
  transition: background 0.17s, color 0.13s, box-shadow 0.19s;
}
.cookie-btn.accept {
  background: #9B5D26;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #212039;
  border: 1.5px solid #9B5D26;
}
.cookie-btn.settings {
  background: #212039;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #212039;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #DEDDE8;
  color: #895012;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #9B5D26;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 8px 15px 8px;
    font-size: 1rem;
  }
}

/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(33,32,57,0.41);
  z-index: 5010;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.23s;
}
.cookie-modal {
  background: #fff;
  padding: 38px 32px 26px 32px;
  border-radius: 24px 6px 24px 6px;
  box-shadow: 0 12px 54px rgba(33,32,57,0.19);
  min-width: 310px;
  max-width: 96vw;
  color: #212039;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
  color: #9B5D26;
  font-size: 1.41rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.cookie-category label {
  font-size: 1.08rem;
}
.cookie-toggle {
  appearance: none;
  width: 42px;
  height: 22px;
  background: #DEDDE8;
  border-radius: 13px;
  border: 1.4px solid #9B5D26;
  outline: none;
  transition: background 0.16s;
  position: relative;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #9B5D26;
  border-color: #212039;
}
.cookie-toggle::after {
  content: '';
  display: block;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 2px;
  transition: left 0.18s;
}
.cookie-toggle:checked::after {
  left: 24px;
}
.cookie-modal .cookie-modal-buttons {
  display: flex;
  gap: 13px;
  margin-top: 22px;
}
.cookie-modal .cookie-btn {
  min-width: 85px;
}
.cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 18px;
  background: #DEDDE8;
  color: #212039;
  border: none;
  font-size: 1.3rem;
  border-radius: 11px;
  width: 32px; height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.13s;
}
.cookie-modal-close:hover {
  background: #9B5D26;
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-modal {
    padding: 22px 10px 18px 10px;
    min-width: 0;
  }
}

/* =========================
   CUSTOM SPACING & EFFECTS
   ========================= */
.section, .card-container > .card, .content-grid > *, .feature_grid > div, .values_grid > div, .collection_grid > div, .category_grid > div, .features_grid > div, .collections_preview > .collection, .testimonial-card, .faq_teaser {
  margin-bottom: 20px;
}
.section:last-child {
  margin-bottom: 0;
}

/* White space under headers and between blocks */
main section + section {
  margin-top: 15px;
}

/* =========================
   ARTISTIC & CREATIVE ACCENTS
   ========================= */
.section {
  /* Subtle painted-style border edge for artistic feel: */
  border: 2.2px dashed #895012;
  background: linear-gradient(95deg, #fff 85%, #DEDDE8 100%);
}
.section:nth-child(2n) {
  border-right: 8px solid #9B5D26;
  background: linear-gradient(265deg, #DEDDE8 80%, #fff 100%);
}
.card, .feature_grid > div, .values_grid > div, .collection_grid > div {
  box-shadow: 0 8px 32px 0 rgba(222,221,232,0.15);
}
/* Artistic circle/marker for h2 */
h2::before {
  content: '';
  display: inline-block;
  width: 18px; height: 18px;
  margin-right: 11px;
  background: #9B5D26;
  border-radius: 50%;
  vertical-align: middle;
  opacity: 0.68;
  margin-bottom: 3px;
}
h2 {
  display: flex;
  align-items: center;
  font-family: 'Playfair Display', serif;
}

/* Artistic underline for h3 */
h3 {
  position: relative;
  padding-bottom: 5px;
}
h3::after {
  content: '';
  display: block;
  width: 38px;
  height: 3px;
  background: #895012;
  border-radius: 2px;
  margin-top: 5px;
  opacity: 0.4;
}

/* Highlight decorative first word for creative accent */
h1 span, h2 span {
  color: #9B5D26;
}

/* Decorative dots/swirls for creative accent (using pseudo-elements) */
.section::after {
  content: '';
  position: absolute;
  bottom: 19px;
  right: 29px;
  width: 42px;
  height: 42px;
  background: url('assets/deco-swirl.svg') no-repeat center/contain;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 900px) {
  .section::after {
    width: 22px;
    height: 22px;
    right: 7px;
    bottom: 8px;
  }
}

/* =========================
   MICRO-INTERACTIONS & TRANSITIONS
   ========================= */
.card,
.feature_grid > div,
.values_grid > div,
.collection_grid > div,
.category_grid > div,
.collections_preview > .collection,
.button, .btn-primary,
.testimonial-card {
  transition: box-shadow 0.16s cubic-bezier(.36,.66,.66,1), transform 0.13s;
}

.card:hover, .feature_grid > div:hover,
.values_grid > div:hover, .collection_grid > div:hover, .category_grid > div:hover,
.collections_preview > .collection:hover,
.testimonial-card:hover {
  box-shadow: 0 12px 36px 0 rgba(155,93,38,0.11), 0 1.5px 8.3px rgba(33,32,57,0.07);
  transform: translateY(-4px) scale(1.016);
  z-index: 5;
}

.btn-primary:active, .cookie-btn:active {
  transform: scale(0.97);
}

/* =========================
   MOBILE RESPONSIVE RULES
   ========================= */
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding-left: 6px;
    padding-right: 6px;
  }
  .footer .container, .content-wrapper {
    padding: 0 !important;
  }
  .section {
    padding: 15px 4px;
    margin-bottom: 18px;
    border-radius: 12px;
  }
}

/* =========================
   SPECIAL CLASSES FOR FORMS/FAQ
   ========================= */
form {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
label {
  font-size: 1rem;
  color: #212039;
  font-weight: 500;
  margin-bottom: 6px;
}

/* FAQ Section Teaser */
.faq_teaser {
  margin-top: 16px;
  font-style: italic;
  font-size: 1.07rem;
  border-left: 5px solid #212039;
  background: #eee9f2;
}

/* ================
   UTILITY CLASSES
   ================ */
.d-none { display: none !important; }
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   PRINT/BROWSER ADJUSTMENTS
   ========================= */
@media print {
  header, .mobile-menu-toggle, .mobile-menu, footer, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
}
