/* ===============================================================
   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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.3;
  min-height: 100vh;
  background-color: #F4F4F4;
  color: #16212D;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  /* Slight fade-in when loading */
  animation: bodyFadeIn 0.9s cubic-bezier(0.38,0.2,0.27,1);
}
@keyframes bodyFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
img,svg {
  max-width: 100%;
  display: block;
}
a {
  color: #16212D;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #D9AB61;
}
ul, ol {
  list-style: none;
}
*:focus {
  outline: 2px dotted #D9AB61;
  outline-offset: 2px;
}

/* ===============================================================
   FONTS
   =============================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');
h1, h2, h3, .btn-primary, .nav-header a, .footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
}
h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #16212D;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #16212D;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #16212D;
}
p, li, .subtitle {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #16212D;
}
.subtitle {
  font-size: 1.125rem;
  color: #4F5F76;
  margin-bottom: 24px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.strong, strong {
  font-weight: 700;
  color: #16212D;
}

/* ===============================================================
   CONTAINER & LAYOUT FLEXBOX
   =============================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

/* ===============================================================
   HEADER NAVIGATION
   =============================================================== */
header {
  width: 100%;
  min-height: 72px;
  background: #fff;
  border-bottom: 3px solid #D9AB61;
  box-shadow: 0 4px 16px rgba(25,33,45,0.04),0 1.5px 0px #D9AB61 inset;
  z-index: 1002;
}
.nav-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  padding: 20px 0;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-size: 1rem;
  font-weight: 600;
  color: #16212D;
  padding: 8px 0;
  border-bottom: 2.5px solid transparent;
  transition: border-color 0.22s, color 0.15s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #D9AB61;
  border-color: #D9AB61;
}
header .btn-primary {
  margin-left: 20px;
}

/* MOBILE BURGER MENU STYLES */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  font-size: 2.2rem;
  color: #16212D;
  cursor: pointer;
  z-index: 1200;
  transition: color 0.19s;
  border-radius: 12px;
  padding: 4px 14px;
  margin-right: 12px;
  margin-top: 6px;
  box-shadow: 0 2px 8px rgba(25,33,45,0.08);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #D9AB61;
  background: #16212D13;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #16212Df4;
  z-index: 1300;
  transform: translateX(100%);
  transition: transform 0.39s cubic-bezier(.79,-0.02,.09,.99);
  padding-top: 42px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #D9AB61;
  font-size: 2.2rem;
  align-self: flex-end;
  margin-right: 22px;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff4e2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 32px 32px 16px 42px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  border-radius: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #D9AB61;
  background: #ffffff22;
  border-bottom: 1.5px solid #D9AB61;
}

/* Show/Hide Mobile menu on screens */
@media (max-width: 1024px) {
  .main-nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 12px;
    top: 18px;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===============================================================
   HERO SECTION
   =============================================================== */
.hero {
  background: linear-gradient(90deg, #fff 70%, #D9AB61 100%);
  background-color: #fff;
  min-height: 320px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  position: relative;
  box-shadow: 0px 2px 24px rgba(217, 171, 97, 0.04);
}
.hero .container {
  min-height: 200px;
  justify-content: center;
}
.hero h1 {
  color: #16212D;
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -1px;
  text-shadow: 1px 2px 0 #D9AB6111, 0 4px 10px #D9AB6114;
}
.hero .subtitle {
  margin-bottom: 32px;
  color: #7e6128;
  font-weight: 600;
  font-style: italic;
}
.hero .btn-primary {
  font-size: 1.13rem;
  min-width: 180px;
}

/* ===============================================================
   BUTTONS STYLES
   =============================================================== */
.btn-primary {
  background: #D9AB61;
  color: #16212D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 13px 32px;
  border: none;
  border-radius: 32px;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 4px 16px #D9AB6130, 0 1.5px 0px #F4F4F4 inset;
  transition: background 0.18s, color 0.16s, box-shadow 0.17s, transform 0.15s;
  margin-top: 6px;
  text-align: center;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #16212D;
  color: #D9AB61;
  box-shadow: 0 8px 20px #D9AB6170;
  transform: translateY(-2px) scale(1.04);
}
.btn-secondary {
  background: #16212D;
  color: #D9AB61;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 32px;
  font-size: 1rem;
  padding: 11px 22px;
  border: none;
  font-weight: 700;
  margin-top: 8px;
  transition: background 0.16s, color 0.14s, box-shadow 0.17s;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #D9AB61;
  color: #16212D;
}

/* ===============================================================
   FLEXBOX SPACING/ALIGNMENT -- MANDATORY PATTERNS
   =============================================================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px #D9AB6108;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 30px #16212D09;
  transition: box-shadow 0.17s, transform 0.17s;
  padding: 32px 24px;
  min-width: 270px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 12px 32px #D9AB6133, 0 2px 1px #16212D08 inset;
  transform: translateY(-2.5px) scale(1.01);
  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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F9F6F1;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px #D9AB6125;
  flex-direction: column;
  justify-content: flex-start;
  border-left: 8px solid #D9AB61;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px #16212D13;
  padding: 24px 20px 20px 20px;
  width: 100%;
  min-width: 240px;
  max-width: 350px;
}

/* Spacing rules: mobile-first 8px, 16px, 24px, 32px multiples */
.section:not(:last-child) {
  margin-bottom: 60px;
}
.feature-grid, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 20px;
}
.testimonial-list {
  gap: 28px;
  flex-direction: row;
  justify-content: flex-start;
}

/* ===============================================================
   FEATURES & SPECIAL SECTIONS
   =============================================================== */
.features {
  margin-bottom: 60px;
  background: #fffbe6;
  border-radius: 20px;
  box-shadow: 0 2px 24px #D9AB6110;
  padding: 40px 0 35px 0;
}
.feature-item img {
  width: 52px;
  aspect-ratio: 1/1;
  margin-bottom: 12px;
}
.feature-item h3 {
  font-size: 1.13rem;
  color: #7e6128;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 7px;
}
.feature-item p {
  color: #16212D;
  font-size: 0.97rem;
}

/* Pricing Table */
.pricing-table {
  margin-bottom: 60px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 20px #16212D07;
  padding: 40px 0;
}
.pricing-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #f8f5ed;
  margin-bottom: 20px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px #D9AB6110;
}
.pricing-table th, .pricing-table td {
  padding: 18px 16px;
  font-size: 1.05rem;
  text-align: left;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #16212D;
}
.pricing-table th {
  background: #D9AB61;
  color: #16212D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.pricing-table tr:nth-child(even) td {
  background: #f4ecd6;
}
.pricing-inclusions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
  margin-top: 18px;
}
.pricing-inclusions li {
  font-size: 0.98rem;
  color: #16212D;
  background: #fffbe2;
  border-radius: 9px;
  padding: 6px 14px;
  border: 1px solid #D9AB6165;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* List/layouts for services, team, values etc */
.services-list ul, .team ul, .values ul, .contact-details ul, .contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
  margin-bottom: 12px;
}
.services-list li, .team li, .values li {
  font-size: 1rem;
  color: #16212D;
  background: #F9F6F2;
  border-left: 5px solid #D9AB61;
  border-radius: 6px;
  padding: 10px 16px;
  box-shadow: 0 2px 4px #D9AB6108;
  font-family: 'Open Sans', Arial, sans-serif;
}
.contact-details li, .contact-info li {
  font-size: 1.04rem;
  color: #16212D;
  background: #e6e1d7;
  border-radius: 6px;
  padding: 9px 15px;
  font-family: 'Open Sans', Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px #16212D10;
  padding: 32px 18px;
  margin-top: 14px;
  width: 100%;
  max-width: 400px;
}

.info-text {
  font-style: italic;
  color: #7e6128;
  margin-top: 10px;
  font-family: "Open Sans", Arial, sans-serif;
}

/* Thank you section distinguish */
.thank-you {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fffbe6;
  min-height: 350px;
  margin-bottom: 60px;
  border-radius: 16px;
}
.thank-you h1 {
  font-size: 2rem;
  color: #16212D;
}

/* Legal pages */
.legal {
  background: #fff;
  padding: 40px 0 36px 0;
  border-radius: 13px;
  margin-bottom: 48px;
  box-shadow: 0 2px 16px #D9AB6105;
}
.legal h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}
.legal ul {
  margin-left: 0;
  margin-top: 10px;
  margin-bottom: 12px;
  gap: 11px;
}
.legal li {
  list-style: disc inside;
  background: none;
  border: none;
  color: #16212D;
  padding: 0 0 0 0.5em;
  font-size: 1.01rem;
  margin-bottom: 7px;
}

/* Testimonials Section */
.testimonials {
  background: #f8f5ec;
  border-radius: 20px;
  box-shadow: 0 2px 24px #D9AB6110;
  margin-bottom: 60px;
  padding: 40px 0;
}
.testimonial-card {
  min-width: 240px;
  background: #fff;
  border-left: 6px solid #D9AB61;
  box-shadow: 0 2px 16px #16212D10;
  padding: 22px 26px 16px 24px;
  margin-bottom: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #16212D;
  font-style: italic;
  font-family: "Open Sans", Arial, sans-serif;
}
.testimonial-author {
  color: #7e6128;
  font-weight: 600;
  margin-top: 10px;
  font-size: 0.98rem;
}

/* Contacts CTA */
.contact-cta {
  margin-bottom: 60px;
  background: #D9AB6117;
  border-radius: 16px;
  padding: 38px 0 38px 0;
  box-shadow: 0 2px 18px #16212D08;
  text-align: center;
}
.contact-cta .btn-primary {
  margin: 16px 0 0 0;
}
.contact-cta h2 {
  text-align: center;
  font-size: 2rem;
  color: #16212D;
}
.contact-cta p {
  color: #7e6128;
  font-size: 1.12rem;
  text-align: center;
}

/* ===============================================================
   FOOTER
   =============================================================== */
footer {
  background: #16212D;
  color: #fff;
  padding: 34px 0 28px 0;
  margin-top: 80px;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  color: #D9AB61;
  font-size: 1.01rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 1rem;
  color: #fff;
}
.footer-contact img {
  width: 18px;
  margin-right: 5px;
}
.footer-contact p{
  color: white;
}
footer a {
  color: #D9AB61;
  transition: color 0.16s;
}
footer a:hover, footer a:focus {
  color: #fff;
}

/* ===============================================================
   COOKIE BANNER & MODAL
   =============================================================== */
.cookie-banner {
  position: fixed;
  width: 100vw;
  left: 0;
  bottom: 0;
  background: #fffbe6;
  color: #16212D;
  z-index: 1400;
  box-shadow: 0 -4px 32px #D9AB6135;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 36px;
  justify-content: center;
  padding: 22px 20px;
  font-size: 0.99rem;
  flex-wrap: wrap;
  border-top: 2.5px solid #D9AB61;
  animation: cookieBannerIn 0.6s cubic-bezier(0.64, 0, 0.33, 1);
}
@keyframes cookieBannerIn {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
  margin-left: 12px;
}
.cookie-banner .btn-primary,
.cookie-banner .btn-secondary {
  min-width: 123px;
  font-size: 1rem;
  padding: 10px 18px;
  border-radius: 30px;
}
.cookie-banner .btn-secondary {
  background: #16212D;
  color: #D9AB61;
  border: none;
}
.cookie-banner .btn-secondary:hover {
  background: #D9AB61;
  color: #16212D;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1500;
  background: #16212DC9;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.cookie-modal.open {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal-content {
  background: #fffbe6;
  color: #16212D;
  border-radius: 17px;
  padding: 36px 28px 28px 34px;
  max-width: 420px;
  box-shadow: 0 8px 48px #D9AB6130, 0 1.5px 0px #D9AB61 inset;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookieModalIn 0.45s cubic-bezier(.46,1.3,.48,.95);
}
@keyframes cookieModalIn {
  from { transform: scale(0.89); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h2 {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: #7e6128;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #D9AB6160;
  padding-bottom: 10px;
  padding-top: 7px;
  font-size: 1.01rem;
}
.cookie-category .toggle {
  pointer-events: all;
  width: 36px;
  height: 20px;
  background: #D9AB61;
  border-radius: 21px;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.19s;
  border: 1.3px solid #7e6128;
}
.cookie-category .toggle.disabled {
  background: #d3d0c5;
  cursor: not-allowed;
  opacity: 0.65;
}
.cookie-category .toggle::before {
  content: '';
  position: absolute;
  left: 3px; top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px #b27711;
  transition: left 0.19s;
}
.cookie-category .toggle.active::before {
  left: 17px;
}
.cookie-modal-content .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 11px;
}
.cookie-modal-close {
  background: transparent;
  border: none;
  color: #7e6128;
  font-size: 2.1rem;
  position: absolute;
  right: 18px;
  top: 8px;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #D9AB61;
}

/* ===============================================================
   RESPONSIVE DESIGN
   =============================================================== */
@media (max-width: 1024px) {
  .container {
    max-width: 900px;
    padding: 0 18px;
  }
  .footer-wrapper {
    flex-direction: column;
    gap: 22px;
  }
  .section, .legal, .features, .testimonials, .pricing-table, .contact-cta, .thank-you {
    padding-left: 12px;
    padding-right: 12px;
  }
  .feature-grid, .testimonial-list {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .container, .content-wrapper {
    padding: 0 8px;
    font-size: 0.97rem;
  }
  .nav-header {
    gap: 10px;
  }
  .section {
    margin-bottom: 38px;
    padding: 22px 4px;
  }
  .hero {
    min-height: 230px;
    padding: 32px 0 18px 0;
  }
  .hero h1 {
    font-size: 1.55rem;
  }
  .hero .btn-primary {
    margin-bottom: 16px;
  }
  .main-nav {
    display: none !important;
  }
  .feature-grid, .testimonial-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature-item, .card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .testimonials, .features, .contact-cta, .pricing-table, .legal {
    padding: 28px 0 16px 0;
  }
  .contact-cta h2 {
    font-size: 1.19rem;
  }
  .contact-cta p {
    font-size: 1.01rem;
    margin-bottom: 10px;
  }
  .thank-you {
    min-height: 190px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .map-placeholder {
    padding: 22px 8px;
    max-width: 98vw;
  }
  .footer-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-contact p {
    font-size: 0.97rem;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
    padding: 20px 10px;
    font-size: 0.95rem;
  }
  .cookie-banner .cookie-actions {
    margin-left: 0;
  }
  .cookie-modal-content {
    padding: 28px 10px 18px 16px;
    max-width: 98vw;
  }
}

@media (max-width: 480px) {
  .container {
    max-width: 99vw;
    padding: 0 4px !important;
  }
  h1 { font-size: 1.22rem; }
  h2 { font-size: 1rem; }
}

/* ===============================================================
   CREATIVE/ARTISTIC VISUAL ELEMENTS
   =============================================================== */
.section, .features, .testimonials, .contact-cta, .pricing-table, .thank-you {
  box-shadow: 0 4px 32px #D9AB6115, 0 1.5px 0px #D9AB6111 inset;
  border-radius: 22px;
  position: relative;
  overflow: visible;
}
.section::before, .features::before, .testimonials::before, .contact-cta::before {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 0;
  width: 45px; height: 45px;
  background: #D9AB6195;
  border-radius: 14px 30px 40px 8px;
  z-index: 1;
  box-shadow: 0 6px 14px #D9AB6135;
  opacity: 0.13;
  pointer-events: none;
}
.section::after, .features::after, .testimonials::after, .contact-cta::after {
  content: '';
  display: block;
  position: absolute;
  right: 3vw; bottom: 0;
  width: 32px; height: 32px;
  background: #7e612830;
  border-radius: 23px 6px 12px 18px;
  z-index: 1;
  box-shadow: 0 -8px 22px #16212D22;
  opacity: 0.11;
  pointer-events: none;
}

.card, .feature-item .card {
  position: relative;
  overflow: visible;
}
.card::before {
  content: '';
  position: absolute;
  left: -12px; top: -13px;
  width: 24px; height: 22px;
  border-radius: 22px 7px 6px 22px;
  background: #D9AB6162;
  z-index: 0;
  opacity: 0.23;
}

.card::after {
  content: '';
  position: absolute;
  right: -14px; bottom: -8px;
  width: 22px; height: 22px;
  border-radius: 10px 21px 19px 14px;
  background: #F2E5B1;
  z-index: 0;
  opacity: 0.16;
}

/* Artistic font for hero and headlines */
.hero h1,
.section h2,
.contact-cta h2,
.footer-nav a,
.btn-primary, .btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: none;
  letter-spacing: 0.05em;
}
h1, h2, h3, .btn-primary {
  /* Soft drop-shadow for artful look */
  text-shadow: 0 2px 6px #D9AB6110;
}

/* Artistic underlines for headings */
.section h2::after, .features h2::after, .testimonials h2::after, .contact-cta h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: #D9AB61;
  border-radius: 2px 8px 14px 2px;
  margin-top: 7px;
  margin-bottom: 10px;
  opacity: 0.38;
  box-shadow: 0 2px 8px #D9AB6175;
}

/* Subtle floating micro-interaction */
.card, .feature-item, .testimonial-card, .btn-primary {
  will-change: transform, box-shadow;
}

/* Artistic accent for selection/copy */
::selection   { background: #D9AB61; color: #16212D; }
::-moz-selection { background: #D9AB61; color: #16212D; }

/* ===============================================================
   HOVER/FOCUS & MICRO-INTERACTIONS
   =============================================================== */
.card, .feature-item, .testimonial-card {
  transition: box-shadow 0.19s, transform 0.12s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover {
  box-shadow: 0 16px 40px #D9AB6135, 0 1.5px 0px #D9AB61 inset;
  transform: translateY(-2.5px) scale(1.012);
  z-index: 2;
}
.testimonial-card:focus-within { box-shadow: 0 16px 44px #16212D29; }

/* ===============================================================
   UTILITIES
   =============================================================== */
.text-center { text-align: center !important; }
.text-right  { text-align: right !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.d-block { display: block !important; }

/* Hide visually, keep for screen readers */
.sr-only { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ===============================================================
   A11Y and CONTRAST HELPERS (Testimonial, Review)
   =============================================================== */
.testimonial-card, .testimonial-card p, .testimonial-card .testimonial-author {
  color: #16212D !important;
  background: #fff !important;
  font-family: "Open Sans", Arial, sans-serif;
}

/* Prevent any overlap on all cards and flex layouts */
.card, .feature-item, .testimonial-card, .team li, .values li, .services-list li {
  margin-bottom: 20px;
}

/* Prevent z-index issues */
.header, .mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 1400 !important;
}

/* END OF CSS */
