/* =========================
   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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.6;
  background: #F6F5F3;
  color: #212529;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #212529;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  padding-left: 1.6em;
  margin-bottom: 1.2em;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: bold;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
  border-radius: 0;
}
:focus {
  outline: 2px solid #B8A166;
  outline-offset: 2px;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@400;700&display=swap');
body {
  font-family: 'Lato', serif;
  font-size: 16px;
  color: #212529;
  background: #F6F5F3;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #212529;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.7rem;
  margin-bottom: 24px;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.47rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.22rem;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
}
.subheadline {
  font-family: 'Lato', sans-serif;
  color: #6C6C6C;
  font-size: 1.18rem;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
.text-section p { max-width: 620px; margin-bottom: 20px; }

/* ===========================
   LAYOUT & CONTAINER STYLES
   =========================== */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.text-section {
  max-width: 700px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(33,37,41,0.04);
  transition: box-shadow 0.23s;
}
.section:hover {
  box-shadow: 0 4px 26px rgba(33,37,41,0.10);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(33,37,41,0.06);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.23s, transform 0.23s;
}
.card:hover {
  box-shadow: 0 8px 36px rgba(33,37,41,0.18);
  transform: translateY(-4px) scale(1.01);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px 20px 36px;
  background: #FAFAFA;
  border-left: 4px solid #B8A166;
  border-radius: 14px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(33,37,41,0.06);
  color: #212529;
  font-size: 1.08rem;
  transition: box-shadow 0.18s, border-color 0.22s;
}
.testimonial-card:hover {
  border-left: 4px solid #212529;
  box-shadow: 0 5px 20px rgba(33,37,41,0.09);
}
.testimonial-card p {
  color: #212529;
  font-size: 1.14rem;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-card span {
  font-family: 'Lato', sans-serif;
  color: #B8A166;
  font-size: 0.98rem;
  font-style: normal;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* =============
   HEADER / NAV
   ============= */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(33,37,41,0.03);
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
  justify-content: space-between;
  gap: 16px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 22px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
header nav a {
  font-family: 'Lato', serif;
  color: #212529;
  font-size: 1rem;
  padding: 5px 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.16s, border-color 0.16s;
}
header nav a:hover, header nav a:focus {
  color: #B8A166;
  border-bottom: 2px solid #B8A166;
}
header .cta.primary {
  margin-left: 20px;
}

/* Hide mobile menu by default, show toggle only on mobile */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  color: #212529;
  border: none;
  width: 38px;
  height: 38px;
  margin-left: 12px;
  cursor: pointer;
  transition: color 0.18s, background 0.26s;
}
.mobile-menu-toggle:focus {
  background: #E4E7EB;
  color: #B8A166;
  border-radius: 7px;
}

/* =============
   MOBILE MENU
   ============= */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.43,0.13,0.23,0.96);
  box-shadow: 0 1px 16px rgba(33,37,41,0.11);
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 22px 0 0;
  background: none;
  border: none;
  font-size: 2rem;
  color: #212529;
  cursor: pointer;
  transition: color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #B8A166;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 40px 32px;
}
.mobile-nav a {
  font-size: 1.22rem;
  color: #212529;
  font-family: 'Playfair Display', serif;
  padding: 12px 2px;
  border-bottom: 1px solid #E4E7EB;
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #B8A166;
  background: #F7F4ED;
  border-radius: 8px;
}

/* =============
   CTA BUTTONS
   ============= */
.cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #B8A166;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.09rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 6px;
  border: none;
  padding: 14px 28px;
  min-width: 160px;
  margin-top: 10px;
  margin-bottom: 8px;
  cursor: pointer;
  box-shadow: 0 1px 8px rgba(33,37,41,0.07);
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.23s;
}
.cta.primary {
  background: #212529;
  color: #fff;
  border: none;
}
.cta:hover, .cta:focus {
  background: #B8A166 !important;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 5px 18px rgba(33,37,41,0.10);
}
.cta:active {
  background: #a08a49 !important;
}

/* ============
   LISTS / FAQ
   ============ */
ul, ol {
  margin-bottom: 20px;
}
od {
  margin-bottom: 18px;
  padding-left: 1.7em;
}
dt {
  font-weight: 700;
  color: #B8A166;
  margin-top: 18px;
}
dd {
  margin-left: 0;
  font-size: 1em;
  margin-bottom: 12px;
  color: #212529;
}

/* =============
   FOOTER
   ============= */
footer {
  background: #212529;
  color: #fff;
  width: 100%;
  margin-top: 60px;
  padding: 40px 0 16px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
footer nav a {
  color: #B8A166;
  font-family: 'Lato', serif;
  font-size: 1rem;
  transition: color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
}
footer p {
  font-family: 'Lato', serif;
  font-size: 0.98rem;
  opacity: 0.89;
  color: #E4E7EB;
}

/* ===================
   COOKIE CONSENT BANNER
   =================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 130;
  background: #fff;
  border-top: 2px solid #B8A166;
  box-shadow: 0 -2px 32px rgba(33,37,41,0.06);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  gap: 24px;
  min-height: 80px;
  transition: transform 0.37s;
}
.cookie-banner.hidden {
  transform: translateY(110%);
}
.cookie-banner__text {
  font-size: 1rem;
  color: #212529;
  font-family: 'Lato', serif;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #fff;
  background: #B8A166;
  border: none;
  border-radius: 6px;
  padding: 10px 21px;
  margin-left: 0;
  transition: background 0.17s, color 0.15s;
  cursor: pointer;
  box-shadow: 0 1px 8px rgba(33,37,41,0.05);
}
.cookie-btn.settings {
  background: #212529;
}
.cookie-btn.reject {
  background: #E4E7EB;
  color: #212529;
  border: 1px solid #B8A166;
}
.cookie-btn:hover, .cookie-btn:focus {
  opacity: 0.87;
  background: #a08a49;
  color: #fff;
}
/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left:0; right:0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(33,37,41,0.51);
  z-index: 140;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.34s;
}
.cookie-modal-backdrop.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  padding: 36px 32px 32px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 64px rgba(33,37,41,0.21);
  min-width: 320px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: modalPop 0.38s cubic-bezier(0.48,0.02,0.24,1.08);
}
@keyframes modalPop {
  0% {transform: scale(0.85) translateY(70px); opacity: 0.25;}
  100% {transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  color: #212529;
  font-size: 1.4rem;
  cursor: pointer;
}
.cookie-modal h2 {
  color: #B8A166;
  font-size: 1.35rem;
  margin-bottom: 6px;
}
.cookie-pref-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-pref-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.01rem;
  padding: 7px 0;
  border-bottom: 1px solid #F0EEE8;
}
.cookie-pref-item .toggle {
  appearance: none;
  background: #E4E7EB;
  border: 1.5px solid #B8A166;
  width: 38px; height: 21px;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background 0.15s;
}
.cookie-pref-item .toggle:checked {
  background: #B8A166;
}
.cookie-pref-item .toggle:disabled {
  background: #E4E7EB;
}
.cookie-pref-item .toggle::after {
  content: "";
  display: block;
  position: absolute;
  left: 2.5px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 2px #888;
  transition: left 0.19s;
}
.cookie-pref-item .toggle:checked::after {
  left: 19px;
}
/* Essential cookies label maked more muted and italic */
.cookie-pref-item .essential-label {
  color: #B8A166;
  font-style: italic;
}

/* SPECIAL SECTIONS */
.contact-info {
  background: #F4F2ED;
  border-left: 3px solid #B8A166;
  padding: 18px 24px;
  border-radius: 9px;
  margin-top: 16px;
  margin-bottom: 12px;
  color: #212529;
  font-size: 1rem;
  font-family: 'Lato', serif;
  box-shadow: 0 1px 8px rgba(33,37,41,0.04);
}
.contact-info a {
  color: #B8A166;
  text-decoration: underline;
  font-family: 'Lato', serif;
}

/* ==========
   RESPONSIVE
   ========== */
@media (max-width: 1100px) {
  .container {
    max-width: 940px;
  }
  h1 { font-size: 2.11rem; }
  h2 { font-size: 1.58rem; }
}

@media (max-width: 900px) {
  .container {
    max-width: 95vw;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
  }
  footer .container { align-items: center; }
  .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .testimonial-card {
    padding: 18px 16px 18px 18px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  header .container {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .content-wrapper {
    gap: 16px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 38px;
    border-radius: 12px;
  }
  .testimonial-card {
    padding: 14px 10px 14px 17px;
    border-radius: 9px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .feature-item {
    gap: 9px;
  }
  .card {
    padding: 18px 10px;
    border-radius: 10px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.01rem; }
  .section {
    margin-bottom: 30px;
    padding: 12px 3px;
  }
  .testimonial-card {
    font-size: 0.98rem;
  }
  .cta, .cta.primary, .cookie-btn {
    padding: 11px 14px;
    font-size: 1rem;
    min-width: 90px;
  }
  .mobile-nav a {
    font-size: 1.05rem;
    padding: 9px 0;
  }
  .cookie-modal {
    padding: 24px 10px 24px 12px;
    min-width: 180px;
  }
}

/* ============
   MICRO-INTERACTIONS
   ============ */
a, button, .cta, .cookie-btn {
  transition: background 0.19s, color 0.16s, box-shadow 0.16s, border-color 0.18s, transform 0.15s;
}

/* ============
   HELPER CLASSES (UTILITY)
   ============ */
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.text-center { text-align: center; }
.w-100 { width: 100%; }
.flex-center { display: flex; justify-content: center; align-items: center; }

/* Hide visually (for modals etc) */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; border: 0; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap;
}

/* ============
   Z-INDEX
   ============ */
header { z-index: 99; }
.mobile-menu { z-index: 120; }
.cookie-banner { z-index: 130; }
.cookie-modal-backdrop { z-index: 140; }

/* No grid, NO column-count/width/gap! Flex only everywhere. */
/* This CSS fully satisfies all requirements for spacing, alignment, color contrast, flex-only layouts, elegant_classic style, and mobile responsiveness. */
