/* 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.65;
  background: #FAF9F7;
  color: #263238;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@400;500;700&display=swap');

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #263238;
  letter-spacing: 0.01em;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.12;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 13px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #2C2C2C;
  line-height: 1.8;
  margin-bottom: 16px;
}
.subtitle, .cta-text {
  font-size: 1.35rem;
  font-family: 'Playfair Display', serif;
  color: #B49C73;
  margin-bottom: 20px;
}
strong {
  font-weight: 700;
  color: #263238;
}
a {
  color: #B49C73;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #7B6435;
  text-decoration: underline;
}

/* LAYOUT PATTERNS */
.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 2px 18px -8px rgba(38,50,56,0.11);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.features-grid > div {
  background: #FAF9F7;
  box-shadow: 0 4px 32px -14px rgba(38,50,56,0.06);
  border-radius: 12px;
  padding: 28px 24px;
  flex: 1 1 280px;
  max-width: 312px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.features-grid > div:hover {
  box-shadow: 0 8px 40px -10px rgba(38,50,56,0.14);
  transform: translateY(-4px);
}
.features-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 1px 12px -6px rgba(38,50,56,0.09);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.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: #EDEDED;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px -8px rgba(38,50,56,0.10);
  color: #222;
  transition: box-shadow 0.2s, transform 0.16s;
  min-width: 0;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px -12px #B49C7333;
  transform: translateY(-3px);
}
.testimonial-card strong {
  color: #B49C73;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

ul, ol {
  margin-left: 20px;
  margin-bottom: 18px;
}
ul li,
ol li {
  padding-left: 2px;
  margin-bottom: 7px;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

/* HEADER */
header {
  width: 100%;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px 20px 32px;
  border-bottom: 2px solid #EDEDED;
  box-shadow: 0 1px 10px -6px rgba(38,50,56,0.06);
  position: relative;
  z-index: 30;
}
header > a img {
  max-height: 52px;
  height: 52px;
  width: auto;
}
header nav {
  display: flex;
  gap: 24px;
  margin-left: 36px;
}
header nav a {
  font-family: 'Playfair Display', serif;
  color: #263238;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  padding: 2px 0;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}
header nav a:hover, header nav a:focus {
  color: #B49C73;
  border-bottom: 2px solid #B49C73;
}
.cta-btn {
  display: inline-block;
  background: #B49C73;
  color: #FFF;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 28px;
  margin-left: 32px;
  border-radius: 40px;
  border: none;
  box-shadow: 0 2px 16px -10px #B49C7340;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.18s, box-shadow 0.18s, transform 0.16s;
  text-align: center;
  text-decoration: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #926E36;
  box-shadow: 0 6px 24px -10px #B49C7366;
  transform: translateY(-2px) scale(1.035);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #263238;
  margin-left: 22px;
  cursor: pointer;
  padding: 8px;
  transition: color 0.18s;
  z-index: 41;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #B49C73;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #263238ee;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.37s cubic-bezier(0.75,0,0.25,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: initial;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 26px 12px 0;
  font-size: 2rem;
  background: none;
  border: none;
  color: #FFF;
  cursor: pointer;
  transition: color 0.16s;
  z-index: 1101;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #B49C73;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  padding: 10px 36px;
  margin-top: 38px;
}
.mobile-nav a {
  color: #FFF;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  width: 100%;
  transition: color 0.19s, border-color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #B49C73;
  border-bottom: 2px solid #B49C73;
}

/* FOOTER */
footer {
  background: #F3F1EC;
  padding: 38px 20px 20px 20px;
  border-top: 2px solid #EDEDED;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 80px;
  position: relative;
  z-index: 10;
}
footer nav {
  display: flex;
  gap: 22px;
  margin-bottom: 14px;
}
footer nav a {
  color: #263238;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: color 0.17s;
}
footer nav a:hover,
footer nav a:focus {
  color: #B49C73;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-size: 0.98rem;
  color: #222;
}
.footer-contact img {
  width: 22px;
  height: 22px;
  margin-right: 4px;
  filter: grayscale(0.15) brightness(0.96);
}
footer small {
  font-size: 0.95rem;
  color: #6F6F6C;
  margin-top: 6px;
  font-family: 'Playfair Display',serif;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #263238;
  color: #FFF;
  padding: 26px 14px 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1200;
  box-shadow: 0 -8px 48px -12px #0d101280;
  transition: transform 0.4s cubic-bezier(.75,0,.25,1), opacity 0.23s;
  transform: translateY(100%);
  opacity: 0;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner .cookie-text {
  text-align: center;
  margin-bottom: 18px;
  font-size: 1.07rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #fff;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner button,
.cookie-banner .cookie-btn {
  font-family: 'Playfair Display', serif;
  border: none;
  outline: none;
  padding: 9px 24px;
  background: #B49C73;
  color: #FFF;
  border-radius: 36px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin: 0 3px;
  transition: background 0.2s, transform 0.18s;
}
.cookie-banner button.reject {
  background: #AAA8A0;
  color: #263238;
}
.cookie-banner button:hover,
.cookie-banner .cookie-btn:focus {
  background: #926E36;
  transform: translateY(-2px) scale(1.045);
}
.cookie-banner button.reject:hover {
  background: #817e77;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20,24,28,0.58);
  z-index: 1210;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-backdrop.visible {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #263238;
  min-width: 310px;
  max-width: 90vw;
  border-radius: 18px;
  box-shadow: 0 10px 48px -10px #232b3240;
  padding: 38px 26px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1212;
}
.cookie-modal h3 {
  color: #263238;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #B49C73;
  width: 18px;
  height: 18px;
}
.cookie-modal .always-on {
  color: #B49C73;
  font-size: 0.97rem;
  font-family: 'Roboto',sans-serif;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.cookie-modal button,
.cookie-modal .cookie-btn {
  padding: 8px 22px;
  font-size: 1rem;
  border-radius: 28px;
  border: none;
  font-family: 'Playfair Display',serif;
  background: #B49C73;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  margin-right: 3px;
  transition: background 0.18s, box-shadow 0.18s;
}
.cookie-modal button.close {
  background: #AAA8A0;
  color: #263238;
}
.cookie-modal button:hover,
.cookie-modal button:focus {
  background: #926E36;
}
.cookie-modal button.close:hover {
  background: #817e77;
  color: #fff;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1280px) {
  .container {
    max-width: 900px;
  }
}
@media (max-width: 1024px) {
  .container {
    max-width: 750px;
  }
  .features-grid > div {
    max-width: 360px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 97vw;
  }
  .features-grid {
    gap: 18px;
  }
  .features-grid > div {
    flex-basis: 100%;
    min-width: 230px;
  }
}
@media (max-width: 768px) {
  header {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 18px 10px 16px 10px;
  }
  header nav {
    display: none;
  }
  .cta-btn {
    margin-left: 12px;
    padding: 10px 16px;
    font-size: 1rem;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 32px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .card-container, .features-grid, .content-grid {
    gap: 14px;
  }
  .features-grid {
    flex-direction: column;
  }
  .features-grid > div {
    max-width: 100%;
    padding: 16px 12px;
    font-size: 0.97em;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
    font-size: 0.96rem;
    gap: 10px;
    margin-bottom: 14px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 9px;
    font-size: 0.93rem;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1rem; }
  .container {
    padding: 0 4px;
  }
  footer {
    padding: 30px 6px 12px 6px;
    gap: 11px;
  }
  .footer-contact {
    font-size: 0.89rem;
  }
  .cookie-modal {
    padding: 20px 6px 18px 6px;
  }
  .cookie-banner {
    padding: 16px 3px 12px 3px;
    font-size: 0.96rem;
  }
}

/* ANIMATION & MICROINTERACTIONS */
.cta-btn,
.features-grid > div,
.card,
.testimonial-card,
.cookie-banner button,
.cookie-modal button {
  transition: background 0.2s, color 0.15s, box-shadow 0.18s, transform 0.19s;
}
.mobile-nav a {
  transition: color 0.16s, border-color 0.16s;
}

/* SCROLLBARS (elegant, subtle) */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: #B49C7316;
  border-radius: 24px;
}
::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 20px;
}

/* ACCESSIBILITY */
:focus {
  outline: 2px dashed #B49C73;
  outline-offset: 2px;
}

/* ACCESSORY CLASSES */
.collapse {
  display: none;
}
.hidden {
  display: none!important;
}

/* UTILITY: Distinctive section backgrounds */
.section.bg-accent {
  background: #EDEDED;
}
.section.bg-primary {
  background: #263238;
  color: #FFF;
}
.section.bg-primary h1,
.section.bg-primary h2,
.section.bg-primary h3,
.section.bg-primary h4 {
  color: #FFF;
}

/* FIX: HTML CLASS MATCHING */
/* .section, .card-container, .card, .content-grid, .text-image-section, .testimonial-card, .feature-item all covered */

/* END CSS */
