/* --- 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #fff;
  color: #2B2932;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img,svg {
  max-width: 100%;
  display: block;
}
a {
  color: #3B1727;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, button:focus {
  outline: 2px solid #9C8356;
  outline-offset: 2px;
}
ul, ol {
  margin: 0 0 1.6em 1.2em;
  padding: 0;
}
li {
  margin-bottom: 0.5em;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #3B1727;
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: 2.2rem; margin-bottom: 24px; }
h2 { font-size: 1.7rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
@media (min-width: 700px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.4rem; }
}
p {
  font-size: 1rem;
  margin-bottom: 1.2em;
  color: #2B2932;
}
strong {
  font-weight: bold;
}

/* --- GENERAL LAYOUT --- */
.container {
  width: 100%;
  max-width: 1120px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 10px;
    margin-bottom: 40px;
  }
  .content-wrapper {
    gap: 16px;
  }
}

/* --- HEADER --- */
header {
  background: #fff;
  border-bottom: 1px solid #ECE9E6;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1002;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.logo img {
  height: 46px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  color: #3B1727;
  padding: 6px 0;
  font-weight: 500;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:not(.primary-btn):hover {
  color: #9C8356;
}
.primary-btn, .secondary-btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 30px;
  background: #3B1727;
  color: #fff !important;
  font-weight: bold;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(43,41,50,0.05);
  transition: background 0.25s, color 0.22s, box-shadow 0.18s;
  cursor: pointer;
  margin-left: 16px;
}
.primary-btn:hover,
.primary-btn:focus {
  background: #9C8356;
  color: #fff;
  box-shadow: 0 4px 22px 0 rgba(43,41,50,0.14);
}
.secondary-btn {
  background: #9C8356;
  color: #fff;
  border-radius: 30px;
  font-weight: bold;
  padding: 10px 28px;
}
.secondary-btn:hover,
.secondary-btn:focus {
  background: #3B1727;
}

/* --- HAMBURGER BUTTON --- */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #3B1727;
  display: none;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
  z-index: 1202;
}
@media (max-width: 995px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(.7,0,.3,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0 0 0 0;
  box-shadow: 0 8px 24px -4px rgba(43,41,50,0.32);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #3B1727;
  font-size: 2.4rem;
  margin: 20px 28px 0 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: #9C8356;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 48px 32px 0 32px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  color: #3B1727;
  font-size: 1.2rem;
  font-family: 'Lato',Arial,sans-serif;
  font-weight: 500;
  padding: 8px 0;
  width: 100%;
  border-radius: 6px;
  transition: background 0.15s, color 0.14s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #F5F3EC;
  color: #9C8356;
}
@media (max-width: 480px) {
  .mobile-nav {
    padding: 32px 14px 0 16px;
    gap: 18px;
  }
  .mobile-menu-close {
    margin: 12px 14px 0 0;
    font-size: 2rem;
  }
}

/* --- HERO SECTION --- */
.hero-section {
  background: #F5F3EC;
  border-bottom: 2px solid #ECE9E6;
  padding: 56px 0 40px 0;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  text-align: left;
  max-width: 700px;
  gap: 20px;
}
.hero-section h1 {
  color: #3B1727;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.1rem;
  font-weight: bold;
}
@media (min-width: 700px) {
  .hero-section {
    padding: 80px 0 50px 0;
  }
  .hero-section .content-wrapper {
    gap: 24px;
  }
  .hero-section h1 {
    font-size: 2.7rem;
  }
}
.hero-section p {
  color: #3B1727;
  font-size: 1.15rem;
  margin-bottom: 14px;
}

/* --- FEATURES and FEATURE GRID --- */
.feature-grid, .features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 0 0;
  list-style: none;
}
.feature-grid li, .features li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 9px rgba(43,41,50,0.09);
  border: 1px solid #ECE9E6;
  flex: 1 1 240px;
  min-width: 240px;
  max-width: 330px;
  padding: 28px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.feature-grid li img,
.features li img {
  height: 36px;
  width: 36px;
  margin-bottom: 10px;
}
.feature-grid li:hover,
.features li:hover {
  box-shadow: 0 8px 32px rgba(43,41,50,0.13);
  transform: translateY(-3px) scale(1.014);
}
.feature-grid h3 {
  margin-bottom: 0;
  color: #3B1727;
  font-size: 1.22rem;
}

/* --- LISTS inside sections (not just features) --- */
section ul,
section ol {
  font-size: 1rem;
  color: #484646;
  margin-bottom: 16px;
  padding-left: 1.2em;
}
section ul li, section ol li {
  margin-bottom: 0.5em;
}


/* --- CARD PATTERNS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 7px rgba(43,41,50,0.1);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #ECE9E6;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(43,41,50,0.13);
  transform: translateY(-2px) scale(1.01);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* --- CONTENT GRID FLEX --- */
.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) {
  .feature-grid,
  .features,
  .content-grid,
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .card {
    padding: 20px 12px;
  }
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #F5F3EC;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(43,41,50,0.07);
  border-left: 5px solid #9C8356;
  color: #2B2932;
}
.testimonial-card p {
  font-style: italic;
  margin: 0 0 8px 0;
  color: #3B1727;
  font-size: 1.1rem;
}
.testimonial-meta {
  font-size: 1rem;
  color: #9C8356;
  font-style: normal;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 600;
  margin-left: auto;
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 12px;
  }
  .testimonial-meta {
    margin-left: 0;
  }
}

/* --- FORMAL CTAs --- */
.cta {
  background: #3B1727;
  color: #fff;
  border-radius: 18px;
  padding: 40px 26px;
  box-shadow: 0 2px 19px rgba(43,41,50,0.07);
  flex-direction: column !important;
  align-items: center;
  text-align: center;
}
.cta h2,
.cta p,
.cta a {
  color: #fff !important;
}
.cta .primary-btn {
  background: #9C8356;
  color: #fff;
  margin-left: 0;
  margin-top: 18px;
}
.cta .primary-btn:hover {
  background: #fff;
  color: #3B1727 !important;
}
@media (max-width: 600px) {
  .cta {
    padding: 22px 9px;
    border-radius: 10px;
  }
}

/* --- FOOTER --- */
footer {
  background: #3B1727;
  color: #fff;
  padding: 64px 0 18px 0;
}
footer p {
  color: white;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
}
.footer-row > * {
  min-width: 120px;
  margin-bottom: 16px;
}
.footer-nav, .footer-utility {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a, .footer-utility a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 400;
  transition: color 0.21s;
  margin-bottom: 3px;
}
.footer-nav a:hover, .footer-utility a:hover {
  color: #9C8356;
}
.footer-note {
  text-align: center;
  font-size: 0.98rem;
  opacity: 0.85;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #F5F3EC;
}
.footer-contact img {
  height: 18px;
  width: 18px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.footer-social a img {
  height: 26px;
  width: 26px;
  filter: grayscale(0) brightness(1.1);
  opacity: 0.86;
  transition: filter 0.23s, opacity 0.18s;
}
.footer-social a:hover img {
  filter: grayscale(0.1) brightness(1.35);
  opacity: 1;
}
@media (max-width: 880px) {
  .footer-row {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  footer {
    padding: 42px 0 14px 0;
  }
}

/* --- ADDRESS INFO FLEX (contacts etc) --- */
.address-info, .text-section {
  margin-bottom: 20px;
}
@media (min-width: 800px) {
  .content-wrapper {
    gap: 48px;
  }
  .address-info, .text-section {
    flex: 1;
    max-width: 46%;
  }
}

/* --- FAQ ACCORDION --- */
.faq-group {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #F5F3EC;
  border-left: 5px solid #9C8356;
  padding: 22px 18px;
  border-radius: 12px;
  box-shadow: 0 2px 7px rgba(43,41,50,0.09);
  margin-bottom: 12px;
  transition: box-shadow 0.15s;
}
.faq-item h3 {
  font-size: 1.05rem;
  margin: 0 0 10px 0;
}
.faq-item p {
  margin: 0;
  color: #2B2932;
}
.faq-item:hover {
  box-shadow: 0 4px 19px rgba(43,41,50,0.13);
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2999;
  background: #3B1727;
  color: #fff;
  box-shadow: 0 -2px 16px rgba(43,41,50,0.08);
  padding: 32px 14px 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-width: 280px;
}
.cookie-banner p {
  color: #fff;
  margin: 0 0 14px 0;
  font-size: 0.99rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button, .cookie-banner .cookie-settings-btn {
  background: #9C8356;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  padding: 8px 22px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  margin-right: 8px;
  transition: background 0.19s, color 0.18s, box-shadow 0.21s;
}
.cookie-banner button:hover, .cookie-banner .cookie-settings-btn:hover {
  background: #fff;
  color: #3B1727;
  box-shadow: 0 2px 10px #9C83563F;
}
@media (max-width: 480px) {
  .cookie-banner {
    font-size: 0.95rem;
    padding: 22px 7px 12px 7px;
    gap: 9px;
  }
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(43,41,50,0.34);
  z-index: 3000;
  justify-content: center;
  align-items: center;
}
.cookie-modal-backdrop.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #3B1727;
  border-radius: 16px;
  padding: 38px 28px 28px 28px;
  box-shadow: 0 9px 46px rgba(43,41,50,0.19);
  width: 96vw;
  max-width: 410px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: pop-in-modal 0.33s cubic-bezier(.68,-0.1,.65,1.13);
  z-index: 3100;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  color: #3B1727;
  background: none;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  opacity: 0.73;
  transition: opacity 0.16s;
}
.cookie-modal-close:hover {
  opacity: 1;
}
.cookie-modal h3 {
  margin-bottom: 4px;
  color: #3B1727;
  font-size: 1.15rem;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  padding-bottom: 5px;
}
.cookie-option input[type='checkbox'] {
  width: 18px;
  height: 18px;
  accent-color: #9C8356;
}
.cookie-option label {
  font-size: 1rem;
  font-weight: 500;
  color: #3B1727;
}
.cookie-option.essential label {
  font-style: italic;
  color: #9C8356;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
}
.cookie-modal .cookie-modal-actions button {
  background: #9C8356;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  margin: 0 2px;
  transition: background 0.18s;
}
.cookie-modal .cookie-modal-actions button:hover {
  background: #3B1727;
}
@keyframes pop-in-modal {
  0% { transform: scale(0.93) translateY(28px); opacity: 0.2; }
  89% { transform: scale(1.025) translateY(-7px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* --- MICRO-INTERACTIONS / HOVER / FOCUS / BUTTONS --- */
button, .primary-btn, .secondary-btn {
  transition: background 0.22s, color 0.17s, box-shadow 0.19s, transform 0.12s;
}
button:active, .primary-btn:active, .secondary-btn:active {
  transform: scale(0.97);
}

/* --- UTILITIES --- */
@media (max-width: 700px) {
  .container {
    padding: 0 7px;
  }
}

/* --- Z-INDEX LAYERING --- */
header, .mobile-menu, .cookie-banner, .cookie-modal-backdrop, .cookie-modal {
  z-index: 2000;
}

/* --- VISUAL HIERARCHY: Spacing / Alignment --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container,
.feature-grid,
.features,
.content-grid,
.text-image-section {
  gap: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.text-image-section {
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- INPUTS FORM ELEMENTS (for future forms) --- */
input, textarea, select {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ECE9E6;
  padding: 10px 16px;
  box-shadow: none;
  transition: border-color 0.19s;
  background: #fff;
  color: #2B2932;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #9C8356;
}

/* --- MISC --- */
::-webkit-input-placeholder { color: #9C8356; opacity: 1; }
::-moz-placeholder { color: #9C8356; opacity: 1; }
:-ms-input-placeholder { color: #9C8356; opacity: 1; }
::placeholder { color: #9C8356; opacity: 1; }

hr {
  border: 0;
  border-bottom: 1px solid #ECE9E6;
  margin: 30px 0;
}

/* --- SCROLLBAR (for large screens) --- */
@media (min-width: 980px) {
  ::-webkit-scrollbar { width: 10px; }
  ::-webkit-scrollbar-thumb { background: #ECE9E6; border-radius: 6px; }
}

/* --- PRINT OPTIMIZATION --- */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff; color: #232025; }
}
