/* RESET & BASE ======================================== */
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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background-color: #f6f6f6;
  color: #222232;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  border: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}
a {
  color: #222232;
  text-decoration: none;
  transition: color .2s;
}
a:focus, a:hover {
  color: #A68F5C;
  outline: none;
}
ul, ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
strong {
  font-weight: 600;
}
hr {
  border: none;
  border-top: 1px solid #e6e6e6;
  margin: 32px 0;
}

/* TYPOGRAPHY ========================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #111116;
  margin-bottom: 14px;
  line-height: 1.21;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.125rem;
  font-weight: 600;
}
p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #232327;
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.1rem; }
}

/* LAYOUT ========================================= */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 10px;
    margin-bottom: 36px;
  }
}

/* HEADER & NAV ========================================= */
header {
  background: #fff;
  border-bottom: 1px solid #ededed;
  box-shadow: 0 2px 8px rgba(34,34,50,0.02);
  position: sticky;
  top: 0;
  z-index: 1050;
}
header .container {
  display: flex;
  align-items: center;
  height: 82px;
  gap: 24px;
  justify-content: space-between;
  position: relative;
}
header a img {
  height: 38px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 1rem;
  position: relative;
  color: #222232;
  padding: 3px 0 3px 0;
  transition: color .15s;
}
.main-nav a:hover, .main-nav a.active {
  color: #A68F5C;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  background: #222232;
  color: #fff;
  border-radius: 30px;
  padding: 10px 32px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 24px 0 rgba(34,34,50,0.09);
  border: none;
  transition: background .2s, color .2s, box-shadow .2s, transform .18s;
  cursor: pointer;
  margin-left: 14px;
  margin-right: 6px;
  text-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.cta-btn:hover, .cta-btn:focus {
  background: #A68F5C;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 30px 0 rgba(34,34,50,0.13);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  height: 48px;
  width: 48px;
  background: #222232;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  margin-left: 8px;
  transition: background .2s;
  z-index: 1210;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #A68F5C;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(34,34,50,0.98);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform .38s cubic-bezier(.6,.01,.36,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  margin-top: 32px;
  margin-left: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  align-self: flex-end;
  transition: color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #A68F5C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
  width: 100%;
  padding: 0 36px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
  border-radius: 8px;
  padding: 12px 0;
  transition: background .2s, color .2s;
  display: block;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #A68F5C;
  background: rgba(166,143,92,0.10);
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (max-width: 600px) {
  header .container {
    height: 58px;
    padding: 0 10px;
  }
  .cta-btn {
    padding: 8px 18px;
    font-size: 1rem;
    margin-left: 4px;
  }
  .mobile-menu-close {
    margin-top: 24px;
    margin-left: 14px;
    font-size: 2rem;
  }
  .mobile-nav {
    padding: 0 14px;
  }
}

/* HERO SECTIONS ========================================= */
.hero {
  background: #222232;
  color: #fff;
  padding: 60px 0 60px 0;
  display: flex;
  align-items: center;
}
.hero h1, .hero h2, .hero h3 {
  color: #fff;
}
.hero .cta-btn {
  background: #A68F5C;
  color: #fff;
  font-size: 1.18rem;
}
.hero .cta-btn:hover {
  background: #fff;
  color: #222232;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
@media (max-width: 768px) {
  .hero {
    padding: 36px 0;
  }
  .hero .content-wrapper {
    gap: 14px;
  }
}

/* CARDS / FLEXGROUPS ======================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.09);
  padding: 28px 20px;
  flex: 1 1 300px;
  min-width: 260px;
  transition: box-shadow .19s, transform .19s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 28px rgba(34,34,50,0.16);
  transform: translateY(-4px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
}

/* FLEXBOX COMPOSITIONS ====================================== */
.content-grid, .feature-grid, .faq-list, .pricing-table {
  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;
  background: #fff;
  padding: 20px 22px;
  margin-bottom: 20px;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(34,34,50,.09);
  border-left: 5px solid #A68F5C;
  min-width: 250px;
  max-width: 700px;
  font-size: 1.09rem;
  color: #222232 !important;
  transition: box-shadow .15s, border-color .17s;
}
.testimonial-card:hover {
  border-left: 5px solid #222232;
  box-shadow: 0 4px 16px rgba(34,34,50,.16);
}
.testimonial-card span {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.98rem;
  color: #A68F5C;
  font-weight: 600;
  margin-left: 18px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  margin-bottom: 16px;
}
.feature {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 30px 22px 22px 22px;
  box-shadow: 0 2px 9px rgba(34,34,50,0.06);
  flex: 1 1 205px;
  min-width: 200px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow .15s, background .13s;
}
.feature:hover {
  background: #fff;
  box-shadow: 0 6px 18px rgba(34,34,50,0.10);
}
.feature img {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}

.pricing-table {
  width: 100%;
  gap: 28px;
  margin-bottom: 22px;
}
.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  flex: 1 1 235px;
  min-width: 180px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .15s;
  border-left: 4px solid #A68F5C;
}
.pricing-card:hover {
  box-shadow: 0 10px 34px #00000016;
  border-left: 4px solid #222232;
  transform: scale(1.018);
}

.faq-list {
  flex-direction: column;
  gap: 18px;
}
.faq-list ul {
  margin-bottom: 10px;
}

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

@media (max-width: 1024px) {
  .content-grid, .feature-grid, .faq-list, .pricing-table {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    min-width: unset;
    max-width: 100%;
  }
}

/* SUCCESS / CTA / HIGHLIGHT SECTIONS ======================== */
.cta {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(34,34,50,.07);
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
.cta h2 {
  color: #222232;
}
@media (max-width: 768px) {
  .cta {
    padding: 30px 0;
    margin-bottom: 36px;
  }
}
.success {
  background: #f8f8f8;
  border-radius: 22px;
  padding: 44px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  margin-bottom: 48px;
}
@media (max-width: 560px) {
  .success {
    padding: 22px 0;
    min-height: 160px;
  }
}

.customer-support p {
  font-size: 1.07rem;
  color: #A68F5C;
  margin-bottom: 16px;
  font-weight: 600;
}

/* FOOTER ========================================= */
footer {
  background: #222232;
  color: #fff;
  padding: 40px 0 0 0;
  margin-top: 44px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 30px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.footer-brand img {
  height: 36px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a {
  color: #A68F5C;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  transition: color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFF;
}
.footer-contact {
  color: #fff;
  font-size: 0.99rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  margin-right: 5px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
    padding-bottom: 22px;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 22px 0 0 0;
  }
}

/* FORM ELEMENTS ========================================= */
input, textarea, select {
  border: 1px solid #d1d1d6;
  border-radius: 9px;
  background: #fff;
  padding: 10px 14px;
  font-size: 1rem;
  margin-bottom: 14px;
  transition: border .18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #A68F5C;
}
label {
  font-size: 1rem;
  font-weight: 600;
  color: #222232;
  margin-bottom: 6px;
}
button, .button {
  display: inline-flex;
  align-items: center;
  padding: 10px 28px;
  border-radius: 28px;
  background: #222232;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 8px 0 rgba(34,34,50,0.11);
  margin-top: 8px;
  transition: background .19s, color .19s, box-shadow .18s;
}
button:hover, button:focus, .button:hover, .button:focus {
  background: #A68F5C;
  color: #fff;
  box-shadow: 0 6px 22px 0 rgba(166,143,92,0.09);
}

/* GOOGLE MAPS BLOCK ============================= */
.google-maps-block {
  background: #232327;
  color: #fff;
  border-radius: 13px;
  padding: 16px;
  margin-top: 8px;
  font-size: 0.98rem;
  opacity: 0.95;
}

/* COOKIE BANNER & MODAL ========================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1999;
  background: #111116;
  color: #fff;
  box-shadow: 0 -2px 18px #00000022;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px 18px 10px;
  animation: cb-slide-up .45s cubic-bezier(.33,1,.44,.99);
}
@keyframes cb-slide-up {
  0% { transform: translateY(80px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  max-width: 670px;
  width: 100%;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
.cookie-banner button {
  padding: 6px 26px;
  border-radius: 22px;
  font-size: 1rem;
  margin-top: 0;
  background: #A68F5C;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background .19s, color .19s;
}
.cookie-banner .cookie-reject {
  background: #222232;
  color: #fff;
  border: 1px solid #A68F5C;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #fff;
  color: #A68F5C;
}
.cookie-banner .cookie-settings {
  background: #A68F5C;
  color: #fff;
  opacity: 0.82;
}
.cookie-banner .cookie-settings:hover {
  opacity: 1;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 7px 16px 7px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 92vw;
  max-width: 440px;
  background: #fff;
  color: #222232;
  border-radius: 16px;
  box-shadow: 0 16px 48px #0000003c;
  padding: 34px 24px 26px 24px;
  z-index: 2100;
  transform: translate(-50%,-50%) scale(1.01);
  animation: cm-fade-in .38s cubic-bezier(.35,1,.45,1);
}
@keyframes cm-fade-in {
  0% { transform: translate(-50%,-50%) scale(0.93); opacity: 0; }
  100% { transform: translate(-50%,-50%) scale(1.01); opacity: 1; }
}
.cookie-modal h3 {
  color: #222232;
  margin-bottom: 10px;
}
.cookie-modal ul {
  margin-bottom: 15px;
}
.cookie-modal .cookie-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}
.cookie-modal label {
  font-size: 1rem;
}
.cookie-modal input[type=checkbox] {
  accent-color: #A68F5C;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  background: none;
  color: #A68F5C;
  font-size: 1.4rem;
  border: none;
  cursor: pointer;
}
.cookie-modal .cookie-modal-close:hover {
  color: #111116;
}
@media (max-width: 480px) {
  .cookie-modal {
    max-width: 95vw;
    padding: 18px 7px 16px 7px;
  }
  .cookie-modal .cookie-modal-close {
    right: 5px;
    top: 7px;
  }
}

/* ANIMATIONS FOR MICRO-INTERACTIONS ======================= */
.card, .feature, .pricing-card, .testimonial-card {
  transition: box-shadow 0.15s, border-color 0.17s, background 0.13s, transform 0.17s;
}
.cta-btn, button, .button {
  transition: background .2s, color .2s, box-shadow .2s, transform .16s;
}

/* UTILITY: SPACING & FLEX-LAYOUT ========================== */
.mb-20 { margin-bottom: 20px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-40 { margin-top: 40px !important; }
.flex {
  display: flex !important;
}
.flex-col {
  flex-direction: column !important;
}
.align-center {
  align-items: center !important;
}
.align-start {
  align-items: flex-start !important;
}
.gap-20 {
  gap: 20px !important;
}
.gap-30 {
  gap: 30px !important;
}

/* MONOCHROME SOPHISTICATION ENHANCEMENTS ================ */
body {
  background: #f6f6f6;
  color: #222232;
}
h1, h2, h3, h4 {
  color: #111116;
}
.section, .card, .feature, .testimonial-card, .pricing-card, .success, .cta {
  background: #fff;
}
ul, ol {
  color: #232327;
  font-size: 1rem;
}
blockquote {
  border-left: 4px solid #A68F5C;
  margin-left: 0;
  padding-left: 16px;
  color: #222232;
  font-style: italic;
  background: #f2f2f2;
  border-radius: 11px;
}

/* OVERRIDES & STRONG CONTRASTS FOR DARK BG SECTIONS ====== */
.hero, .main-nav, .mobile-menu {
  color: #fff;
}
.hero .cta-btn {
  background: #A68F5C;
  color: #fff;
}
.hero .cta-btn:hover {
  background: #fff;
  color: #222232;
}

/* ACCENTS & DETAILS ======================================= */
::-webkit-input-placeholder { color: #A8A8AF; }
::-moz-placeholder { color: #A8A8AF; }
:-ms-input-placeholder { color: #A8A8AF; }
::placeholder { color: #A8A8AF; }

a[aria-current="page"] {
  color: #A68F5C !important;
  font-weight: 700;
}

/* SCROLLBAR STYLING (for refinement only, not critical) === */
body::-webkit-scrollbar {
  width: 11px;
  background: #efefef;
}
body::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 5px;
}
body::-webkit-scrollbar-thumb:hover {
  background: #A68F5C;
}

/* FINAL TOUCHES FOR RESPONSIVENESS ======================== */
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
    max-width: 100vw;
  }
  .content-wrapper {
    gap: 12px;
  }
  .card, .feature, .testimonial-card, .pricing-card {
    min-width: unset;
    max-width: 100%;
  }
}
@media (max-width: 440px) {
  .cta-btn, button, .button {
    padding: 9px 14px;
    font-size: 0.95rem;
  }
  h1, h2 { font-size: 1.2em !important; }
}

/* VISUAL ACCESSIBILITY (Contrast on testimonials) ========= */
.testimonial-card {
  background: #fff !important;
  color: #222232 !important;
}
.testimonial-card span {
  color: #A68F5C;
}

/* END OF CSS ============================================ */
