/* 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #3a3125;
  background: #EFE6DD;
  line-height: 1.8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #6D5E4B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #BCA450;
}

ul, ol {
  list-style: none;
  padding-left: 0;
}
strong { font-weight: 700; }
em { font-style: italic; }

/* FONTS ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Playfair+Display:wght@700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #4b3e25;
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: .01em;
}
h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.5rem;
  margin-top: 24px;
}
h3 {
  font-size: 1.18rem;
  margin-top: 20px;
}

p, li, span, a, label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}

/* GENERAL LAYOUT ============================================ */
.container {
  width: 100%;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section {
  padding: 20px 20px;
}

.content-wrapper {
  width: 100%;
  background: #FCF8F3;
  border-radius: 30px;
  box-shadow: 0 4px 24px 0 rgba(109,94,75,0.07);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
  border: 2px solid #EFE6DD;
  position: relative;
}

@media (max-width: 600px) {
  .content-wrapper { padding: 20px 8px; }
}

/* NAVIGATION ============================================ */
header {
  background: #6D5E4B;
  box-shadow: 0 3px 30px 0 rgba(65,57,38,0.09);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 80px;
}
header a img {
  height: 52px;
  width: auto;
  margin-right: 22px;
}
header nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #EFE6DD;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 7px 8px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
header nav a:hover,
header nav a:focus {
  background: #EFE6DD;
  color: #6D5E4B;
}
.primary-cta {
  background: #BCA450;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-left: 18px;
  box-shadow: 0 3px 18px 0 rgba(188,164,80,0.11);
  transition: background .2s, color .2s, box-shadow .2s;
  border: none;
  text-shadow: 0 2px 6px rgba(77,77,77,0.03);
}
.primary-cta:hover,
.primary-cta:focus {
  background: #8f7526;
  color: #fff !important;
  box-shadow: 0 8px 26px 0 rgba(188,164,80,0.19);
}

.mobile-menu-toggle {
  display: none;
}

@media (max-width: 992px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #FFF;
    font-size: 2rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
  }
}

/* MOBILE MENU ============================================ */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(239,230,221,0.98);
  z-index: 999;
  transition: transform 0.45s cubic-bezier(.8,0,.18,1);
  transform: translateX(-100vw);
  pointer-events: none;
  opacity: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 0 0;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #6D5E4B;
  cursor: pointer;
  z-index: 2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 40px 32px 16px 32px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #6D5E4B;
  padding: 14px 8px;
  width: 100%;
  border-radius: 10px;
  transition: background .18s, color .18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #BCA450;
  color: #fff;
}

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

/* MAIN & SECTIONS ============================================ */
main {
  min-height: 56vh;
  background: transparent;
  margin-top: 0;
}
section {
  width: 100%;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
}
@media (max-width: 600px) {
  section {
    padding: 28px 3vw;
  }
}

/* CARD CONTAINER FLEX STRUCTURES ============================ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 2px 12px rgba(160,139,108,0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 22px 20px 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 240px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.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;
    gap: 18px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #EFE6DD;
  border-radius: 22px;
  box-shadow: 0 2px 11px rgba(109,94,75,0.07);
  min-width: 200px;
  max-width: 700px;
  border: 1.5px solid #D4C1A3;
  color: #422D18;
}
.testimonial-card p {
  font-size: 1.09rem;
  font-style: italic;
}
.testimonial-card span {
  font-size: 1rem;
  font-weight: 700;
  color: #8f7526;
}
.ratings-summary {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #BCA450;
}

/* FEATURE ITEMS & ICONED LISTS ====================== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 12px;
  min-height: 40px;
}
ul li img {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

/* BUTTONS & CTA ============================================ */
button, .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  border: none;
  border-radius: 13px;
  padding: 11px 26px;
  background: #BCA450;
  color: #fff;
  cursor: pointer;
  margin: 0 10px 0 0;
  box-shadow: 0 3px 14px 0 rgba(188,164,80,0.11);
  transition: background 0.23s, color 0.18s, transform .16s;
  position: relative;
}
button:hover, button:focus,
.btn:hover, .btn:focus {
  background: #8f7526;
  color: #fff;
  outline: none;
  transform: translateY(-2px) scale(1.035);
}

/* FOOTER ============================================ */
footer {
  background: #6D5E4B;
  color: #EFE6DD;
  padding: 54px 0 28px 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer nav a {
  color: #EFE6DD;
  font-size: 1.06rem;
  transition: color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #BCA450;
}
.footer-logo img {
  height: 52px;
  margin-bottom: 14px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.footer-contact img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
@media (max-width: 950px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .footer-logo { margin-bottom: 12px; }
}
@media (max-width: 599px) {
  footer {
    padding: 32px 0 18px 0;
  }
  .footer-logo img {
    height: 36px;
  }
}

/* RESPONSIVE TYPOGRAPHY & LAYOUT BREAKPOINTS =============== */
@media (max-width: 768px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
  .primary-cta,
  button, .btn { font-size: 1rem; padding: 10px 19px; }
  .card { min-width: 140px; }
  .ratings-summary { font-size: 1rem; }
}
@media (max-width: 600px) {
  .container {
    padding: 0 7px;
  }
  .content-wrapper { padding: 12px 3px; }
  .section { padding: 22px 0; }
}

/* MICRO-INTERACTIONS & TRANSITIONS ===================== */
a, button, .primary-cta, .card, .testimonial-card {
  transition: box-shadow .18s, color .18s, background .21s, transform .19s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 26px 0 rgba(188,164,80,0.14);
  transform: translateY(-3px) scale(1.015);
}

/* CREATIVE / ARTISTIC DETAILS & ACCENTS ================ */
.content-wrapper:before {
  content: '';
  position: absolute;
  left: -18px;
  top: -18px;
  width: 40px;
  height: 40px;
  background: #DEB97F;
  opacity: 0.14;
  border-radius: 50%;
  filter: blur(1px);
  z-index: 0;
  pointer-events: none;
}
.content-wrapper:after {
  content: '';
  position: absolute;
  right: -16px;
  bottom: -14px;
  width: 22px;
  height: 22px;
  background: #BCA450;
  border-radius: 60% 45% 20% 65%;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 700px) {
  .content-wrapper:before, .content-wrapper:after { display: none; }
}

/* COOKIE BANNER ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  max-width: 100vw;
  background: #CDC2B2;
  color: #3a3125;
  z-index: 1300;
  box-shadow: 0 -2px 16px rgba(137,110,45,0.18);
  padding: 24px 13px 13px 13px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  font-size: 1rem;
  transition: transform 0.4s;
}
.cookie-banner.hide {
  display: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: #6D5E4B;
  color: #EFE6DD;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 22px;
  border: none;
  margin: 0;
  padding: 10px 18px;
  box-shadow: 0 2px 8px rgba(109,94,75,0.11);
}
.cookie-banner .accept {
  background: #BCA450;
  color: #fff;
}
.cookie-banner .reject {
  background: #cd6155;
  color: #fff;
}
.cookie-banner .settings {
  background: #7e7167;
  color: #fff;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  filter: brightness(1.06) contrast(1.1);
  transform: scale(1.04);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.96rem;
    padding: 16px 5px 10px 5px;
  }
  .cookie-banner .cookie-buttons {
    gap: 7px;
  }
}

/* COOKIE MODAL ============================================ */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(53,49,41,0.56);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  padding: 36px 32px 22px 32px;
  border-radius: 19px;
  width: 95vw;
  max-width: 420px;
  box-shadow: 0 2px 32px 0 rgba(188,164,80,0.21);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal h2 {
  font-family: 'Playfair Display', serif;
  color: #6D5E4B;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cookie-modal .toggle-switch {
  display: flex;
  align-items: center;
  gap: 11px;
}
.toggle-switch input[type="checkbox"] {
  width: 36px; height: 20px;
  -webkit-appearance: none;
  appearance: none;
  background: #EFE6DD;
  border-radius: 12px;
  position: relative;
  outline: none;
  transition: background .2s;
  box-shadow: inset 0 1px 8px #CDC2B2;
}
.toggle-switch input[type="checkbox"]:checked {
  background: #BCA450;
}
.toggle-switch input[type="checkbox"]:before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: transform .22s;
  box-shadow: 0 1px 3px rgba(0,0,0,.12);
}
.toggle-switch input[type="checkbox"]:checked:before {
  transform: translateX(16px);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 11px; right: 17px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #7e7167;
  cursor: pointer;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 18px 6px 10px 8px;
    width: 99vw;
    max-width: 99vw;
  }
}

/* FORMS ============================================ */
.contact-form {
  background: #f7f4f1;
  border-radius: 12px;
  margin-top: 16px;
  padding: 19px 15px;
  color: #54483A;
  font-size: 1.02rem;
  min-width: 180px;
}
@media (max-width:700px) {
  .contact-form { padding: 3vw 4vw; }
}

/* ARTISTIC: SHAPES, SPLASH, UNDERLINES =============== */
h1, h2 {
  position: relative;
}
h1:after, h2:after {
  content: '';
  display: block;
  margin: 8px 0 0 0;
  width: 60px;
  height: 5px;
  background: #BCA450;
  border-radius: 4px;
  opacity: 0.62;
}

/* ARTISTIC ACCENT for links */
a:not(.primary-cta):hover:after, a:not(.primary-cta):focus:after {
  content: '';
  display: inline-block;
  background: #BCA450;
  width: 48px;
  height: 3px;
  border-radius: 2px;
  margin-left: 9px;
  vertical-align: middle;
  opacity: .4;
  transition: width .2s;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-thumb {
  background: #CDC2B2;
  border-radius: 12px;
}
::-webkit-scrollbar-track {
  background: #EFE6DD;
  border-radius: 12px;
}

/* SELECTION */
::selection { background: #BCA450; color: #fff; }

/* ACCESSIBILITY: FOCUS HIGHLIGHT */
:focus-visible {
  outline: 2.5px solid #BCA450;
  outline-offset: 1.5px;
}

/* ANIMATION UTILITIES ============================= */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s forwards;
}
@keyframes fadeIn {
  to { opacity: 1; }
}
.slide-in-left {
  opacity: 0;
  transform: translateX(-24vw);
  animation: slideInLeft 0.88s 0.2s cubic-bezier(.7,-0.3,.63,1.74) forwards;
}
@keyframes slideInLeft {
  to { opacity: 1; transform: translateX(0); }
}

/* CUSTOM UTILITIES ============================= */
.hide { display: none !important; }
.nowrap { white-space: nowrap; }

/* BRAND VIBE/ARTISTIC COLOR SQUARES as you scroll */
@media (min-width: 770px) {
  main:before {
    content: '';
    position: fixed;
    top: 28vh;
    left: 0;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #BCA450;
    opacity: 0.065;
    z-index: 0;
    box-shadow: 0 8px 30px #BCA45033;
  }
}

/* END ======================================== */