/* --- CSS 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;
}
article, aside, details, figcaption, figure,  
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #E5E8ED;
  color: #1D2731;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
* {
  box-sizing: inherit;
}
a {
  color: #1D2731;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #CBB26A;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
img {
  max-width: 100%;
  display: block;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 32px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 8px 0 rgba(29,39,49,.08);
}
th, td {
  border: 1px solid #E5E8ED;
  padding: 14px 12px;
  text-align: left;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #1D2731;
}
th {
  background: #CBB26A;
  color: #1D2731;
  font-weight: 700;
}
blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: #1D2731;
  line-height: 1.4;
  margin-bottom: 14px;
  quotes: "\201C" "\201D";
}
blockquote:before { content: open-quote; color: #CBB26A; font-size: 32px; vertical-align: -20%; font-weight: 700;}
blockquote:after { content: close-quote; color: #CBB26A; font-size: 32px; vertical-align: -20%; font-weight: 700;}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1D2731;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-top: 16px;
}
h3 {
  font-size: 1.35rem;
  margin-top: 16px;
}
h4, h5, h6 {
  font-size: 1.15rem;
}
p, li {
  font-size: 1.1rem;
  color: #1D2731;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}
strong {
  font-weight: 700;
  color: #1D2731;
}
.tagline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #CBB26A;
  font-size: 1.23rem;
  letter-spacing: .03em;
  margin-bottom: 8px;
  margin-top: 12px;
}

/* --- LAYOUT CONTAINERS & FLEXBOX --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 24px 0 rgba(29,39,49,0.06);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(29,39,49,.07);
  position: relative;
  min-width: 280px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 20px;
  transition: box-shadow .3s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 32px 0 rgba(29,39,49,0.18);
}
.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;
  margin-bottom: 20px;
  background: #E5E8ED;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(29,39,49,.09);
  border-left: 8px solid #CBB26A;
  max-width: 750px;
  font-size: 1.11rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(29,39,49,0.04);
  padding: 18px;
  min-width: 180px;
  margin-bottom: 20px;
}

/* FLEX RESPONSIVE */
@media (max-width: 1000px) {
  .container {
    max-width: 90vw;
  }
}

@media (max-width: 768px) {
  .content-wrapper, .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  section {
    padding: 26px 7px;
  }
  th, td {
    font-size: 14px;
    padding: 10px 7px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.33rem;
  }
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: #1D2731;
  display: flex;
  align-items: center;
  padding: 0 0 0 0;
  min-height: 74px;
  position: relative;
  z-index: 100;
}
.logo {
  padding: 18px 22px 18px 16px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.logo img {
  height: 38px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-right: 24px;
  margin-left: auto;
}
.main-nav a {
  color: #E5E8ED;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 7px;
  letter-spacing: .03em;
  transition: background 0.19s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #CBB26A;
  color: #1D2731;
}
.cta-btn {
  background: #CBB26A;
  color: #1D2731;
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  font-weight: 700;
  border: none;
  border-radius: 9px;
  padding: 12px 25px;
  margin-left: 20px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(29,39,49,.09);
  transition: background 0.19s, color 0.17s, box-shadow 0.2s, transform .1s;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #1D2731;
  color: #CBB26A;
  box-shadow: 0 4px 18px 0 rgba(203,178,106,0.22);
  transform: translateY(-2px) scale(1.05);
}
@media (max-width: 994px) {
  .main-nav {
    display: none; 
  }
  .cta-btn {
    margin-left: auto;
  }
}
@media (max-width: 480px) {
  .logo {
    padding: 13px 8px 13px 5px;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 11px 16px;
  }
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 22px;
  background: #CBB26A;
  color: #1D2731;
  border: none;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 110;
  box-shadow: 0 2px 8px 0 rgba(29,39,49,.09);
  transition: background .18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #1D2731;
  color: #CBB26A;
}
@media (max-width: 994px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: #1D2731;
  color: #E5E8ED;
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform .32s cubic-bezier(.65,.02,.27,.97);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding-top: 18px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: #CBB26A;
  color: #1D2731;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.9rem;
  margin: 12px 22px 0 0;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(29,39,49,.19);
  transition: background .15s, color .15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #1D2731;
  color: #CBB26A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 45px 32px 32px 37px;
  gap: 16px;
}
.mobile-nav a {
  color: #E5E8ED;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 12px 0;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #CBB26A;
  color: #1D2731;
}
@media (max-width: 400px) {
  .mobile-nav {
    padding: 35px 6vw 18px 8vw;
    font-size: 1.1rem;
  }
}

/* --- MAIN & FLEX SECTIONS --- */
main {
  min-height: 68vh;
  background: #E5E8ED;
  padding-top: 12px;
  padding-bottom: 36px;
}
section > .container > h2:not(:first-child) {
  margin-top: 24px;
}

/* --- TESTIMONIALS --- */
.testimonial-card blockquote,
.testimonial-card p {
  color: #1D2731;
}
.testimonial-card p {
  font-size: 1rem;
  margin: 0;
}
@media (max-width: 1000px) {
  .testimonial-card {
    max-width: 100%;
    border-radius: 14px;
  }
}

/* --- BUTTONS --- */
button,
input[type="button"],
input[type="submit"] {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.06rem;
  border: none;
  border-radius: 8px;
  background: #CBB26A;
  color: #1D2731;
  padding: 11px 23px;
  cursor: pointer;
  transition: background 0.17s, color 0.18s, box-shadow .15s, transform .09s;
}
button:hover, button:focus,
input[type="button"]:hover, input[type="submit"]:hover {
  background: #1D2731;
  color: #CBB26A;
  box-shadow: 0 4px 14px 0 rgba(203,178,106,0.13);
  transform: translateY(-1px) scale(1.03);
}

/* --- FOOTER --- */
footer {
  padding: 32px 0 0 0;
  background: #1D2731;
  color: #E5E8ED;
  box-shadow: 0 -2px 18px 0 rgba(29,39,49,0.07);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-navigation {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #CBB26A;
  margin-bottom: 6px;
}
.footer-navigation a {
  color: #CBB26A;
  transition: color 0.21s;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  color: #E5E8ED;
}
.footer-contact {
  font-family: 'Roboto', Arial, sans-serif;
  color: #E5E8ED;
  font-size: 0.99rem;
}
.footer-contact a {
  color: #CBB26A;
  text-decoration: underline;
  font-weight: 600;
}
.footer-contact a:hover {
  color: #E5E8ED;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.99rem;
  letter-spacing: .01em;
}
.footer-social img {
  width: 28px;
  height: 28px;
  margin-right: 2px;
  filter: grayscale(0%) brightness(1) contrast(1.6);
  transition: filter .18s;
  background: #fff;
  border-radius: 7px;
  border: 1.5px solid #CBB26A;
  padding: 3px;
}
.footer-social img:hover {
  filter: grayscale(0) brightness(1.42) contrast(1.3);
  background: #CBB26A;
}
@media (max-width: 768px) {
  footer .container {
    gap: 12px;
  }
  .footer-social {
    gap: 8px;
    font-size: 0.95rem;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1D2731;
  color: #fff;
  z-index: 2500;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  justify-content: space-between;
  padding: 22px 24px;
  box-shadow: 0 -2px 28px 0 rgba(29,39,49,0.19);
  transition: transform .32s cubic-bezier(.65,.02,.27,.97), opacity .24s;
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.cookie-banner .cookie-text {
  flex: 1;
  font-size: 1.05rem;
  color: #fff;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  font-size: 1rem;
  padding: 10px 18px;
  min-width: 112px;
  margin: 0;
  box-shadow: none;
  border-radius: 7px;
  border: 1.3px solid #CBB26A;
  background: #CBB26A;
  color: #1D2731;
  transition: background .15s, color .15s;
}
.cookie-banner button.cookie-settings {
  background: #1D2731;
  color: #CBB26A;
  border: 1.3px solid #CBB26A;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #fff;
  color: #1D2731;
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: #CBB26A;
  color: #1D2731;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 10px;
    font-size: 1em;
  }
  .cookie-banner .cookie-actions {
    gap: 8px;
  }
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal-backdrop {
  background: rgba(29, 39, 49, 0.56);
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 2600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.cookie-modal-backdrop.visible {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #1D2731;
  border-radius: 18px;
  box-shadow: 0 6px 60px 0 rgba(29,39,49,0.20);
  width: 98vw;
  max-width: 400px;
  padding: 30px 30px 24px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
  animation: cookie-modal-fadein .28s cubic-bezier(.72,.02,.27,.91);
}
@keyframes cookie-modal-fadein {
  from { opacity: 0; transform: scale(0.90) translateY(35px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.36rem;
  margin-bottom: 12px;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 23px;
  top: 20px;
  background: #CBB26A;
  color: #1D2731;
  font-size: 1.3rem;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  transition: background .15s, color .14s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #1D2731;
  color: #CBB26A;
}
.cookie-modal .cookie-category {
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 11px;
  display:flex;
  align-items: center;
  gap: 7px;
}
.cookie-modal .cookie-category .cookie-toggle {
  margin-left: 8px;
  background: #CBB26A;
  border-radius: 7px;
  width: 36px;
  height: 22px;
  position: relative;
  display: inline-block;
  border: 1px solid #1D2731;
}
.cookie-modal .cookie-category input[type=checkbox] {
  opacity: 0;
  width: 36px; height: 22px;
  position: absolute;
  left: 0; top: 0;
  margin: 0;
  cursor: pointer;
}
.cookie-modal .cookie-category .slider {
  position: absolute;
  left: 0; top: 0;right: 0;bottom: 0;
  background: #CBB26A;
  border-radius: 7px;
  transition: background .23s;
}
.cookie-modal .cookie-category input[type=checkbox]:checked + .slider {
  background: #1D2731;
}
.cookie-modal .cookie-category .slider:before {
  content: '';
  position: absolute;
  left: 3px; top: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left .22s, background .12s;
}
.cookie-modal .cookie-category input[type=checkbox]:checked + .slider:before {
  left: 17px;
  background: #CBB26A;
}
.cookie-modal .cookie-category .essential-badge {
  margin-left: 12px;
  font-size: .98em;
  color: #CBB26A;
  font-weight: bold;
  padding: 2.5px 8px;
  border-radius: 7px;
  background: #F6F5F0;
}
.cookie-modal .modal-footer {
  margin-top: 12px;
}
.cookie-modal .modal-footer button {
  margin-right: 7px;
  font-size: 1rem;
}

/* --- SCROLLBAR --- */
body::-webkit-scrollbar { width: 11px; background-color: #E5E8ED; }
body::-webkit-scrollbar-thumb { background: #CBB26A; border-radius: 11px; }

/* --- MICRO-ANIMATIONS --- */
a, button, .cta-btn, .main-nav a, .mobile-nav a {
  transition: background .18s, color .20s, box-shadow .19s, transform .1s;
}
.card, .testimonial-card, .feature-item, section {
  transition: box-shadow .21s, transform .17s;
}
.card:hover, .feature-item:hover {
  transform: translateY(-3px) scale(1.012); box-shadow: 0 7px 38px 0 rgba(203,178,106,.15);
}

/* --- SELECTION & FOCUS COLORS --- */
::selection {
  background: #CBB26A;
  color: #1D2731;
}
input:focus, textarea:focus, select:focus, button:focus {
  outline: 2px solid #CBB26A;
  outline-offset: 2px;
}

/* --- MISC: Space between cards/sections --- */
section:not(:last-child) {
  margin-bottom: 60px;
}
.card:not(:last-child),
.testimonial-card:not(:last-child),
.feature-item:not(:last-child),
.text-section p:not(:last-child) {
  margin-bottom: 20px;
}

/* --- RESPONSIVE UTILITIES --- */
@media (max-width: 600px) {
  .container {
    padding: 0 5px;
  }
  .footer-contact p,
  .footer-contact {
    font-size: 0.89rem;
  }
}

/* --- GEOMETRIC DECORATIVE ELEMENTS (OPTIONAL) --- */
/* Add styling for geometric shapes for visuals, e.g. with before/after, only for non-content decor. */

/* --- END --- */