/* ========================
   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 {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  color: #23232A;
  background: #F5F5F2;
  min-height: 100vh;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
a {
  color: #BDA276;
  text-decoration: none;
  transition: color .22s;
}
a:hover, a:focus {
  color: #23232A;
  text-decoration: underline;
}

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.01em;
}
h1 {font-size: 2.75rem; color: #23232A; margin-bottom: 12px;}
h2 {font-size: 2rem;    color: #23232A; margin-bottom: 16px;}
h3 {font-size: 1.25rem; margin-bottom: 8px; color: #23232A;}
h4, h5, h6 {margin-bottom: 8px;}

p, li, .subheadline, .text-section {
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 400;
  color: #23232A;
  font-size: 1rem;
}

strong, b {
  font-weight: 700;
}

/* ===============
   LAYOUT CLASSES
================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(35,35,42,0.08);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 14px rgba(189,162,118,0.16);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .18s cubic-bezier(.61, .6, .33, 1) scale(.99);
}
.card:hover {
  box-shadow: 0 6px 36px rgba(189,162,118,0.19);
  transform: translateY(-2px) scale(1.018);
  z-index: 2;
}

.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: 20px;
  background: #F5F5F2;
  border-left: 6px solid #BDA276;
  box-shadow: 0 2px 20px rgba(35,35,42,.06);
  padding: 20px 30px;
  margin-bottom: 20px;
  border-radius: 14px;
  transition: box-shadow .18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(189,162,118,0.18);
}
.testimonial-client {
  color: #23232A;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  margin-top: 10px;
}

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

/* =================
   HERO / HEADER
=================== */
.hero,
.hero-contact {
  padding: 60px 0 40px 0;
  background: linear-gradient(90deg, #23232A 57%, #BDA276 100%);
  color: #fff;
  border-radius: 0 0 36px 36px;
  margin-bottom: 44px;
}
.hero h1, .hero-contact h1 {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 13px;
  letter-spacing: -.015em;
}
.subheadline {
  color: #F5F5F2;
  font-size: 1.22rem;
  margin-bottom: 30px;
  font-weight: 500;
  max-width: 530px;
}
.hero .cta-primary, .hero-contact .cta-primary {
  margin-top: 14px;
}

/* ===================
     NAVIGATION
===================== */
header {
  background: #fff;
  box-shadow: 0 6px 22px rgba(35,35,42,0.08);
  border-radius: 0 0 24px 24px;
  position: relative;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 18px 0;
  width: 100%;
}
.main-nav > a img {
  height: 43px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.main-nav li a {
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  color: #23232A;
  letter-spacing: .01em;
  padding: 5px 14px;
  border-radius: 8px;
  transition: background .18s, color .13s;
}
.main-nav li a:hover {
  background: #BDA276;
  color: #fff;
}
.cta-primary {
  display: inline-block;
  background: #BDA276;
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.12rem;
  letter-spacing: .055em;
  box-shadow: 0 1px 8px rgba(189,162,118,0.10);
  margin-left: 18px;
  transition: background .18s, transform .13s, box-shadow .18s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #23232A;
  color: #fff;
  box-shadow: 0 3px 18px rgba(35,35,42,0.12);
  transform: translateY(-2px) scale(1.03);
}

.cta-secondary {
  display: inline-block;
  background: #23232A;
  color: #fff;
  padding: 10px 25px;
  border-radius: 10px;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .04em;
  margin-top: 20px;
  border: 2px solid #BDA276;
  transition: background .17s, color .15s, border .14s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #BDA276;
  color: #fff;
  border-color: #23232A;
}

/* ===============
   MOBILE NAV
================= */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 28px;
  top: 23px;
  background: #BDA276;
  color: #fff;
  border-radius: 7px;
  border: none;
  font-size: 2rem;
  width: 45px;
  height: 45px;
  cursor: pointer;
  z-index: 220;
  box-shadow: 0 1px 8px rgba(189,162,118,0.11);
  transition: background .18s, color .15s, box-shadow .19s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #23232A;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,35,42,0.97);
  z-index: 5555;
  transform: translateX(100%);
  transition: transform .37s cubic-bezier(.76,.09,.22,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #BDA276;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 2.1rem;
  width: 50px;
  height: 50px;
  margin: 34px 26px 10px 0;
  cursor: pointer;
  box-shadow: 0 1px 12px rgba(189,162,118,0.13);
  transition: background .17s, color .15s;
}
.mobile-menu-close:focus {
  outline: 2px solid #F5F5F2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-top: 28px;
  width: 85vw;
  max-width: 420px;
  padding: 0 54px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.28rem;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 0;
  border-radius: 6px;
  width: 100%;
  letter-spacing: .03em;
  transition: background .13s, color .13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #BDA276;
  color: #23232A;
}

@media (max-width: 990px) {
  .main-nav ul {
    gap: 10px;
  }
  .main-nav {
    gap: 12px;
  }
  .main-nav .cta-primary {
    margin-left: 5px;
    padding: 10px 18px;
  }
}

@media (max-width: 860px) {
  .main-nav ul {
    display: none;
  }
  .main-nav .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .mobile-nav {
    padding: 0 18px;
    width: 95vw;
    max-width: 99vw;
  }
  .mobile-menu-close {
    margin-right: 10px;
  }
}

/* ==========================
      FLEX LAYOUTS (MANDATORY)
============================== */
.features {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 60px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(189,162,118,.10);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 325px;
  min-width: 230px;
  gap: 18px;
  transition: box-shadow .17s, transform .14s;
}
.feature-grid li:hover {
  box-shadow: 0 8px 42px rgba(189,162,118,0.19);
  transform: scale(1.04);
}
.feature-grid img {
  width: 40px;
  height: 40px;
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.services-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 14px rgba(189,162,118,0.10);
  padding: 22px 18px 22px 18px;
  flex: 1 1 260px;
  min-width: 210px;
  max-width: 304px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
}
.services-list li h3 {
  font-size: 1.125rem;
  color: #BDA276;
}
.services-list li a {
  color: #23232A;
  font-weight: 700;
  text-decoration: underline;
  transition: color .16s;
  margin-top: 12px;
}
.services-list li a:hover { color: #BDA276; }

/* Cards, USPs, Project Features */
.usp-features ul,
.project-features ul,
.market-features ul,
.design-values ul,
.values ul,
.why-pristine ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.usp-features ul li,
.project-features ul li,
.market-features ul li,
.design-values ul li,
.values ul li,
.why-pristine ul li {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 14px rgba(189,162,118,0.10);
  padding: 18px 20px 15px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.02rem;
  color: #23232A;
  min-width: 180px;
  margin-bottom: 20px;
}
.usp-features ul li img,
.project-features ul li img,
.design-values ul li img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* ===============
   TESTIMONIALS
================ */
.testimonials, .testimonials-slider, .testimonials-success, 
.testimonials-design, .testimonials-expert, .testimonials-market {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(35,35,42,0.07);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials h2, .testimonials-slider h2, .testimonials-success h2,
.testimonials-design h2, .testimonials-expert h2, .testimonials-market h2 {
  text-align: left;
}

/* ===============
   CONTACT & FORMS
================ */
.contact-short, .contact-details {
  background: #23232A;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 22px rgba(35,35,42,.11);
  margin-bottom: 58px;
  padding: 45px 28px 45px 28px;
}
.contact-short h2, .contact-details h2 {
  color: #BDA276;
}
.contact-short p,
.contact-details .text-section,
.contact-short .address-snippet {
  color: #F5F5F2;
  font-size: 1.05rem;
}
.contact-short .cta-secondary { margin-top: 20px; background: #BDA276; color:#23232A; }
.contact-short .cta-secondary:hover { color: #fff; background: #23232A; border-color:#BDA276; }

/* Thank you & policy pages */
.thank-you-confirmation, .privacy-policy, .terms-of-use, .gdpr-info, .cookie-policy {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(189,162,118,0.13);
  margin-bottom: 64px;
  padding: 52px 24px 32px 24px;
}
.thank-you-confirmation h1 { color: #BDA276; font-size: 2.14rem; }

.text-section {
  margin-bottom: 12px;
}

/* =============
   FOOTER
============== */
footer {
  background: #23232A;
  color: #fff;
  padding: 38px 0 24px 0;
  border-radius: 23px 23px 0 0;
  font-size: 1.0rem;
  letter-spacing: .01em;
  margin-top: 60px;
  text-align: center;
  box-shadow: 0 -2px 22px rgba(35,35,42,0.09);
  width: 100%;
}
footer nav {
  margin-bottom: 8px;
}
footer nav a {
  color: #fff;
  margin: 0 8px;
  transition: color .15s;
  font-weight: 600;
}
footer nav a:hover, footer nav a:focus {
  color: #BDA276;
}
footer p {
  font-size: .98rem;
  color:#BDA276;
  margin-top: 6px;
}

/* ==============  
 COOKIE CONSENT  
=================*/
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9000;
  width: 100vw;
  background: #23232A;
  color: #fff;
  box-shadow: 0 -3px 18px rgba(35,35,42,0.23);
  padding: 20px 16px 22px 16px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .25s, transform .34s cubic-bezier(.71,0,.35,1.2);
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-consent-banner .cookie-text {
  font-size: 1rem;
  flex: 1;
  min-width: 0;
  color: #fff;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  flex-shrink: 0;
}

.cookie-btn {
  border: none;
  border-radius: 7px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s, color .14s, box-shadow .15s;
}
.cookie-btn.accept {
  background: #BDA276;
  color: #fff;
  box-shadow: 0 1px 7px rgba(189,162,118,0.13);
}
.cookie-btn.accept:hover {
  background: #fff;
  color: #BDA276;
}
.cookie-btn.reject {
  background: #fff;
  color: #23232A;
  border: 2px solid #BDA276;
}
.cookie-btn.reject:hover {
  background: #BDA276;
  color: #fff;
}
.cookie-btn.settings {
  background: #23232A;
  color: #fff;
  border: 2px solid #BDA276;
}
.cookie-btn.settings:hover {
  background: #BDA276;
  color: #23232A;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(35,35,42,0.67);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity .23s cubic-bezier(.77,.09,.15,.91);
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.cookie-modal {
  background: #fff;
  color: #23232A;
  border-radius: 18px;
  box-shadow: 0 6px 44px rgba(35,35,42,0.19);
  padding: 40px 32px 32px 32px;
  width: 97vw;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal h3 {
  font-family: 'Playfair Display', serif;
  color: #BDA276;
  font-size: 1.32rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
}
.cookie-modal label {
  font-size: 1.04rem;
  color: #23232A;
}
.cookie-modal input[type=checkbox]:disabled+label {
  color: #aaa;
  cursor: not-allowed;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 13px;
  flex-direction: row;
  justify-content: flex-end;
  margin-top: 10px;
}

/* ================
   MICRO INTERACTIONS
=================== */
.cta-primary, .cta-secondary, .cookie-btn {
  transition: background .2s cubic-bezier(.69,.11,.36,1.08), color .13s, transform .11s;
}
.card, .feature-grid li, .testimonial-card {
  transition: box-shadow .21s cubic-bezier(.81,.11,.23,1), transform .15s;
}

/* =======================
   VIBRANT ENERGETIC VARIATIONS
======================== */
.hero, .hero-contact {
  background: linear-gradient(102deg, #23232A 58%, #BDA276 98%);
  border-bottom: 7px solid #BDA276;
}
.services-list li, .feature-grid li, .project-features ul li, .usp-features ul li, .market-features ul li, .design-values ul li, .values ul li, .why-pristine ul li {
  border-left: 5px solid #BDA276;
}

/* ELECTRIC COLOR FLASH for accents on icons, images */
.feature-grid li img, .usp-features ul li img, .project-features ul li img, .design-values ul li img {
  background: #BDA276;
  padding: 5px;
  border-radius: 50%;
  box-shadow: 0 1px 6px rgba(189,162,118,0.19);
}

/* BOLD FONTS for dynamic sections */
h1, h2, h3, .cta-primary, .cta-secondary, .services-list li a {
  font-weight: 900;
  letter-spacing: .01em;
}

/* ===============
   RESPONSIVE
=============== */
@media (max-width: 1100px) {
  .feature-grid li, .services-list li {
    max-width: 100%;
    flex: 1 1 340px;
  }
}
@media (max-width: 920px) {
  .container {padding: 0 8px;}
  .hero, .hero-contact {padding: 36px 0 20px 0;}
  .services-list, .feature-grid {gap: 14px;}
  .services-list li, .feature-grid li {
    padding: 20px 10px;
    min-width: 190px;
  }
}
@media (max-width: 768px) {
  .hero h1, .hero-contact h1 {font-size: 2rem;}
  .services-list, .feature-grid, .usp-features ul, .project-features ul, .market-features ul, .design-values ul, .values ul, .why-pristine ul {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    padding: 18px 10px;
  }
  .section, .testimonials, .testimonials-slider, .testimonials-success, .testimonials-design, .testimonials-expert, .testimonials-market, .thank-you-confirmation, .privacy-policy, .terms-of-use, .gdpr-info, .cookie-policy, .contact-short, .contact-details {
    padding: 16px 6px;
    border-radius: 10px;
  }
}
@media (max-width: 500px) {
  h1 {font-size: 1.55rem;}
  h2 {font-size: 1.23rem;}
  .hero, .hero-contact {padding: 14vw 0 14vw 0; border-radius: 0 0 14px 14px;}
  .services-list li, .feature-grid li {
    padding: 13px 5px;
    min-width: unset;
    font-size: 0.97rem;
  }
  .card {
    border-radius: 8px;
  }
  .testimonial-card {
    border-radius: 7px;
    padding: 14px 6px;
  }
  .cookie-modal {
    padding: 20px 6px 16px 6px;
    border-radius: 12px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    padding: 12px 6px 13px 6px;
    gap: 8px;
    font-size: .92rem;
  }
}

/* ===============
   HELPER CLASSES
================ */
.mt-20 {margin-top: 20px;}
.mb-20 {margin-bottom: 20px;}
.mt-40 {margin-top: 40px;}
.mb-40 {margin-bottom: 40px;}
.pt-20 {padding-top: 20px;}
.pb-20 {padding-bottom: 20px;}

/****
 * No CSS grid used anywhere.
 * All sections, cards, lists, and testimonials are flexbox-based.
 * All containers and cards maintain 20px or greater margin/gap.
 * Contrasting colors in testimonial cards and review sections for readability.
 * Responsive: Mobile-first, font size and layout adjust for small screens.
 ****/
