/*== RESET & BASE ==*/
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #1C222C;
  background: #F7F4F1;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #BFA058; /* Gold accent */
}
ul, ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #931920;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
  color: #1C222C;
  font-weight: 600;
}
sub, sup {
  font-size: 75%;
}
strong {
  font-weight: 700;
}

/*== CONTAINER & LAYOUT ==*/
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
/* Cards & Layout Containers Required By Spec */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(28,34,44,0.07),0 1.5px 5px rgba(191,160,88,0.07);
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 12px 32px rgba(28,34,44,0.14),0 3px 10px rgba(191,160,88,0.12);
  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: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(28,34,44,0.10);
  margin-bottom: 20px;
  min-width: 260px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(191,160,88,0.09);
  padding: 24px 18px;
  transition: box-shadow 0.22s, transform 0.14s;
}
.feature-item img {
  width: 40px;
  height: 40px;
}
.feature-item:hover {
  box-shadow: 0 8px 28px rgba(191,160,88,0.15);
  transform: translateY(-3px) scale(1.02);
}

/*== NAVIGATION ==*/
header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding-top: 0;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo img {
  height: 42px;
  width: auto;
}
nav {
  display: flex;
  gap: 28px;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1C222C;
  font-size: 1.06rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 8px 6px;
  border-radius: 6px;
  transition: color 0.18s, background 0.16s;
}
nav a:hover, nav a:focus {
  color: #931920;
  background: #F6ECD9;
}
.cta-btn {
  background: #931920;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  padding: 12px 30px;
  border: none;
  border-radius: 26px;
  margin-left: 16px;
  box-shadow: 0 2px 8px rgba(191,160,88,0.11);
  cursor: pointer;
  transition: background 0.16s, color 0.15s, transform 0.15s, box-shadow 0.17s;
  position: relative;
}
.cta-btn:after {
  content: '';
  display: block;
  position: absolute;
  left: 10px;
  top: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 20px;
  border: 2px solid #BFA058;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cta-btn:hover:after, .cta-btn:focus:after {
  opacity: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: #BFA058;
  color: #1C222C;
  transform: translateY(-1.5px) scale(1.01);
  box-shadow: 0 6px 18px rgba(191,160,88,0.16);
}
/* Subheadline */
.subheadline {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 28px;
}

/*== FEATURES GRID ==*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature-item {
  flex: 1 1 250px;
  min-width: 230px;
  max-width: 320px;
}
/* TRUST LIST */
.trust-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style-type: none;
  margin: 18px 0 0 0;
}
.trust-list li {
  padding-left: 0;
  font-size: 1rem;
}
/*== TESTIMONIALS SLIDER ==*/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.testimonial-card {
  background: #fff;
  color: #1C222C;
  border-left: 4px solid #BFA058;
  min-width: 260px;
  flex: 1 1 280px;
  box-shadow: 0 6px 24px rgba(191,160,88,0.13);
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.13s;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #1C222C;
}
.testimonial-details {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #931920;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 12px;
}
.testimonial-card:hover {
  box-shadow: 0 12px 38px rgba(191,160,88,0.17);
  transform: translateY(-4px) scale(1.02);
}

/*== SECTIONS, LISTS, ETC. ==*/
.text-section {
  font-size: 1.1rem;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.values-grid, .benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}
.value-item, .benefit-item {
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 1.04rem;
  color: #1C222C;
  box-shadow: 0 4px 16px rgba(191,160,88,0.08);
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 320px;
}
.values-grid {
  justify-content: flex-start;
}
.benefit-grid {
  justify-content: flex-start;
}
.services-list, .team-members-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.service-item, .team-member {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 4px 16px rgba(191,160,88,0.08);
  flex: 1 1 310px;
  min-width: 250px;
  max-width: 400px;
  transition: box-shadow .17s, transform .13s;
}
.service-item:hover,
.team-member:hover {
  box-shadow: 0 8px 26px rgba(191,160,88,0.12);
  transform: translateY(-2px) scale(1.01);
}
.team-values {
  margin-top: 30px;
}
.team-values ul {
  list-style: disc inside;
  color: #1C222C;
  font-size: 1rem;
}
.map-placeholder {
  background: #fff;
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 4px 16px rgba(191,160,88,0.08);
  color: #555;
}

/*== PRICING ==*/
.pricing-table {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(191,160,88,0.10);
  padding: 26px 24px;
  overflow-x: auto;
  margin-bottom: 32px;
}
.pricing-table table {
  border-collapse: collapse;
  width: 100%;
}
.pricing-table th, .pricing-table td {
  padding: 14px 10px;
  text-align: left;
  font-size: 1.04rem;
  color: #1C222C;
}
.pricing-table th {
  border-bottom: 2px solid #BFA058;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
}
.pricing-table tr:not(:last-child) td {
  border-bottom: 1px solid #eee;
}
.included-services ul {
  list-style: disc inside;
  color: #1C222C;
  font-size: 1rem;
  margin-top: 8px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  padding: 20px 20px 16px;
  box-shadow: 0 4px 16px rgba(191,160,88,0.07);
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.13s;
}
.faq-item:hover {
  box-shadow: 0 10px 32px rgba(191,160,88,0.13);
  transform: translateY(-3px);
}
.faq-item h3 {
  font-size: 1.08rem;
  color: #931920;
  margin-bottom: 8px;
}
.faq-item p {
  color: #1C222C;
}

/*== ARTICLES ==*/
.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.article-preview {
  background: #fff;
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 3px 13px rgba(191,160,88,0.07);
  color: #1C222C;
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 340px;
  transition: box-shadow 0.16s, transform 0.14s;
}
.article-preview:hover {
  box-shadow: 0 10px 26px rgba(191,160,88,0.12);
  transform: translateY(-2px) scale(1.01);
}

/*== CONTACT ==*/
.contact-info-block {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.contact-data, .contact-cta {
  background: #fff;
  border-radius: 14px;
  flex: 1 1 300px;
  min-width: 240px;
  padding: 24px 22px;
  box-shadow: 0 4px 16px rgba(191,160,88,0.10);
  color: #222;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-data strong {
  color: #931920;
}
.contact-cta h2 {
  font-size: 1.15rem;
  color: #1C222C;
  margin-bottom: 18px;
}

/*== FOOTER ==*/
footer {
  background: #19161B;
  color: #fff;
  border-top: 3px solid #BFA058;
}
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px 0 14px;
}
.footer-nav nav {
  display: flex;
  gap: 18px;
}
.footer-nav nav a {
  color: #fff;
  font-size: 1rem;
  padding: 5px 8px;
  opacity: 0.87;
  border-radius: 4px;
  transition: color 0.18s, background 0.14s;
}
.footer-nav nav a:hover, .footer-nav nav a:focus {
  color: #BFA058;
  background: rgba(191,160,88,0.09);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  height: 32px;
}
.footer-brand span {
  font-size: 1rem;
  opacity: 0.77;
}

/*== THANK YOU ==*/
.thank-you-message {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(191,160,88,0.09);
  padding: 28px 30px;
  text-align: center;
  color: #1C222C;
  margin-top: 12px;
}

/*== MOBILE BURGER MENU ==*/
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 22px;
  z-index: 1001;
  background: #fff;
  border: 2px solid #BFA058;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  color: #BFA058;
  cursor: pointer;
  box-shadow: 0 3px 13px rgba(191,160,88,0.07);
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.13s, background 0.15s;
}
.mobile-menu-toggle:active {
  box-shadow: 0 5px 22px rgba(191,160,88,0.15);
  background: #F6ECD9;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28,34,44,0.80);
  z-index: 2001;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transition: background 0.3s;
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
  animation: mobileMenuSlideIn 0.28s cubic-bezier(0.4,0,0.2,1);
}
@keyframes mobileMenuSlideIn {
  from { opacity: 0; transform: translateX(120px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes mobileMenuSlideOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(120px); }
}
.mobile-menu-close {
  background: #fff;
  border: 2px solid #BFA058;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  color: #BFA058;
  margin: 26px 24px 0 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 9px rgba(191,160,88,0.08);
  transition: box-shadow 0.17s, background 0.13s;
}
.mobile-menu-close:active {
  background: #F6ECD9;
  box-shadow: 0 5px 20px rgba(191,160,88,0.15);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  margin: 48px 28px 0 0;
  width: 85vw;
  max-width: 360px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  background: none;
  border-radius: 6px;
  width: 100%;
  text-align: right;
  padding: 12px 6px;
  transition: background 0.18s, color 0.16s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #BFA058;
  color: #1C222C;
}

/*== COOKIE CONSENT BANNER ==*/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  z-index: 3000;
  background: #fff;
  border-top: 2.5px solid #BFA058;
  box-shadow: 0 -4px 24px rgba(28,34,44,0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 18px 18px 18px;
  gap: 14px;
  animation: cookieBannerIn 0.43s ease;
}
@keyframes cookieBannerIn {
  from { opacity: 0; transform: translateY(64px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner-text {
  color: #1C222C;
  font-size: 1rem;
  text-align: center;
}
.cookie-btn-group {
  display: flex;
  gap: 16px;
}
.cookie-btn, .cookie-settings-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 22px;
  padding: 10px 25px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.17s, color 0.15s, box-shadow 0.14s;
}
.cookie-btn-accept {
  background: #931920;
  color: #fff;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: #BFA058;
  color: #1C222C;
}
.cookie-btn-reject {
  background: #F7F4F1;
  color: #931920;
  border: 1.5px solid #931920;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #BFA058;
  color: #1C222C;
  border-color: #BFA058;
}
.cookie-settings-btn {
  background: #fff;
  color: #BFA058;
  border: 1.5px solid #BFA058;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #BFA058;
  color: #fff;
}
/* Cookie Banner Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3200;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(28,34,44,0.69);
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookie-modal {
  background: #fff;
  color: #1C222C;
  border-radius: 16px;
  box-shadow: 0 6px 32px rgba(191,160,88,0.19);
  min-width: 320px;
  max-width: 96vw;
  padding: 28px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: cookieModalIn 0.3s cubic-bezier(.4,0,.2,1);
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-modal h2 {
  color: #931920;
  font-size: 1.25rem;
  margin-bottom: 0;
}
.cookie-modal-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category input[type=checkbox] {
  width: 20px; height: 20px;
  accent-color: #BFA058;
}
.cookie-category-label {
  font-size: 1.06rem;
}
.cookie-category-essential {
  font-weight: 600;
  color: #931920;
}
.cookie-modal-btns {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 24px; right: 36px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #BFA058;
  cursor: pointer;
}

/*== RESPONSIVE DESIGN ==*/
@media (max-width: 1000px) {
  .nav-bar nav {
    gap: 18px;
  }
  .feature-grid, .values-grid, .benefit-grid, .card-container, .services-list, .articles-grid, .team-members-list {
    gap: 16px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .feature-item, .value-item, .benefit-item, .service-item, .team-member, .article-preview {
    max-width: 100%;
    min-width: 160px;
    flex: 1 1 100%;
    padding-left: 14px;
    padding-right: 14px;
  }
  .contact-info-block {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .nav-bar nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-brand img {
    height: 33px;
  }
  .section, main > section, .thank-you-message {
    padding: 32px 4px;
  }
  .text-image-section, .content-wrapper, .content-grid, .feature-grid, .values-grid, .benefit-grid, .card-container, .services-list, .team-members-list, .articles-grid {
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-slider {
    flex-direction: column;
  }
  .testimonial-card {
    min-width: 0;
    padding: 16px 10px;
  }
  .contact-info-block {
    flex-direction: column;
    gap: 10px;
  }
  .pricing-table {
    padding: 14px 4px;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.16rem;
  }
  .cta-btn, .cookie-btn, .cookie-settings-btn {
    padding: 10px 14px;
    font-size: 0.96rem;
  }
}

/*== SCROLLBAR (for modal etc.) ==*/
::-webkit-scrollbar-thumb {
  background: #BFA058;
  border-radius: 8px;
}
::-webkit-scrollbar {
  width: 10px;
  background: #F7F4F1;
}

/*== GOLDED DETAILS & ACCENTS ==*/
hr, .goldline {
  border: none;
  height: 2.5px;
  background: #BFA058;
  border-radius: 2px;
  margin: 24px 0;
}
.bf-accent, .accent {
  color: #BFA058;
}
.bg-gold {
  background: #BFA058;
  color: #19161B;
}
/*== FOCUS STATES and INTERACTIONS ==*/
a, button, input, select, textarea {
  outline: none;
  transition: box-shadow 0.16s, border-color 0.12s;
}
a:focus-visible, button:focus-visible, .cta-btn:focus-visible {
  box-shadow: 0 0 0 2.5px #BFA05899;
}

/* Micro-interaction pulse for CTA */
.cta-btn:active {
  transform: scale(0.98);
  box-shadow: 0 2.5px 12px rgba(191,160,88,0.22);
}

/*== FORM ELEMENTS ==*/
input, select, textarea {
  font-family: inherit;
  padding: 10px 14px;
  border: 1.5px solid #BFA058;
  border-radius: 10px;
  font-size: 1rem;
  background: #fff;
  margin-bottom: 18px;
  color: #19161B;
}
input:focus, select:focus, textarea:focus {
  border-color: #931920;
  box-shadow: 0 0 0 2px #BFA05844;
}

/*== Z-INDEX LAYERS ==*/
header { z-index: 10; position: relative; }
.mobile-menu { z-index: 2001; }
.cookie-banner { z-index: 3000; }
.cookie-modal-overlay { z-index: 3200; }

/*== PRINT ==*/
@media print {
  * { color: #19161B !important; background: #fff !important; box-shadow: none !important; }
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay, header, footer { display: none !important; }
}

/*== UNMISTAKABLY PREMIUM LUXURY ==*/
body, .section, .card, .cta-btn, .feature-item, .testimonial-card, .pricing-table, .service-item, .benefit-item, .value-item, .faq-item, .article-preview, .thank-you-message, .contact-data, .contact-cta {
  /* Consistent base shadow, border-radius, and spacing for luxury feel */
  border-radius: 14px;
}
::-moz-selection, ::selection {
  background: #BFA058;
  color: #fff;
}
