/* ========= 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, main, 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;
}
/* Set base line heights and box-sizing */
*, *:before, *:after {
  box-sizing: inherit;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #232536;
  background-color: #F5F4EF;
  min-height: 100vh;
  line-height: 1.7;
  position: relative;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  padding-left: 1.25rem;
}
a {
  color: #19223B;
  text-decoration: none;
  transition: color 0.15s;
}
a:focus {
  outline: 2px solid #BDA76E;
  outline-offset: 2px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Roboto', serif;
  color: #19223B;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
p, blockquote, ul, ol {
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
}
blockquote {
  font-size: 1.1875rem;
  font-style: italic;
  border-left: 4px solid #BDA76E;
  padding-left: 16px;
  color: #4F5567;
  background: #F9F7F1;
  margin-bottom: 20px;
}
blockquote span {
  display: block;
  margin-top: 8px;
  font-size: 0.92em;
  color: #888DA8;
}

/* ========= CONTAINERS, SECTIONS, SPACING ========= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 10px 0 rgba(25,34,59,0.06), 0 5px 20px 0 rgba(25,34,59,0.08);
  padding: 32px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  flex: 1 1 270px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 4px 24px 0 rgba(25,34,59,0.15);
  transform: translateY(-4px) scale(1.01);
}
.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: 16px;
  padding: 24px 24px 16px 24px;
  background: #fff;
  box-shadow: 0 1px 8px 0 rgba(25,34,59,0.10);
  border-radius: 10px;
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 100%;
  transition: box-shadow 0.15s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px 0 rgba(25,34,59,0.17);
  transform: scale(1.01);
}
.testimonial-card p {
  color: #232536;
  font-size: 1.07rem;
  margin-bottom: 0;
}
.testimonial-author {
  color: #5E6986;
  font-size: 0.98em;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 0.2em;
  font-style: normal;
}

.feature-grid, .service-list, .service-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-grid li,
.service-highlights li,
.service-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.0625rem;
  background: #F5F4EF;
  border-radius: 7px;
  padding: 14px 18px;
  box-shadow: 0 0.5px 4px rgba(25,34,59,0.03);
  transition: box-shadow 0.17s;
}
.feature-grid li img,
.service-list li img,
.service-highlights li img {
  width: 38px;
  min-width: 34px;
  height: auto;
  background: #e6e8ee;
  border-radius: 7px;
  padding: 4px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***** NAVIGATION *****/
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(25,34,59,0.05);
  position: relative;
  z-index: 990;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  max-width: 1160px;
  margin: 0 auto;
}
.main-nav img {
  height: 50px;
  width: auto;
  margin-right: 30px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  list-style: none;
}
.main-nav li {
  margin: 0 0 0 0;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #232536;
  transition: color 0.16s;
  padding: 5px 4px;
  border-radius: 3px;
  letter-spacing: 0.2px;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #BDA76E;
  background: rgba(189,167,110,0.06);
}
.main-nav .cta-btn {
  margin-left: 34px;
}

/***** CTA BUTTONS *****/
.cta-btn {
  font-family: 'Playfair Display', 'Roboto', serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: #fff;
  background: #19223B;
  padding: 13px 32px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  box-shadow: 0 1px 6px 0 rgba(25,34,59,0.09);
  transition: background 0.18s, color 0.16s, box-shadow 0.15s, transform 0.13s;
  outline: none;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: #BDA76E;
  color: #19223B;
  box-shadow: 0 3px 16px 0 rgba(25,34,59,0.15);
  transform: translateY(-2px) scale(1.03);
}

/***** FOOTER *****/
footer {
  background: #19223B;
  padding: 32px 0 18px 0;
  color: #fff;
  font-size: 0.99rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #BDA76E;
  text-decoration: underline;
  margin: 0 4px;
  font-size: 1rem;
  transition: color 0.15s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #fff;
  text-decoration: none;
}
.footer-contact {
  text-align: center;
  color: #ACB3C4;
  margin-top: 8px;
}
.footer-contact p {
  margin-bottom: 6px;
  color: #ACB3C4;
  font-size: 0.97rem;
  word-break: break-word;
}

/***** SERVICE PRICES *****/
.service-price {
  font-weight: bold;
  color: #BDA76E;
  font-size: 1em;
  margin-left: 10px;
}

/***** CONTACT DATA *****/
.contact-data {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #232536;
}
.contact-data img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  position: relative;
  top: 4px;
}
.content-wrapper .contact-data p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  color: #232536;
}

/***** RESPONSIVE FLEXBOX SECTIONS (MANDATORY) *****/
@media (max-width: 1024px) {
  .container {
    max-width: 97vw;
  }
  .main-nav ul {
    gap: 10px;
  }
  .main-nav .cta-btn {
    margin-left: 7px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    padding: 12px 0;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.34rem;
  }
  .section {
    padding: 30px 10px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .main-nav ul,
  .main-nav .cta-btn {
    display: none !important;
  }
  .main-nav {
    flex-direction: row;
    padding: 11px 0 8px 0;
  }
  .main-nav img {
    height: 36px;
    margin-right: 15px;
  }
  .section {
    margin-bottom: 28px;
    padding: 20px 4px;
  }
  h1 {
    font-size: 1.38rem;
    margin-bottom: 15px;
  }
  h2 {
    font-size: 1.07rem;
    margin-bottom: 10px;
  }
  .container {
    padding: 0 8px;
  }
  .content-wrapper, .text-section {
    gap: 14px;
  }
  .testimonial-card {
    padding: 14px 14px 8px 14px;
    font-size: 0.96rem;
  }
  .card {
    padding: 18px 10px;
  }
  .card-container {
    gap: 12px;
  }
  .feature-grid,
  .service-list,
  .service-highlights {
    gap: 12px;
  }
  .feature-grid li,
  .service-highlights li,
  .service-list li {
    padding: 8px 8px;
    gap: 9px;
  }
  .contact-data img {
    width: 18px;
    height: 18px;
  }
  .testimonial-card {
    min-width: 130px;
  }
  .card {
    min-width: 0;
  }
}
@media (max-width: 630px) {
  .container {
    padding: 0 3px;
  }
}
/***** Text-Image Horizontal Layout Adaptation *****/
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}

/***** FLEX LAYOUTS for CARDS and GRIDS *****/
.card-container,
.content-grid,
.feature-grid,
.service-list,
.service-highlights,
.footer-nav {
  display: flex;
  flex-wrap: wrap;
}

/***** MOBILE BURGER MENU & MOBILE MENU OVERLAY *****/
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  font-size: 2.1rem;
  font-weight: 700;
  color: #19223B;
  padding: 7px 15px;
  border-radius: 9px;
  cursor: pointer;
  box-shadow: 0 1px 10px 0 rgba(25,34,59,0.08);
  transition: background 0.13s, box-shadow 0.16s;
  position: absolute;
  top: 14px;
  right: 22px;
  z-index: 1202;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #BDA76E;
  color: #fff;
  box-shadow: 0 2px 16px 0 rgba(25,34,59,0.16);
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(25,34,59, 0.97);
  transform: translateX(-100vw);
  opacity: 0;
  z-index: 2002;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.6,0,.2,1), opacity 0.24s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: #fff;
  margin: 24px 28px 6px 0;
  cursor: pointer;
  transition: color 0.14s;
  z-index: 3032;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #BDA76E;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: center;
  margin-top: 35px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Playfair Display', 'Roboto', serif;
  font-size: 1.26rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 18px 12px;
  border-radius: 6px;
  text-align: center;
  width: 80vw;
  display: block;
  transition: background 0.13s, color 0.13s, transform 0.13s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #BDA76E;
  color: #19223B;
  transform: scale(1.04);
}

/***** COOKIE CONSENT BANNER & COOKIE MODAL *****/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #232536;
  box-shadow: 0 -2px 18px 0 rgba(25,34,59,0.15);
  padding: 22px 8vw 22px 8vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 34px;
  justify-content: space-between;
  z-index: 4200;
  font-size: 1rem;
  transition: transform 0.30s cubic-bezier(.81,0,.29,1.01), opacity 0.22s;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p {
  flex: 2 1 0;
  margin: 0;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  padding: 9px 19px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.13s, color 0.14s, box-shadow 0.11s;
}
.cookie-btn.accept {
  background: #19223B;
  color: #fff;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #BDA76E;
  color: #19223B;
}
.cookie-btn.reject {
  background: #fff;
  color: #19223B;
  border: 1.5px solid #19223B;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #eaecee;
}
.cookie-btn.settings {
  background: #BDA76E;
  color: #19223B;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #ece7d9;
  color: #232536;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 18px 12px 18px 12px;
    font-size: 0.98rem;
  }
  .cookie-banner-buttons {
    gap: 8px;
  }
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(25,34,59,0.72);
  z-index: 5000;
  display: none;
  justify-content: center;
  align-items: center;
  transition: opacity 0.18s;
}
.cookie-modal-overlay.show {
  display: flex;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  padding: 35px 28px 22px 28px;
  box-shadow: 0 4px 36px 0 rgba(25,34,59,0.24);
  min-width: 290px;
  max-width: 92vw;
  font-size: 1.04rem;
  color: #232536;
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
  animation: cookie-modal-in 0.24s cubic-bezier(.58,0,.3,1.02);
}
@keyframes cookie-modal-in {
  from { transform: translateY(60px) scale(.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.36rem;
  margin-bottom: 14px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
}
.cookie-category label {
  font-size: 1.03rem;
  flex: 0 1 180px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #BDA76E;
  width: 18px;
  height: 18px;
}
.cookie-category .locked {
  color: #878F9E;
  font-size: 0.97em;
  margin-left: 6px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 14px;
  background: transparent;
  border: none;
  font-size: 1.63rem;
  color: #BDA76E;
  cursor: pointer;
  padding: 2px 8px;
  transition: color 0.11s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #19223B;
}
@media (max-width: 600px) {
  .cookie-modal {
    padding: 18px 6px 13px 11px;
    min-width: 0;
  }
}

/***** MICRO-INTERACTIONS (subtle for professional tone) *****/
.card, .testimonial-card, .cta-btn, .feature-grid li, .service-list li, .service-highlights li, .main-nav a, .mobile-nav a {
  transition: box-shadow 0.15s, background 0.16s, color 0.13s, transform 0.13s;
}

/***** ACCESSIBILITY & MISC *****/
:focus {
  outline: 2px solid #BDA76E;
  outline-offset: 2px;
}
/* Hide scrollbars for overlayed menus/modals on touch devices */
.mobile-menu, .cookie-modal-overlay {
  -webkit-overflow-scrolling: touch;
}

/***** Z-INDEX LAYERS (for overlays and menus) *****/
header { z-index: 990; }
footer { z-index: 1; }
.mobile-menu { z-index: 2002; }
.mobile-menu-toggle { z-index: 2202; }
.cookie-banner { z-index: 4200; }
.cookie-modal-overlay { z-index: 5000; }

/***** PRINT FRIENDLY (optional) *****/
@media print {
  .main-nav, .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  .container {
    max-width: 100vw;
    padding: 0;
  }
  body {
    color: #000;
    background: #fff;
  }
}

/***** UTILITY CLASSES *****/
.mb-2  { margin-bottom: 16px !important; }
.mb-3  { margin-bottom: 24px !important; }
.mb-4  { margin-bottom: 32px !important; }
.mt-2  { margin-top: 16px !important; }
.mt-3  { margin-top: 24px !important; }
.mt-4  { margin-top: 32px !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-bold  { font-weight: bold !important; }

/***** HIDE/SHOW for JS or ARIA disabling/enabling *****/
[hidden], .hidden { display: none !important; }
  