/* -------------------------------------------------- */
/* 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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #fff;
}
*, *:before, *:after {
  box-sizing: inherit;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display: block;
}
body {
  line-height: 1.6;
  color: #1A2421;
  font-family: 'Lato', Arial, sans-serif;
  background: #fff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #1A2421;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C9A769;
  outline: none;
}
ul, ol {
  margin-left: 1.25em;
  padding-left: 0.75em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: 'Lato', Arial, sans-serif;
  cursor: pointer;
  border: none;
  background: none;
  transition: all 0.2s;
}
:focus {
  outline: 2px solid #C9A769;
  outline-offset: 2px;
}

/* Typography --------------------------------------------------*/
h1, .hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #1A2421;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #1A2421;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #1A2421;
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 10px;
}
p, li, blockquote {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  color: #20211a;
  letter-spacing: 0;
}
.subtitle {
  font-size: 1.3rem;
  font-family: 'Lato', Arial, sans-serif;
  color: #6E6E6A;
  margin-bottom: 28px;
}
blockquote {
  border-left: 3px solid #C9A769;
  padding-left: 16px;
  margin-bottom: 12px;
  font-style: italic;
  background: #fcfcfa;
  color: #20211a;
  font-size: 1.05rem;
}
cite {
  font-size: 0.95em;
  display: block;
  color: #888;
  font-style: normal;
  margin-top: 8px;
  margin-bottom: 0;
}
strong {
  font-weight: 700;
  color: #1A2421;
}
em {
  font-style: italic;
  color: #333;
}

/* General Containers and Layouts ------------------------------ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(20,24,21, 0.065);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid #E8E7E3;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(20,24,21,0.06);
  padding: 32px 28px;
  margin-bottom: 20px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 28px rgba(26,36,33, 0.11);
  border-color: #C9A769;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f6f3ed;
  border-radius: 15px;
  box-shadow: 0 2px 16px 0 rgba(20,24,21,0.024);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ecebe7;
  padding: 24px 20px;
  margin-bottom: 24px;
}

.text-section {
  margin-bottom: 24px;
}

/* List and sort options */
.sort-options {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  margin-top: 8px;
}
.sort-options li {
  background: #efefeb;
  border-radius: 18px;
  padding: 5px 16px;
  color: #1A2421;
  font-size: 0.95em;
  font-family: 'Lato', Arial, sans-serif;
  transition: background 0.18s, color 0.18s;
}
.sort-options li:hover,
.sort-options li:focus {
  background: #C9A769;
  color: #fff;
  cursor: pointer;
}

/* Headers & Navigation --------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 1.5px 8px 0 rgba(26,36,33,0.04);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 2030;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
}
header img {
  height: 38px;
  width: auto;
}
header nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
header nav a {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.06rem;
  color: #232626;
  padding: 6px 10px;
  border-radius: 7px;
  transition: background 0.17s, color 0.17s;
}
header nav a:hover,
header nav a:focus {
  background: #1A2421;
  color: #fff;
}
header nav .btn-primary {
  margin-left: 24px;
}
.mobile-menu-toggle {
  font-size: 2rem;
  color: #1A2421;
  background: none;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #eee;
  color: #C9A769;
}

/* Hero Section ----------------------------------------------- */
.hero {
  padding: 60px 0 36px 0;
  background: #f6f3ed;
  border-bottom: 2px solid #ECEBE7;
  margin-bottom: 36px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 20px;
  margin-left: 0;
}
.hero h1 {
  color: #1A2421;
  max-width: 850px;
  margin-bottom: 14px;
}

/* Buttons --------------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.08rem;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: bold;
  background: #1A2421;
  color: #fff !important;
  border-radius: 25px;
  padding: 12px 30px;
  border: 2px solid #1A2421;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 16px rgba(26,36,33,0.06);
  transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.22s;
  margin-top: 8px;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #fff;
  color: #1A2421 !important;
  border-color: #C9A769;
  box-shadow: 0 4px 26px 0 rgba(26,36,33,0.14);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.98rem;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 500;
  background: #fff;
  color: #1A2421;
  border-radius: 22px;
  padding: 10px 24px;
  border: 1.5px solid #C9A769;
  box-shadow: none;
  margin-right: 12px;
  transition: background 0.17s, color 0.17s, border 0.18s;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #C9A769;
  color: #fff;
  border-color: #C9A769;
}

/* Footer ---------------------------------------------------- */
footer {
  background: #fcfcfa;
  border-top: 3px solid #ECEBE7;
  padding: 0 0 14px 0;
  margin-top: 80px;
}
footer .container {
  padding-top: 40px;
  padding-bottom: 16px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px 60px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
footer nav a {
  color: #1A2421;
  font-size: 0.96rem;
  font-family: 'Lato', Arial, sans-serif;
  letter-spacing: 0;
  transition: color 0.12s;
}
footer nav a:hover, footer nav a:focus {
  color: #C9A769;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.98rem;
  color: #1A2421;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
  filter: grayscale(1) contrast(1.4);
}
footer img {
  height: 38px;
  margin-bottom: 12px;
}

/* Cookie Consent Banner & Modal ----------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1A2421;
  color: #fff;
  padding: 22px 24px;
  font-size: 1rem;
  z-index: 9002;
  box-shadow: 0 -4px 26px 0 rgba(20,24,21,0.13);
  gap: 16px;
  flex-wrap: wrap;
  animation: cookie-banner-fadein 0.4s cubic-bezier(.3,.68,.37,1.01) 1;
}
@keyframes cookie-banner-fadein {
  0% { opacity:0; transform: translateY(48px); }
  100% { opacity:1; transform: none; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cookie-banner .btn-secondary,
.cookie-banner .btn-primary {
  font-size: 0.97rem;
  border-radius: 20px;
  min-width: 110px;
  padding: 8px 20px;
  box-shadow: none;
  border-width: 2px;
}
.cookie-banner .btn-primary {
  background: #C9A769; color: #1A2421 !important;
  border: 2px solid #C9A769;
}
.cookie-banner .btn-primary:hover {
  background: #fff;
  color: #C9A769 !important;
  border-color: #C9A769;
}
.cookie-banner .btn-secondary {
  background: #fff; color: #1A2421;
  border-color: #C9A769;
}
.cookie-banner .btn-secondary:hover {
  background: #e6e2d8;
  color: #1A2421;
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 10011;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,24,21, 0.44);
  align-items: center;
  justify-content: center;
  animation: fadeInCookieModal 0.2s;
}
@keyframes fadeInCookieModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #1A2421;
  padding: 36px 30px 32px 30px;
  border-radius: 16px;
  box-shadow: 0 12px 40px 0 rgba(26,36,33,0.15);
  width: 94vw;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: popupslideIn 0.33s cubic-bezier(.14,.65,.32,1.03) 1;
}
@keyframes popupslideIn {
  0%{opacity:0;transform:translateY(80px);}
  100%{opacity:1;transform:none;}
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}
.cookie-categories label {
  font-size: 1.02em;
  color: #232626;
  display: flex;
  align-items: center;
}
.cookie-categories input[type="checkbox"] {
  accent-color: #C9A769;
  margin-right: 10px;
}
.cookie-modal .modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-modal .btn-primary,
.cookie-modal .btn-secondary {
  font-size: 1rem;
  border-radius: 20px;
  min-width: 100px;
  padding: 8px 20px;
  border-width: 2px;
}

/* Mobile Menu ------------------------------------------------ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #1A2421;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 9998;
  transform: translateX(-110vw);
  transition: transform 0.29s cubic-bezier(.55,.12,.19,1.0);
}
.mobile-menu.active {
  transform: translateX(0);
  box-shadow: 10px 0 48px 0 rgba(26,36,33,0.10);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.25rem;
  padding: 18px 22px 10px 18px;
  margin-left: auto;
  margin-bottom: 8px;
  cursor: pointer;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #C9A769;
  background: #232626;
  border-radius: 50%;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 14px 36px;
  gap: 18px;
}
.mobile-nav a {
  color: #fff;
  background: transparent;
  font-size: 1.16rem;
  font-family: 'Lato', Arial, sans-serif;
  padding: 8px 0;
  border-radius: 0;
  font-weight: 500;
  border-bottom: 1px solid rgba(201,167,105,0.10);
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a.btn-primary {
  background: #C9A769;
  color: #1A2421;
  border-radius: 22px;
  font-weight: bold;
  font-size: 1.08rem;
  padding: 13px 0;
  margin-top: 18px;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus{
  color: #C9A769;
  background: rgba(201,167,105, 0.08);
  border-bottom: 1px solid #C9A769;
}

/* Responsive Layouts ---------------------------------------- */
@media (max-width: 1024px) {
  .content-grid, .footer .content-wrapper {
    gap: 12px;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 28px;
  }
}
@media (max-width: 900px) {
  .card-container, .footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .footer .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  header .container { flex-direction: row;
    gap: 12px; height: 62px; }
  header img { height: 32px; }
  header nav { display: none !important; }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .hero {
    padding: 34px 0 24px 0;
    margin-bottom: 25px;
  }
  .hero h1 { font-size: 1.9rem; }
  .section {
    margin-bottom: 38px;
    padding: 28px 6vw;
  }
  .content-wrapper {
    gap: 17px;
  }
  .card-container,
  .content-grid { flex-direction: column; gap: 14px; }
  .testimonial-card, .feature-item { padding: 16px; }
  .text-image-section { flex-direction: column; gap: 17px; }
}
@media (max-width: 520px) {
  html { font-size: 14px; }
  .container { padding-left: 6px; padding-right: 6px; }
  .hero { padding: 18px 0 11px 0; }
  .section { padding: 18px 2vw; }
  .btn-primary, .btn-secondary { padding: 11px 14px; font-size: 1rem; }
}

/* Micro-interactions & Transitions -------------------------- */
.card, .feature-item, .testimonial-card {
  transition: box-shadow 0.2s, border 0.18s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover {
  box-shadow: 0 6px 30px 0 rgba(26,36,33,0.12);
  border-color: #C9A769;
}

/* Monochrome_sophisticated Spacing  ------------------------ */
.section, .card, .testimonial-card, .feature-item {
  margin-bottom: 20px;
}
.section { box-shadow: 0 2px 5px 0 rgba(26,36,33,0.06); }

/* Utility Classes ------------------------------------------ */
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.m-b-20 { margin-bottom: 20px; }
.m-b-40 { margin-bottom: 40px; }

/* Hide visually but keep accessible */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Hide only on desktop */
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* Remove scroll on body when mobile menu open */
body.menu-open {
  overflow: hidden;
}

/* Misc ----------------------------------------------------- */
hr {
  border: none;
  border-top: 1.5px solid #ecebe7;
  margin: 32px 0;
}

/* Selection styling */
::selection {
  background: #C9A769;
  color: #fff;
}

/* Inputs & Forms ------------------------------------------- */
input, textarea, select {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.02em;
  border: 1px solid #CBC3B8;
  border-radius: 7px;
  padding: 10px 12px;
  color: #20211a;
  background: #fcfcfa;
  margin-bottom: 16px;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #C9A769;
  outline: none;
}
label {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.07em;
  color: #1A2421;
  margin-bottom: 6px;
  display: block;
}

/* Ensure no overlap anywhere! */
.card, .section, .testimonial-card, .feature-item {
  z-index: 1;
  position: relative;
}

/* Visually strong accent borders for monochrome sophistication */
.card, .feature-item, .testimonial-card {
  border-left: 3.5px solid #C9A769;
}

/* Typography Fallbacks -------------------------------------- */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  src: local('Playfair Display'), local('PlayfairDisplay-Regular');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: local('Lato-Regular'), local('Lato');
}

.content-wrapper img {
  width: 50px;
}

/* End of file */

