/* ========================================================== */
/*           CSS RESET & BASE NORMALIZE - MOBILE FIRST        */
/* ========================================================== */
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;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F4F1ED;
  color: #222233;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  font-weight: 400;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  padding-left: 1.2em;
}
a {
  color: #222233;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #B8A16A;
  outline-offset: 2px;
}
a:hover {
  color: #B8A16A;
  text-decoration: underline;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #222233;
  margin-bottom: 16px;
  line-height: 1.13;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  font-weight: 700;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  font-weight: 700;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-weight: 600;
}
h4 {
  font-size: 1.12rem;
  margin-bottom: 8px;
  font-weight: 600;
}
@media (min-width: 600px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.3rem; }
}

p, li {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #222233;
  font-size: 1rem;
}
strong {
  font-weight: 700;
}
.subheadline {
  font-size: 1.25rem;
  color: #B8A16A;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
blockquote {
  font-family: 'Playfair Display', serif;
  color: #222233;
  font-weight: 700;
  font-size: 1.13rem;
  border-left: 4px solid #B8A16A;
  padding-left: 18px;
  margin-bottom: 10px;
}

/* ========================================================== */
/*                  GLOBAL LAYOUT CONTAINERS                  */
/* ========================================================== */
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  align-items: flex-start;
  margin-bottom: 18px;
}

/* ========================================================== */
/*                  HEADER & NAVIGATION                       */
/* ========================================================== */
header {
  background: #fff;
  color: #222233;
  box-shadow: 0 3px 10px rgba(34,34,51,0.06);
  position: relative;
  z-index: 110;
}
header .container {
  min-height: 70px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo {
  display: flex;
  align-items: center;
  height: 38px;
  margin-right: 24px;
}
.logo img {
  height: 38px;
  width: auto;
}
.main-nav {
  display: none;
  flex-direction: row;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 0;
  color: #222233;
  border-bottom: 2px solid transparent;
  transition: border 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
  color: #B8A16A;
  border-bottom: 2px solid #B8A16A;
}
.cta {
  background: #222233;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 12px 30px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 16px rgba(34,34,51,0.09);
  margin-left: 8px;
  margin-right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cta:hover, .cta:focus {
  background: #B8A16A;
  color: #222233;
  box-shadow: 0 6px 24px rgba(184,161,106, 0.13);
}
.mobile-menu-toggle {
  background: #fff;
  color: #222233;
  border: 2px solid #222233;
  border-radius: 8px;
  font-size: 2rem;
  padding: 2px 16px 2px 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.2s, color 0.2s;
  margin-left: 10px;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #B8A16A;
  color: #fff;
  border-color: #B8A16A;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #222233FC;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  padding-top: 0;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.42,0,.58,1);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fff;
  color: #222233;
  border: none;
  font-size: 2.3rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 0 0 18px 0;
  cursor: pointer;
  align-self: flex-end;
  margin-top: 10px;
  margin-right: 8px;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #B8A16A;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  padding: 36px 32px 10px 36px;
  align-items: flex-start;
  margin-top: 10px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  width: 100%;
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: #B8A16A;
  border-bottom: 2px solid #B8A16A;
  background: #25253B;
}

/* Mobile menu visibility (mobile-first) */
.main-nav, .cta {
  display: none;
}

/* Desktop nav visible, mobile toggled off */
@media (min-width: 900px) {
  .main-nav {
    display: flex;
  }
  .mobile-menu-toggle {
    display: none;
  }
  .cta {
    display: inline-flex;
  }
}

/* ========================================================== */
/*                  SECTIONS & SPACING                       */
/* ========================================================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-radius: 24px;
}
section[aria-label], section[aria-labelledby] {
  background: #fff;
  box-shadow: 0 4px 28px rgba(34,34,51,0.07);
}

/* Card and feature layouts via flex only */
.card-container, .features-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features-grid > div {
  flex: 1 1 256px;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(184,161,106,0.07);
  padding: 28px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: box-shadow 0.25s, transform 0.18s;
  border-bottom: 4px solid #B8A16A11;
}
.features-grid > div:hover {
  box-shadow: 0 8px 34px rgba(34,34,51,0.13);
  transform: translateY(-2px) scale(1.015);
  border-bottom: 4px solid #B8A16A;
}
.features-grid img {
  height: 44px;
  width: auto;
  margin-bottom: 19px;
}

.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px rgba(34,34,51,0.10);
  margin-bottom: 20px;
  padding: 26px 20px;
  position: relative;
  min-width: 270px;
  max-width: 400px;
  transition: box-shadow 0.18s, transform 0.16s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card:hover {
  box-shadow: 0 7px 26px rgba(184,161,106,0.12);
  transform: translateY(-1.5px) scale(1.02);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Testimonial cards */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
  background: #F4F1ED;
  border-radius: 18px;
  padding: 24px 28px;
  box-shadow: 0 2px 18px rgba(34,34,51,0.07);
  border-left: 6px solid #B8A16A;
  min-width: 220px;
  max-width: 660px;
  color: #222233;
}
.testimonial-card blockquote {
  font-size: 1.13rem;
  font-weight: 600;
  color: #222233;
}
.testimonial-card footer {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.97rem;
  color: #B8A16A;
  font-weight: 700;
}

/* USP and evaluation list styles */
.usp-list, .evaluation-list {
  margin: 0 0 16px 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.usp-list li, .evaluation-list li {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #222233;
  margin-bottom: 0.3em;
  font-weight: 500;
}
.usp-list strong, .evaluation-list strong {
  color: #B8A16A;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.details-address {
  margin-top: 32px;
  font-weight: 700;
  color: #222233;
  background: #F4F1ED;
  border-radius: 12px;
  padding: 17px 18px;
  box-shadow: 0 1px 11px rgba(34,34,51,0.07);
}

address {
  font-style: normal;
  background: #F4F1ED;
  border-radius: 13px;
  padding: 18px 18px;
  color: #222233;
  font-size: 1rem;
  margin-top: 10px;
  margin-bottom: 6px;
  line-height: 1.65;
  box-shadow: 0 1px 11px rgba(34,34,51,0.05);
}
address img {
  height: 1.05em;
  width: auto;
  vertical-align: middle;
  margin-right: 5px;
  opacity: 0.67;
}

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

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* ========================================================== */
/*                       FOOTER                              */
/* ========================================================== */
footer {
  background: #222233;
  color: #fff;
  padding: 40px 0 25px 0;
  font-size: 1rem;
  border-radius: 32px 32px 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0.8em;
}
.footer-nav a {
  color: #B8A16A;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #fff;
  border-bottom: 2px solid #B8A16A;
}
.footer-contact {
  color: #F4F1ED;
  font-size: 1rem;
}
.footer-contact a {
  color: #B8A16A;
}
.footer-contact p{
  color: #fff;
}
.footer-meta {
  font-size: 0.95em;
  color: #B8A16A;
  margin-top: 10px;
  opacity: 0.9;
}

/* ========================================================== */
/*                    RESPONSIVE MEDIA QUERIES               */
/* ========================================================== */
@media (max-width: 1200px) {
  .container { max-width: 96vw; }
}
@media (max-width: 900px) {
  .footer-nav {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  section { padding: 25px 10px; margin-bottom: 40px; }
  .container, .content-wrapper { padding-left: 10px; padding-right: 10px; }
  .features-grid, .usp-list, .evaluation-list {
    gap: 18px;
  }
  .testimonial-card {
    padding: 17px 14px;
    max-width: 99vw;
  }
  .footer-contact,
  .footer-meta { font-size: 0.98em; }
  .footer-nav { flex-direction: column; gap: 11px; }
}
@media (max-width: 550px) {
  html { font-size: 14px; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
  .features-grid > div, .card {
    padding: 18px 10px;
    min-width: 140px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 13px;
  }
}

/* ========================================================== */
/*                 MICRO-INTERACTIONS & ANIMATION            */
/* ========================================================== */
button,
.cta,
input[type="submit"] {
  transition: background 0.18s, color 0.18s, box-shadow 0.14s, border 0.16s;
}
/* Link focus/active state for accessibility */
a:focus-visible {
  outline: 2px solid #B8A16A;
  outline-offset: 2px;
}

/* List in features-grid gets geometric circle point */
.usp-list li::before, .evaluation-list li::before {
  content: '';
  display: inline-block;
  margin-right: 9px;
  width: 10px;
  height: 10px;
  background: #B8A16A;
  border-radius: 50%;
  vertical-align: middle;
  margin-bottom: 2px;
}

/* ========================================================== */
/*                 COOKIE CONSENT BANNER & MODAL              */
/* ========================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #222233;
  color: #fff;
  padding: 20px 14px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 0 -2px 20px rgba(34,34,51,0.18);
  border-radius: 24px 24px 0 0;
  animation: cookieBannerIn 0.43s cubic-bezier(.5,0,.5,1);
}
@keyframes cookieBannerIn {
  from { transform: translateY(140%); opacity: 0; }
  to {   transform: none; opacity: 1; }
}
.cookie-banner p {
  font-size: 1.04rem;
  margin: 0;
  color: #fff;
  line-height: 1.6;
  text-align: center;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 13px;
}
.cookie-btn {
  background: #B8A16A;
  color: #222233;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 9px 19px;
  border-radius: 22px;
  cursor: pointer;
  margin: 0;
  box-shadow: 0 2px 9px rgba(184,161,106,0.13);
  transition: background 0.16s, color 0.16s, box-shadow 0.17s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #222233;
  color: #fff;
  box-shadow: 0 4px 20px #B8A16A33;
}
.cookie-settings-btn {
  background: #fff;
  color: #222233;
  border: 2px solid #B8A16A;
  font-weight: 600;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #B8A16A;
  color: #fff;
  border-color: #222233;
}

/* Cookie modal overlay */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 100010;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(34,34,51,0.60);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.18s;
}
.cookie-modal {
  background: #fff;
  color: #222233;
  border-radius: 32px;
  box-shadow: 0 6px 50px #B8A16A33, 0 1px 4px rgba(34,34,51,0.08);
  min-width: 320px;
  max-width: 90vw;
  min-height: 260px;
  padding: 44px 34px 28px 34px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookieModalIn 0.33s cubic-bezier(.4,0,.6,1);
}
@keyframes cookieModalIn {
  from { transform: scale(0.93) translateY(20px); opacity: 0; }
  to {   transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-header h3 {
  font-size: 1.5rem;
  margin: 0;
  color: #222233;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #B8A16A;
  cursor: pointer;
  margin-left: 18px;
}
.cookie-modal section {
  background: none;
  box-shadow: none;
  padding: 0;
  margin-bottom: 11px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid #F4F1ED;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-size: 1.09rem;
  color: #222233;
  font-weight: 500;
  cursor: pointer;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #22223311;
  position: relative;
  border-radius: 22px;
  outline: none;
  transition: background 0.14s;
  cursor: pointer;
  border: none;
}
.cookie-toggle:checked {
  background: #B8A16A;
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px #22223322;
  transition: left 0.14s;
}
.cookie-toggle:checked:before {
  left: 17px;
  background: #fff7ec;
}
.cookie-essential {
  color: #B8A16A;
  font-weight: bold;
  letter-spacing: 0.01em;
}

.cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 10px;
}
@media (max-width: 500px) {
  .cookie-modal {
    min-width: 0;
    padding: 20px 6px 13px 11px;
    border-radius: 18px;
  }
}

/* ========================================================== */
/*                  Z-INDEX LAYERING                          */
/* ========================================================== */
header { z-index: 110; }
.mobile-menu { z-index: 9999; }
.cookie-banner { z-index: 10000; }
.cookie-modal-backdrop { z-index: 100010; }

/* ================= END FILLUMODIF MODERN_BOLD CSS =============== */
