/*==================================*
  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;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #F7F6F2;
  color: #2B3541;
  font-family: 'Lato', Arial, sans-serif;
  min-height: 100vh;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: background 0.2s, color 0.2s;
}
:focus {
  outline: 2px solid #A18C6B;
  outline-offset: 2px;
}

/*==================================*
  Typography & Brand Font
*===================================*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Times, serif;
  color: #2B3541;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  line-height: 1.13;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: 0.2px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #2B3541;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, .lead, li, blockquote {
  font-family: 'Lato', Arial, sans-serif;
  color: #2B3541;
  font-size: 1rem;
  margin-bottom: 16px;
}
.lead {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 28px;
  color: #2B3541;
}
strong {
  font-weight: 700;
  color: #2B3541;
}
blockquote {
  font-family: 'Playfair Display', Times, serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #2B3541;
  border-left: 4px solid #A18C6B;
  padding-left: 16px;
  margin: 0 0 12px;
  background: transparent;
}
ul, ol {
  margin-left: 16px;
  margin-bottom: 20px;
}
ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
}
ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  background: #A18C6B;
  border-radius: 50%;
  display: inline-block;
}
ol li {
  list-style: decimal;
  padding-left: 4px;
  margin-left: 18px;
  margin-bottom: 12px;
}

/*==================================*
  Layout Containers
*===================================*/
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1180px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  background: none;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}
.text-section {
  max-width: 720px;
  margin: 0 auto;
  align-items: flex-start;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 19px 0 rgba(43,53,65,0.07);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  min-width: 220px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 28px 0 rgba(161,140,107,0.20);
}

/* Visual "card" for different blocks */
.case-study {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px 0 rgba(43,53,65,0.05);
  padding: 30px 24px;
  margin-bottom: 24px;
  border-left: 4px solid #A18C6B;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Spacing for testimonial blocks */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 3px 18px 0 rgba(43,53,65,0.06);
  border: 1.5px solid #EDE8DE;
  transition: box-shadow 0.22s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 22px 0 rgba(161,140,107, 0.17);
}

.testimonial-details {
  font-size: 1rem;
  color: #2B3541;
  opacity: 0.85;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(43,53,65,0.06);
  padding: 28px 22px 19px 22px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 330px;
  margin-bottom: 12px;
  border-top: 3px solid #A18C6B;
  transition: box-shadow 0.2s, border-top 0.2s;
  text-align: center;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 32px 0 rgba(161,140,107,0.18);
  border-top: 3.5px solid #D5C1A4;
}
.feature-grid h3 {
  color: #2B3541;
  margin-bottom: 0.8em;
  margin-top: 0.7em;
}
.feature-grid p {
  color: #2B3541;
  font-size: 1rem;
}
.feature-grid img {
  max-width: 48px;
  margin: 0 auto;
}

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

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-top, .footer-contact, .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-top {
  flex-direction: row;
  gap: 34px;
  padding-bottom: 13px;
  border-bottom: 1px solid #EDE8DE;
  margin-bottom: 18px;
}
.footer-nav {
  display: flex;
  gap: 20px;
}
.footer-nav a {
  color: #2B3541;
  font-size: 1rem;
  opacity: 0.93;
  font-family: 'Lato', Arial, sans-serif;
}
.footer-nav a:hover {
  color: #A18C6B;
  opacity: 1;
  text-decoration: underline;
  transition: color 0.18s;
}
.footer-contact {
  flex-wrap: wrap;
  font-size: 0.97rem;
  color: #685E4F;
  opacity: 0.82;
  padding: 10px 0 12px 0;
  gap: 14px;
}
.footer-contact img {
  width: 19px;
  margin-right: 5px;
}
.footer-bottom {
  justify-content: center;
  font-size: 0.95rem;
  color: #BBB1A1;
  opacity: 0.68;
  padding-bottom: 12px;
}

/*==================================*
  Navigation & Header
*===================================*/
header {
  background: #fff;
  box-shadow: 0 2px 20px 0 rgba(43,53,65,0.04);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 10px 20px;
  max-width: 1180px;
}
header img {
  height: 47px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  color: #2B3541;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  opacity: 0.92;
}
.main-nav a:hover,
.main-nav .cta-button:hover {
  color: #A18C6B;
  opacity: 1;
}
.cta-button {
  background: #A18C6B;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  border-radius: 25px;
  padding: 9px 30px;
  box-shadow: 0 2px 10px 0 rgba(161,140,107,0.13);
  font-weight: 700;
  letter-spacing: 0.2px;
  border: none;
  margin-left: 8px;
  transition: background 0.28s, color 0.18s, box-shadow 0.25s;
  display: inline-block;
  cursor: pointer;
  outline: none;
}
.cta-button:hover,
.cta-button:focus {
  background: #2B3541;
  color: #F7F6F2;
  box-shadow: 0 6px 22px 0 rgba(43,53,65,0.08);
}

/*==================================*
  MOBILE NAVIGATION
*===================================*/
.mobile-menu-toggle {
  background: #fff;
  color: #A18C6B;
  font-size: 2.3rem;
  border-radius: 12px;
  padding: 5px 16px;
  border: 1px solid #E9E3D6;
  display: none;
  z-index: 99;
  transition: background 0.18s, color 0.16s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F7F6F2;
  color: #2B3541;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(43,53,65,0.97);
  transform: translateX(-100%);
  will-change: transform;
  transition: transform 0.45s cubic-bezier(.7,.22,.14,1.01);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: none;
  color: #fff;
  font-size: 2.1rem;
  border-radius: 8px;
  padding: 5px 14px;
  z-index: 1110;
  cursor: pointer;
  transition: background 0.16s, color 0.13s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #A18C6B;
  color: #fff !important;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 90px;
  width: 100%;
  align-items: center;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 16px;
  width: 90%;
  text-align: center;
  transition: background 0.14s, color 0.15s;
  margin-bottom: 2px;
  letter-spacing: 0.7px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A18C6B;
  color: #fff;
}

@media (max-width: 990px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 991px) {
  .mobile-menu { display: none !important; }
}

/*==================================*
  Cookie Consent Banner + Modal
*===================================*/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #2B3541;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  z-index: 3000;
  box-shadow: 0 -3px 17px 0 rgba(43,53,65,0.13);
  font-family: 'Lato', Arial, sans-serif;
  transition: transform 0.35s cubic-bezier(.67,.12,.11,1.01), opacity 0.3s;
  gap: 18px;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-text {
  flex: 1 1 0;
  font-size: 0.99rem;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  font-size: 1rem;
  padding: 8px 24px;
  border-radius: 20px;
  font-family: 'Playfair Display', serif;
  border: none;
  font-weight: 500;
  background: #A18C6B;
  color: #fff;
  margin: 0 0 0 2px;
  box-shadow: 0 1px 8px 0 rgba(161,140,107,0.13);
  transition: background 0.18s, color 0.13s;
}
.cookie-btn.settings {
  background: #fff;
  color: #A18C6B;
  border: 1.5px solid #A18C6B;
}
.cookie-btn.reject {
  background: #F7F6F2;
  color: #2B3541;
  border: 1.5px solid #A18C6B;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #2B3541;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #A18C6B;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #A18C6B;
  color: #fff;
}

.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3100;
  background: rgba(43,53,65,0.88);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  color: #2B3541;
  border-radius: 16px;
  padding: 36px 32px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0 12px 44px 0 rgba(43,53,65,0.17);
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  color: #2B3541;
  font-size: 2rem;
  border-radius: 10px;
  padding: 5px 12px;
  cursor: pointer;
  transition: background 0.13s, color 0.11s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  background: #A18C6B;
  color: #fff;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.cookie-category input[type='checkbox'] {
  width: 22px;
  height: 22px;
  accent-color: #A18C6B;
}
.cookie-category label {
  font-size: 1.1rem;
  font-weight: 500;
  color: #2B3541;
  font-family: 'Lato', Arial, sans-serif;
}
.cookie-category .essential-label {
  color: #A18C6B;
  font-weight: 600;
}

/*==================================*
  Buttons & Links
*===================================*/
button, .cta-button, .cookie-btn {
  transition: background 0.18s, color 0.15s, box-shadow 0.19s;
}

/*==================================*
  Trust signals etc
*===================================*/
.trust-signals {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
  font-size: 1rem;
  color: #A18C6B;
  font-family: 'Lato', Arial,sans-serif;
  font-weight: 500;
}
.trust-signals img {
  width: 28px;
}

.usp-icons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin: 20px 0 0 0;
  align-items: center;
}
.usp-icons img {
  width: 36px;
  opacity: 0.96;
}

.milestones {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 18px;
  font-size: 1rem;
  color: #A18C6B;
}
.milestones img {
  width: 20px;
  margin-right: 6px;
}

/*==================================*
  Responsive Design
*===================================*/
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding: 0 10px; }
  .section { padding: 28px 10px; margin-bottom: 38px; }
  .content-wrapper, .content-grid, .feature-grid, .card-container {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature-grid > div {
    max-width: 100vw;
    padding: 24px 13px 15px 13px;
  }
  .feature-item { gap: 9px; }
  .footer-top, .footer-contact { flex-direction: column; gap: 10px; align-items: flex-start; }
  .footer-contact { font-size: 0.97rem; }
  .footer-bottom { font-size: 0.91rem; }
  .case-study { padding: 16px 11px; }
  .testimonial-card { padding: 13px 8px; gap: 12px; }
  .text-section { padding: 0 2px; }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
    align-items: stretch;
  }
  .usp-icons { gap: 12px; }
  .milestones { flex-direction: column; gap: 6px; }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 10px;
    gap: 10px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.13rem; }
  .cta-button { font-size: 0.97rem; padding: 7px 14px; }
  .cookie-modal-content { padding: 16px 8px; min-width: 85vw; }
}

/*==================================*
  Miscellaneous Elements
*===================================*/
::-webkit-input-placeholder { color: #A18C6B; opacity: 0.92;}
::-moz-placeholder { color: #A18C6B; opacity: 0.92;}
:-ms-input-placeholder { color: #A18C6B; opacity: 0.92;}
::placeholder { color: #A18C6B; opacity: 0.92;}

hr {
  border: none;
  border-bottom: 1.5px solid #EDE8DE;
  margin: 34px 0;
}

/*==================================*
  Animations
*===================================*/
@keyframes fade-slide-up {
  from { opacity: 0; transform: translateY(35px); }
  to { opacity: 1; transform: none; }
}
.section, .testimonial-card, .feature-grid > div, .case-study {
  animation: fade-slide-up 0.6s cubic-bezier(.55,.06,.57,.97) backwards;
}

/*==================================*
  Selection Styling
*===================================*/
::selection {
  background: #A18C6B;
  color: #fff;
}

/*==================================*
  High-Contrast Testimonial Section
*===================================*/
.testimonial-card,
.testimonial-details {
  background: #fff;
  color: #2B3541;
}

/*==================================*
  Print
*===================================*/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  .section { margin-bottom: 22px; page-break-inside: avoid; }
}
