/* CSS 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  box-sizing: border-box;
}
body {
  background: #F2F0EA;
  color: #23292E;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #23292E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #9E8700;
  outline: none;
}

/* BRAND FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #23292E;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.005em;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.13;
}
h2 {
  font-size: 2rem;
  line-height: 1.18;
}
h3 {
  font-size: 1.375rem;
  line-height: 1.22;
}
h4 {
  font-size: 1.15rem;
}
h5, h6 {
  font-size: 1rem;
}
p, ul, ol {
  margin-bottom: 20px;
}
strong {
  font-weight: 700;
}

/* COLORS & LUXURY PALETTE */
:root {
  --primary: #23292E;
  --secondary: #C8BBA7;
  --accent: #F2F0EA;
  --gold: #BFA059;
  --gold-hover: #98760a;
  --white: #fff;
  --dark-text: #222;
}

/* GLOBAL CONTAINERS & SPACING */
.container {
  width: 100%;
  padding: 0 24px;
  margin: 0 auto;
  max-width: 1200px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 3px 18px 0 rgba(35,41,46,0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 28px;
  transition: box-shadow 0.25s;
  border: 1px solid var(--secondary);
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(191,160,89,0.16), 0 1.5px 6px 0 rgba(23,20,5,0.05);
  border-color: var(--gold);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--accent);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(200,187,167,0.08);
  border-left: 4px solid var(--gold);
  color: var(--dark-text);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* LISTS AND UL LI */
ul, ol {
  padding-left: 24px;
}
ul li, ol li {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* BUTTONS & CTA */
.cta-btn, .mobile-nav a, .cookie-banner button, .cookie-category-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: linear-gradient(90deg, var(--gold) 65%, var(--secondary) 100%);
  color: var(--primary);
  font-size: 1.13rem;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: 12px 32px;
  margin: 6px 0;
  cursor: pointer;
  transition: background 0.24s, color 0.18s, box-shadow 0.18s, border-color 0.21s;
  box-shadow: 0 2px 8px 0 rgba(185,150,40,0.10);
  border: 1.5px solid var(--gold);
}
.cta-btn:hover, .cookie-banner button:hover, .cookie-category-toggle:focus, .mobile-nav a:active {
  background: var(--gold-hover);
  color: var(--white);
  box-shadow: 0 4px 16px 0 rgba(185,160,40,0.19);
  outline: none;
}

/* HEADER & NAVIGATION */
header {
  background: var(--white);
  border-bottom: 1.5px solid var(--secondary);
  position: relative;
  z-index: 1002;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0 20px 0;
}
.main-nav a img {
  display: block;
  width: 140px;
  height: auto;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0 0 0 40px;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: block;
  padding: 6px 0px;
  position: relative;
  color: var(--primary);
  transition: color 0.16s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus, .main-nav ul li a[aria-current]{
  color: var(--gold);
}
.main-nav .cta-btn {
  margin-left: 38px;
  font-size: 1rem;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 10px 0 rgba(191,160,89,0.11);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  padding: 10px 16px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 22px;
  z-index: 1004;
  transition: color 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--gold);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,41,46,0.92);
  width: 100vw;
  height: 100vh;
  z-index: 1003;
  transform: translateX(100%);
  transition: transform 0.47s cubic-bezier(.39,1.54,.37,1.54);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  padding: 18px 22px 12px 0;
  cursor: pointer;
  align-self: flex-end;
  z-index: 1010;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  margin-top: 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  color: var(--white);
  width: 100%;
  padding: 12px 32px;
  border-radius: 20px;
  transition: background 0.18s, color 0.16s;
  font-weight: 600;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--gold);
  color: var(--primary) !important;
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(120deg, var(--accent) 65%, var(--secondary) 100%);
  min-height: 430px;
  padding: 60px 0 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1.5px solid var(--secondary);
}
.hero .content-wrapper {
  max-width: 630px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.18rem;
  margin-bottom: 32px;
  color: var(--primary);
}
.hero .cta-btn {
  border-width: 2px;
  font-size: 1.19rem;
}

/* --- FEATURES / ABOUT / TEAM --- */
.features ul,
.values ul,
.services ul,
.catalog-overview ul,
.team ul,
.text-section ul,
.catalogue-preview ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  list-style: none;
  margin: 30px 0 0 0;
  padding: 0;
}
.features ul li,
.values ul li,
.services ul li,
.catalog-overview ul li,
.team ul li,
.text-section ul li,
.catalogue-preview ul li {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(191,160,89,0.07);
  border: 1px solid var(--secondary);
  flex: 1 1 260px;
  min-width: 220px;
  padding: 28px 22px 24px 22px;
  margin-bottom: 18px;
  position: relative;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.features ul li:hover, .services ul li:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px 0 rgba(191,160,89,0.13);
}
.features ul img,
.team ul img {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
}
.values ul li, .team ul li {
  background: var(--accent);
  border: none;
  box-shadow: 0 2px 8px 0 rgba(200,187,167,0.05);
}
.team ul {
  gap: 24px;
}

/* PRODUCT CATALOGUE */
.product-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
  justify-content: flex-start;
}
.product-card {
  flex: 1 1 250px;
  min-width: 200px;
  background: var(--white);
  border: 1.5px solid var(--secondary);
  border-radius: 14px;
  padding: 32px 22px;
  margin-bottom: 20px;
  box-shadow: 0 3px 18px 0 rgba(35,41,46,0.06);
  transition: box-shadow 0.23s, border-color 0.18s;
  position: relative;
}
.product-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 22px 0 rgba(191,160,89,0.18);
}
.product-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.product-card p {
  color: var(--primary);
  font-size: 1rem;
  line-height: 1.6;
}

/* --- SERVICES PAGE --- */
.services ul {
  flex-direction: column;
  gap: 24px;
}
.services ul li {
  padding: 28px 22px;
}
.services ul li h2 {
  font-size: 1.32rem;
  margin-bottom: 10px;
}
.services ul li h2 span {
  font-size: 0.99rem;
  font-weight: 500;
  color: var(--gold);
  margin-left: 8px;
}

/* --- CATALOGUE PREVIEW --- */
.catalogue-preview ul {
  gap: 24px;
  margin: 18px 0 26px 0;
}
.catalogue-preview ul li h3 {
  font-size: 1.18rem;
  margin-bottom: 6px;
}
.catalogue-preview ul li {
  padding: 22px 18px;
}

/* --- CTA SECTIONS --- */
.contact-cta .cta-btn, .cta-section .cta-btn {
  margin-top: 16px;
}
.cta-section {
  background: var(--accent);
  border-radius: 15px;
  border: 1.2px solid var(--secondary);
  margin-bottom: 54px;
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: var(--white);
  margin-top: 40px;
  border-top: 1.5px solid var(--secondary);
  padding: 40px 0 22px 0;
  position: relative;
  z-index: 501;
}
.footer-nav, .footer-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 36px;
  margin-bottom: 18px;
}
.footer-nav img {
  width: 55px;
  height: auto;
  margin-right: 18px;
}
.footer-nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav ul li a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.16s;
}
.footer-nav ul li a:hover, .footer-nav ul li a:focus {
  color: var(--gold);
}
.footer-info {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.96rem;
  color: var(--secondary);
  padding-left: 8px;
}
.footer-info a {
  color: var(--gold);
  font-weight: 500;
  text-decoration: underline;
}
.footer-info a:hover {
  color: var(--white);
}

/* --- TESTIMONIALS --- */
.testimonials .testimonial-card,
section.testimonials .testimonial-card {
  background: var(--accent);
  color: var(--dark-text);
  border-left: 4px solid var(--gold);
  font-size: 1.06rem;
  margin-bottom: 22px;
  box-shadow: 0 2px 10px 0 rgba(191,160,89,0.08);
  word-break: break-word;
  transition: box-shadow 0.16s;
}
.testimonial-card blockquote {
  margin-bottom: 8px;
  font-style: italic;
  font-weight: 500;
}
.testimonial-card footer {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
}

/* --- LEGAL CONTENT / POLICIES --- */
.legal-content {
  background: var(--accent);
  padding: 48px 24px;
  border-radius: 20px;
  border: 1px solid var(--secondary);
  margin-bottom: 50px;
}
.legal-content .text-section {
  margin-top: 10px;
  font-size: 1.08rem;
}

/* --- SPECIAL PAGES --- */
.confirmation .text-section {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.confirmation .cta-btn {
  margin: 25px 0 0 0;
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 3005;
  background: var(--secondary);
  color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px 24px 16px;
  box-shadow: 0 -5px 28px 0 rgba(35,41,46,0.13);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  transition: transform 0.23s cubic-bezier(.47,1.64,.41,0.97);
  gap: 18px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}
.cookie-banner button {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 9px 28px;
  border-radius: 22px;
  margin: 0 7px 2px 0;
  border: 1.5px solid var(--gold);
  background: var(--gold);
  color: var(--primary);
  transition: background 0.18s, color 0.19s;
  cursor: pointer;
  box-shadow: 0 1.5px 6px 0 rgba(191,160,89,0.07);
}
.cookie-banner button.cookie-settings {
  background: var(--white);
  color: var(--primary);
  border-color: var(--secondary);
}
.cookie-banner button.cookie-settings:hover {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner button:active, .cookie-banner button:focus {
  outline: none;
  background: var(--gold-hover);
  color: var(--white);
}

/* COOKIE MODAL OVERLAY & BOX */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 3100;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(35,41,46,0.73);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: var(--accent);
  padding: 36px 28px 24px 28px;
  border-radius: 18px;
  box-shadow: 0 4px 22px 0 rgba(191,160,89,0.18);
  max-width: 420px;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  color: var(--primary);
  animation: cookieFadeIn 0.5s cubic-bezier(.71,-0.17,.61,1.22);
}
@keyframes cookieFadeIn {
  0% { opacity: 0; transform: translateY(48px) scale(0.97); }
  80% { opacity: 1; transform: translateY(-7px) scale(1.01); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h3 {
  font-size: 1.16rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 600;
}
.cookie-categories {
  margin: 15px 0 8px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--secondary);
  padding: 12px 18px;
  border-radius: 11px;
  font-size: 1rem;
}
.cookie-category.essential {
  color: var(--gold-hover);
  background: var(--accent);
  font-weight: 600;
}
.cookie-category-toggle {
  background: var(--gold);
  color: var(--primary);
  border: 1.5px solid var(--gold-hover);
  border-radius: 16px;
  padding: 4px 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, color 0.14s;
}
.cookie-category-toggle.active, .cookie-category-toggle:focus {
  background: var(--gold-hover);
  color: var(--white);
}
.cookie-modal .modal-btns {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-modal-close {
  position: absolute;
  right: 11px; top: 5px;
  background: none;
  border: none;
  color: var(--gold-hover);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 7px 9px;
}
.cookie-modal-close:hover {
  color: var(--primary);
}


/* --- FORMS (if needed) --- */
input, textarea, select {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  background: var(--accent);
  color: var(--primary);
  border: 1.2px solid var(--secondary);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 16px;
  width: 100%;
  transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  outline: none;
}
button, input[type="submit"] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* --- MISC / DETAILS --- */
::-webkit-scrollbar {
  width: 12px;
  background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

hr {
  border: none;
  border-top: 1px solid var(--secondary);
  margin: 40px 0 30px 0;
}

/* --- RESPONSIVE LAYOUT --- */
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width: 900px) {
  .main-nav ul {
    gap: 18px;
    margin-left: 10px;
  }
  .footer-nav ul {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .main-nav ul, .main-nav .cta-btn {
    display: none;
  }
  .main-nav {
    justify-content: flex-start;
    padding: 24px 0 12px 0;
  }
  .main-nav a img {
    width: 110px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding: 0 11px;
  }
  .section {
    padding: 32px 0px;
    margin-bottom: 32px;
  }
  .hero {
    min-height: 250px;
    padding: 34px 0 34px 0;
  }
  .hero h1 {
    font-size: 1.82rem;
  }
  .features ul,
  .values ul,
  .services ul,
  .catalog-overview ul,
  .team ul,
  .text-section ul, .catalogue-preview ul {
    flex-direction: column;
    gap: 18px;
  }
  .features ul li,
  .values ul li,
  .services ul li,
  .catalog-overview ul li,
  .team ul li,
  .text-section ul li,
  .catalogue-preview ul li {
    min-width: 0;
    padding: 18px 10px 18px 12px;
  }
  .product-cards {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    padding: 12px;
  }
  .footer-nav, .footer-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
  }
  .legal-content {
    border-radius: 8px;
    padding: 28px 8px;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  .hero {
    padding: 18px 0;
  }
  h1 {
    font-size: 1.39rem;
  }
  h2 {
    font-size: 1.11rem;
  }
  .container {
    padding: 0 5px;
  }
  .cta-btn, .mobile-nav a {
    padding: 11px 20px;
    font-size: 1rem;
  }
  .cookie-modal {
    padding: 18px 6px 18px 11px;
    max-width: 99vw;
    min-width: 0;
  }
  .cookie-banner {
    padding: 16px 8px 16px 8px;
  }
}

/* --- TRANSITIONS & MICRO-INTERACTIONS --- */
.card, .product-card, .testimonial-card, .cta-btn, .cookie-banner, .cookie-modal, .features ul li, .services ul li {
  transition: box-shadow 0.23s, border-color 0.18s, background 0.2s, color 0.17s;
}
.cta-btn, .mobile-nav a, .cookie-banner button, .cookie-modal button, .cookie-category-toggle {
  transition: background 0.19s, color 0.14s, box-shadow 0.17s;
}


/* --- UTILITY CLASSES --- */
.hide {
  display: none !important;
}

/* END CSS */
