/* --------------------------------------------------
   CSS RESET & NORMALIZE
-------------------------------------------------- */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
html, body {
  width: 100%;
  height: 100%;
}
body {
  background: #FCFAF6;
  color: #20283A;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
/* Remove default list styles */
ul, ol {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}
th, td {
  padding: 14px 10px;
  border-bottom: 1px solid #F0ECE2;
  text-align: left;
}
th {
  background: #f9f6ed;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
a {
  color: #C0AE84;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #a39060;
  text-decoration: underline;
}
input, button, textarea, select {
  font: inherit;
  outline: none;
}

/* --------------------------------------------------
   BRAND COLOR VARIABLES & FONTS (NO CSS VARS, JUST USE)
-------------------------------------------------- */
/* Primary: #20283A (Dark blue gray)
   Secondary: #C0AE84 (Warm gold)
   Accent: #FFFFFF (White)
   Background: #FCFAF6 (Warm off-white)
*/

/* --------------------------------------------------
   TYPOGRAPHY & HEADINGS
-------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #20283A;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 16px;
}
h4 {
  font-size: 1.125rem;
}
.section h2 {
  margin-top: 0;
}
p, ul, ol {
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}

/* --------------------------------------------------
   LAYOUT CONTAINERS & ALIGNMENTS
-------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 18px 0 rgba(32,40,58,0.07);
}

/* --------------------------------------------------
   NAVIGATION & HEADER
-------------------------------------------------- */
header {
  background: #20283A;
  color: #fff;
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}
header img {
  max-height: 44px;
  border-radius: 0;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  transition: border-color 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  color: #C0AE84;
  border-color: #C0AE84;
}
.cta.primary {
  background: #C0AE84;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.04em;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 32px;
  text-align: center;
  font-size: 1.1rem;
  box-shadow: 0 2px 10px 0 rgba(192,174,132,0.08);
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.12s;
  margin-left: 20px;
  display: inline-block;
}
.cta.primary:hover, .cta.primary:focus {
  background: #B39A66;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 15px 0 rgba(192,174,132,0.16);
  text-decoration: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #C0AE84;
  cursor: pointer;
  padding: 8px;
  margin-left: 10px;
  line-height: 1;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: rgba(192,174,132,0.1);
}

/* Mobile Navigation Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,40,58, 0.98);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.67,-0.01,.37,1.01);
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border: none;
  position: absolute;
  top: 22px;
  right: 28px;
  cursor: pointer;
  z-index: 101;
  padding: 6px 13px 9px 7px;
  border-radius: 40%;
  transition: background 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: rgba(255,255,255, 0.11);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  margin: 82px 0 0 38px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.45rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 8px 0;
  border-radius: 0 28px 28px 0;
  transition: background 0.2s, color 0.2s, padding 0.2s;
  display: inline-block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #C0AE84;
  color: #20283A;
  padding-left: 18px;
  text-decoration: none;
}

/* Hide navigation on mobile, show mobile menu toggle */
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .mobile-nav {
    margin-left: 18px;
    gap: 19px;
  }
}

/* Show main nav/CTA for desktop */
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --------------------------------------------------
   HERO SECTION
-------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, #FFF4E0 0%, #FCFAF6 100%);
  border-radius: 0 0 50px 50px;
  min-height: 340px;
  display: flex;
  align-items: center;
  margin-bottom: 44px;
  padding-top: 36px;
  padding-bottom: 36px;
  box-shadow: 0 6px 20px 0 rgba(192,174,132,0.09);
}
.hero .container {
  align-items: flex-start;
  gap: 0;
}
.hero .content-wrapper {
  max-width: 650px;
  gap: 16px;
}
.hero h1 {
  color: #20283A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.3rem;
}
.hero p {
  color: #4B4542;
  font-size: 1.15rem;
}
@media (max-width: 600px) {
  .hero {
    border-radius: 0 0 30px 30px;
    padding-top: 16px;
    padding-bottom: 30px;
    min-height: unset;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
}

/* --------------------------------------------------
   FLEX LAYOUT PATTERNS
-------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 10px 0 rgba(32,40,58,0.06);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 260px;
  min-width: 260px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 40px 0 rgba(192,174,132,0.14);
  transform: translateY(-6px) scale(1.015);
}
.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: #FFF8EE;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(192,174,132,0.07);
  color: #20283A;
  margin-bottom: 20px;
  flex: 1 1 260px;
  min-width: 260px;
  overflow: hidden;
}
.testimonial-card p {
  margin: 0;
  font-size: 1.04rem;
  color: #20283A;
}
.testimonial-card span {
  font-size: 0.99rem;
  color: #846F3C;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Responsive layouts for .text-image-section etc. */
@media (max-width: 768px) {
  .content-grid, .card-container, .text-image-section, .feature-grid, .feature-list, .service-list, .faq-list {
    flex-direction: column !important;
    gap: 24px;
  }
  .section {
    padding: 28px 8px;
  }
}

/* --------------------------------------------------
   FEATURE & SERVICE LISTS (Index + Detail Pages)
-------------------------------------------------- */

.feature-grid, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.feature-grid li, .feature-list li {
  background: #fff8ee;
  border-radius: 16px;
  padding: 24px 18px 18px 18px;
  box-shadow: 0 4px 18px 0 rgba(192,174,132,0.06);
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  position: relative;
  transition: box-shadow 0.17s, transform 0.1s;
}
.feature-grid li img, .feature-list li img {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}
.feature-grid li strong, .feature-list li strong {
  color: #C0AE84;
  font-size: 1.08rem;
}
.feature-grid li:hover, .feature-list li:hover {
  box-shadow: 0 8px 36px 0 rgba(192,174,132,0.13);
  transform: translateY(-4px);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.service-list li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(192,174,132,0.09);
  padding: 20px 16px;
  flex: 1 1 260px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.17s, transform 0.1s;
  margin-bottom: 20px;
}
.service-list li strong {
  color: #C0AE84;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
}
.service-list li span {
  color: #846F3C;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.service-list li:hover {
  box-shadow: 0 7px 24px 0 rgba(192,174,132,0.13);
  transform: translateY(-3px);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.faq-list li {
  background: #f6ede0;
  border-radius: 12px;
  padding: 16px 19px;
  color: #282828;
  line-height: 1.55;
  margin-bottom: 0;
  box-shadow: 0 1px 6px rgba(192,174,132,0.04);
}

/* --------------------------------------------------
   PRICING TABLE
-------------------------------------------------- */
.pricing-table {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 rgba(192,174,132,0.08);
  margin-bottom: 30px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  border-bottom: 1px solid #F0ECE2;
}
.pricing-table thead th {
  font-size: 1.04rem;
  color: #C0AE84;
  background: #f8f5eb;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table td {
  color: #20283A;
  font-weight: 500;
}

.disclaimer {
  font-size: 0.97rem;
  color: #a39382;
  margin-bottom: 16px;
  margin-top: -7px;
}

/* --------------------------------------------------
   TEXT SECTIONS & CARDS
-------------------------------------------------- */
.text-section {
  background: #fffbf4;
  border-radius: 12px;
  padding: 18px 18px 14px 18px;
  margin-bottom: 14px;
  box-shadow: 0 1px 7px rgba(192,174,132,0.07);
  color: #20283A;
}
.address-map {
  margin-top: 7px;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
footer {
  background: #20283A;
  color: #fff;
  padding: 38px 0 26px 0;
  border-radius: 44px 44px 0 0;
  box-shadow: 0 -2px 32px 0 rgba(32,40,58,0.07);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 38px;
}
footer a {
  color: #fff;
  font-weight: 500;
  transition: color 0.2s;
}
footer a:hover, footer a:focus {
  color: #C0AE84;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0 34px 0 34px;
}
.footer-contact {
  font-size: 1.01rem;
  color: #e5e6e7;
}
@media (max-width: 840px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  footer nav {
    margin: 0 0 12px 0;
  }
}

/* --------------------------------------------------
   BUTTON STYLE
-------------------------------------------------- */
button, .btn, .cta {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: 32px;
  padding: 10px 28px;
  font-size: 1rem;
  background: #C0AE84;
  color: #fff;
  box-shadow: 0 2px 10px 0 rgba(192,174,132,0.10);
  transition: background 0.18s, box-shadow 0.18s, color 0.17s, transform 0.13s;
  margin: 0;
  display: inline-block;
}
button:hover, .btn:hover, .cta:hover, button:focus, .btn:focus, .cta:focus {
  background: #B39A66;
  color: #fff;
  box-shadow: 0 6px 28px 0 rgba(192,174,132,0.18);
  transform: translateY(-2px) scale(1.03);
  text-decoration: none;
}

@media (max-width: 600px) {
  button, .btn, .cta {
    width: 100%;
    font-size: 1rem;
  }
}

/* --------------------------------------------------
   COOKIE CONSENT BANNER
-------------------------------------------------- */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff8ee;
  color: #20283A;
  z-index: 2000;
  box-shadow: 0 -2px 18px 0 rgba(32,40,58,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 8vw 22px 8vw;
  gap: 22px;
  border-radius: 18px 18px 0 0;
  transition: transform 0.35s cubic-bezier(.67,-0.01,.37,1.01), opacity 0.32s;
}
#cookie-banner.hide {
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
}
#cookie-banner p {
  margin-right: 20px;
  font-size: 1rem;
}
#cookie-banner .cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-btn {
  background: #C0AE84;
  color: #fff;
  border: none;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 22px;
  margin: 0;
  box-shadow: 0 1px 6px rgba(192,174,132,0.07);
  transition: background 0.16s, color 0.15s;
}
.cookie-btn.secondary {
  background: #20283A;
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: #C0AE84;
  border: 1.7px solid #C0AE84;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #B39A66;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #C0AE84;
  color: #fff;
}
@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 16px;
    gap: 20px;
  }
  #cookie-banner p {
    margin-right: 0;
  }
}

/* Cookie Modal */
#cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  background: #fff;
  color: #20283A;
  box-shadow: 0 18px 72px 0 rgba(32,40,58,0.20);
  z-index: 2100;
  border-radius: 21px;
  padding: 34px 30px 30px 30px;
  max-width: 94vw;
  max-height: 80vh;
  overflow-y: auto;
  display: none;
  transition: opacity 0.22s, transform 0.35s cubic-bezier(.67,-0.01,.37,1.01);
  opacity: 1;
}
#cookie-modal.open {
  display: block;
  animation: cookieModalIn 0.4s cubic-bezier(.29,.6,.46,1.01);
}
@keyframes cookieModalIn {
  0% { transform: translate(-50%, 60%) scale(0.92); opacity: 0;}
 100% { transform: translate(-50%, -50%) scale(1); opacity: 1;}
}
#cookie-modal h3 {
  font-size: 1.27rem;
  color: #20283A;
  margin-bottom: 16px;
}
#cookie-modal .cookie-cat {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 16px;
  gap: 17px;
}
#cookie-modal .cookie-cat label {
  font-weight: 500;
  font-size: 1.08rem;
}
#cookie-modal .cookie-cat input[type='checkbox']:disabled {
  accent-color: #C0AE84;
  cursor: not-allowed;
}
#cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 22px;
}
#cookie-modal .cookie-close {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 2.2rem;
  color: #C0AE84;
  border: none;
  background: none;
  z-index: 2220;
  cursor: pointer;
}
#cookie-modal .cookie-close:hover, #cookie-modal .cookie-close:focus {
  color: #20283A;
}
@media (max-width: 500px) {
  #cookie-modal {
    padding: 18px 7px 18px 9px;
    border-radius: 12px;
  }
  #cookie-modal h3 {
    font-size: 1.05rem;
  }
  #cookie-modal .cookie-close {
    font-size: 2rem;
    top: 7px;
    right: 10px;
  }
}

/* --------------------------------------------------
   GENERAL RESPONSIVE TYPOGRAPHY
-------------------------------------------------- */
@media (max-width: 900px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.43rem;
  }
  .container {
    padding: 0 10px;
  }
}
@media (max-width: 600px) {
  h1, .hero h1 {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
  h2 {
    font-size: 1.05rem;
    margin-bottom: 11px;
  }
  p, ul, ol, .footer-contact {
    font-size: 0.98rem;
  }
  .content-wrapper {
    gap: 14px;
  }
}

/* --------------------------------------------------
   ACCESSIBILITY: FOCUS STATES
-------------------------------------------------- */
a:focus, button:focus, .cta:focus, .cookie-btn:focus, .mobile-menu-close:focus {
  outline: 2px dashed #C0AE84;
  outline-offset: 3px;
}

/* --------------------------------------------------
   UTILITY CLASSES & SPACING
-------------------------------------------------- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-30 { margin-top: 30px !important; }
.mb-30 { margin-bottom: 30px !important; }

/* Extra white-space helpers */
.py-20 { padding-top: 20px !important; padding-bottom: 20px !important; }
.px-20 { padding-left: 20px !important; padding-right: 20px !important; }

/* Crisp hover for links in text sections */
.text-section a {
  color: #C0AE84;
  border-bottom: 1px solid #C0AE84;
  text-decoration: none;
  transition: color 0.18s, border-color 0.18s;
}
.text-section a:hover, .text-section a:focus {
  color: #B39A66;
  border-color: #B39A66;
}

/* Tables: make mobile-friendly */
@media (max-width: 600px) {
  .pricing-table th, .pricing-table td {
    padding: 10px 4px;
    font-size: 0.93rem;
  }
}

/* --------------------------------------------------
   MICRO-INTERACTIONS & TRANSITIONS
-------------------------------------------------- */
.card, .feature-grid li, .feature-list li, .service-list li, .testimonial-card, .faq-list li, .cta, .cookie-btn, .pricing-table {
  transition: box-shadow 0.21s, background 0.2s, color 0.15s, transform 0.18s;
}

/* Prevent content overlap; minimum spacing between sections */
.section + .section {
  margin-top: 32px;
}
.content-wrapper > * + * {
  margin-top: 0 !important;
}

/* --------------------------------------------------
   NO GRID OR COLUMN PROPERTIES ANYWHERE!
-------------------------------------------------- */
/* Flexbox layouts only! */

/* END CSS */
