/* RESET & NORMALIZE */
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F7F4EF;
  color: #3F462A;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
* {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #3F462A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C2B280;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
li {
  margin-bottom: 12px;
}
strong, b {
  font-weight: bold;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  color: #3F462A;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

p {
  margin-bottom: 14px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #3F462A;
  font-size: 1rem;
}

.text-section {
  font-size: 1.125rem;
  color: #3F462A;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  background: transparent;
  border-radius: 16px;
}

/* ARTISTIC COLOR BLOCKS BACKGROUND (hero and CTA) */
main > section:first-of-type .container {
  background: #fffbe6;
  border-radius: 24px;
  box-shadow: 0 6px 36px 0 rgba(63,70,42,0.13);
  position: relative;
}
main > section:last-of-type .container {
  background: #EAF7F0;
  border-radius: 24px;
  box-shadow: 0 6px 25px 0 rgba(63,70,42,0.07);
  position: relative;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 3px solid #C2B280;
  box-shadow: 0 4px 22px 0 rgba(60,58,43,0.06);
  z-index: 400;
}
header .container {
  min-height: 76px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header img {
  height: 46px;
  width: auto;
  margin-right: 28px;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
nav a {
  font-size: 1rem;
  font-family: 'Merriweather', serif;
  font-weight: 600;
  color: #3F462A;
  padding: 7px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
nav a:hover, nav a:focus {
  background: #C2B280;
  color: #fff;
}

/* PRIMARY CTA BUTTON */
.cta-primary {
  background: #3F462A;
  color: #fff;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 28px;
  box-shadow: 0 2px 10px 0 rgba(63,70,42,0.12);
  margin-left: 14px;
  transition: background 0.17s, box-shadow 0.23s, color 0.13s, transform 0.18s;
  border: none;
  outline: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: #C2B280;
  color: #3F462A;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px 0 rgba(63,70,42,0.16);
}

.mobile-menu-toggle {
  background: #C2B280;
  color: #fff;
  font-size: 2rem;
  border: none;
  padding: 6px 20px 6px 16px;
  border-radius: 50%;
  cursor: pointer;
  margin-left: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.26s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #3F462A;
  color: #fff;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(47,50,35,0.93);
  z-index: 1000 !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  transition: transform 0.46s cubic-bezier(.77,.24,.31,1.02), opacity 0.33s;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: #C2B280;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 50%;
  width: 48px; height: 48px;
  margin: 18px 0 0 18px;
  align-self: flex-start;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #3F462A;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  margin-left: 40px;
  gap: 18px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.4rem;
  background: transparent;
  border-radius: 8px;
  padding: 12px 20px;
  transition: background 0.21s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(194,178,128,0.2);
  color: #C2B280;
}

@media (max-width: 1024px) {
  nav {
    gap: 13px;
  }
  header .container {
    gap: 10px;
  }
  .cta-primary {
    padding: 10px 18px;
    margin-left: 7px;
  }
  header img {
    height: 40px;
    margin-right: 11px; 
  }
}
@media (max-width: 900px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* CONTENT SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  section {
    padding: 28px 7px;
    margin-bottom: 34px;
  }
  .container {
    padding: 0 7px;
  }
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 14px;
}
.feature {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(63,70,42,0.08);
  padding: 28px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 300px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  transition: transform .19s, box-shadow .19s;
}
.feature:hover {
  box-shadow: 0 8px 32px 0 rgba(63,70,42,0.15);
  transform: translateY(-5px) scale(1.035);
}
.feature img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
.feature h3 {
  color: #C2B280;
  font-family: 'Merriweather', serif;
}
.feature p {
  color: #3F462A;
}

/* BUTTONS & INTERACTIVES */
button, .cta-primary, .mobile-menu-toggle, .mobile-menu-close {
  font-family: 'Merriweather', serif;
  cursor: pointer;
  border: none;
}
button:focus-visible, .cta-primary:focus-visible {
  outline: 3px solid #3F462A;
}

/* ARTISTIC SECTION DECOR */
.section::before {
  content: '';
  display: block;
  position: absolute;
  top: -24px; left: 24px;
  width: 58px; height: 58px;
  background: #C2B280;
  opacity: 0.13;
  border-radius: 38% 62% 45% 55% / 57% 41% 59% 43%;
  z-index: 0;
  pointer-events: none;
}
.section:nth-child(2n)::before {
  background: #3F462A;
  left: unset;
  right: 24px;
  opacity: 0.09;
}

/* CARD CONTAINERS (if any) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(63,70,42,0.08);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* Content grid / text-image section (no images in official HTML, but for future-proof) */
.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, .features-grid, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

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

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  align-items: stretch;
}
.service-list .text-section {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 11px 0 rgba(63,70,42,0.09);
  padding: 18px 14px;
  margin-bottom: 20px;
  min-width: 230px;
  transition: box-shadow .19s, transform .15s;
}
.service-list .text-section:hover {
  box-shadow: 0 8px 30px 0 rgba(194,178,128,0.17);
  transform: translateY(-2px) scale(1.025);
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 4px 19px 0 rgba(63,70,42,0.10);
  border-left: 5px solid #C2B280;
  max-width: 600px;
  color: #3F462A;
  font-size: 1.07rem;
  position: relative;
  z-index: 2;
}
.testimonial-card .stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3px;
}
.testimonial-card strong {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #3F462A;
}

/* HERO ONLY */
main > section:first-of-type .content-wrapper {
  text-align: left;
  align-items: flex-start;
  justify-content: center;
  min-height: 320px;
  gap: 20px;
}

/* FOOTER */
footer {
  background: #3F462A;
  color: #fff;
  padding: 44px 0 24px 0;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  gap: 38px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #C2B280;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: 600;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
  background: rgba(194,178,128,0.2);
  border-radius: 7px;
}
footer img {
  height: 48px;
  width: auto;
  margin-bottom: 7px;
  margin-top: 2px;
}
footer .text-section p {
  color: #fff;
  font-size: .95rem;
  margin-bottom: 5px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #3F462A;
  color: #fff;
  padding: 20px 14px 20px 18px;
  border-radius: 15px 15px 0 0;
  box-shadow: 0 -2px 22px 0 rgba(63,70,42,0.19);
  z-index: 1200;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 1rem;
  animation: cookieSlideIn 0.6s cubic-bezier(.68,.1,.32,1.03);
}
@keyframes cookieSlideIn {
  from { transform: translateY(70px); opacity: 0.01; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  font-size: 1rem;
  border-radius: 34px;
  border: none;
  padding: 8px 24px;
  background: #C2B280;
  color: #3F462A;
  font-family: 'Merriweather', serif;
  font-weight: 600;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.21s, color 0.14s, box-shadow .15s;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #fff;
  color: #3F462A;
  box-shadow: 0 0 0 2px #C2B280;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: #3F462A;
  border: 1.5px solid #C2B280;
  padding: 8px 16px;
  font-size: 1rem;
  border-radius: 28px;
}
.cookie-banner .cookie-settings:hover,
.cookie-banner .cookie-settings:focus {
  background: #C2B280;
  color: #fff;
  border-color: #fff;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 16px 6px 16px 10px;
    font-size: .97rem;
  }
  .cookie-banner .cookie-buttons {
    gap: 10px;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1300;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(47,50,35,0.75);
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
  animation: fadeIn .25s;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity:1; }
}
.cookie-modal {
  background: #fff;
  color: #3F462A;
  border-radius: 16px;
  box-shadow: 0 10px 50px rgba(63,70,42,0.13);
  max-width: 430px;
  width: 96vw;
  padding: 36px 22px 26px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #3F462A;
  font-family: 'Merriweather', serif;
  margin-bottom: 7px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
}
.cookie-modal label {
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #3F462A;
}
.cookie-modal input[type='checkbox'] {
  width: 20px;
  height: 20px;
  accent-color: #C2B280;
  cursor: pointer;
}
.cookie-modal .cookie-modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px; right: 14px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #3F462A;
  cursor: pointer;
  transition: color 0.18s;
  padding: 4px 9px;
  border-radius: 50%;
}
.cookie-modal .close-modal:hover {
  color: #C2B280;
  background: #f2f0e9;
}
.cookie-modal .cookie-modal-buttons button {
  font-size: 1rem;
  border-radius: 28px;
  padding: 6px 18px;
  border: none;
  font-family: 'Merriweather', serif;
  font-weight: 600;
  background: #3F462A;
  color: #fff;
  transition: background 0.18s, color 0.17s, box-shadow .12s;
}
.cookie-modal .cookie-modal-buttons button:hover,
.cookie-modal .cookie-modal-buttons button:focus {
  background: #C2B280;
  color: #3F462A;
  box-shadow: 0 0 0 2px #3F462A;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 600px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.25rem;}
  h3 {font-size: 1rem;}
  p, .content-wrapper, .text-section, .testimonial-card {
    font-size: .97rem;
  }
  .feature, .card {
    min-width: 140px;
    max-width: 100%;
    padding: 17px 10px;
  }
  .cookie-modal { padding: 22px 8px 18px 8px; }
}

/* MICRO-INTERACTIONS & ANIMATIONS */
.cta-primary, .feature, .testimonial-card, .service-list .text-section, .card {
  transition: box-shadow 0.16s, transform 0.18s;
}
.card:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 9px 32px 0 rgba(63,70,42,0.14);
}
input, select, textarea {
  font-family: 'Open Sans', Arial, sans-serif;
}

/* UTILS */
.mt-1 {margin-top: 8px;}
.mt-2 {margin-top: 16px;}
.mt-3 {margin-top: 24px;}
.mb-1 {margin-bottom: 8px;}
.mb-2 {margin-bottom: 16px;}
.mb-3 {margin-bottom: 24px;}
.text-center {text-align: center;}

/* CUSTOM ARTISTIC TYPO */
h1, h2, h3 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  letter-spacing: -0.016em;
}
h1 {
  text-shadow: 0 2px 14px rgba(194,178,128,0.10);
  background: linear-gradient(90deg,#C2B280 0%,#3F462A 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ARTISTIC LIST ICONS */
ul li img, .text-section img {
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  filter: drop-shadow(0 0 2px #C2B28022);
}

/* Z-INDEX LAYERING: DO NOT OVERLAP */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay { z-index: inherit; }

/* END OF CSS */
