/* === 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,
main, 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #FBF8F5;
  color: #2B4C2D;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  position: relative;
}
article, aside, footer, header, nav, section, main {
  display: block;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #D6B074;
  outline-offset: 2px;
}

/* === BRAND FONTS & LUXURY STYLING === */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #2B4C2D;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.13;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.28rem;
  margin-bottom: 12px;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 600;
}
p, blockquote, ul, ol {
  margin-bottom: 16px;
}
strong {
  font-weight: bold;
}
blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-style: italic;
  font-size: 1.18rem;
  color: #2B4C2D;
  padding: 0 0 0 18px;
  border-left: 3px solid #D6B074;
  margin: 0 0 8px 0;
}

.container {
  max-width: 1012px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* === SECTIONS & FLEXBOX PATTERNS === */
section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(43, 76, 45, 0.04);
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(43, 76, 45, 0.07);
  padding: 24px;
  transition: box-shadow 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 24px 0 rgba(214, 176, 116, 0.18), 0 2px 12px 0 rgba(43, 76, 45, 0.09);
  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: #faf9f8;
  border: 1.5px solid #D6B074;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(214, 176, 116, 0.05);
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 0 0 2px #D6B074, 0 8px 24px 0 rgba(214, 176, 116, 0.08);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === MAIN NAVIGATION BAR & HEADER === */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 14px 0 rgba(43, 76, 45, 0.05);
  z-index: 50;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 16px 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.main-nav > a {
  display: flex;
  align-items: center;
  color: #2B4C2D;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
}
.main-nav > a:hover:not(.cta-btn),
.main-nav > a:focus-visible:not(.cta-btn) {
  background: #f9f6ef;
  color: #D6B074;
}
.main-nav img {
  height: 40px;
  margin-right: 10px;
  display: block;
}
.cta-btn {
  background: #D6B074;
  color: #2B4C2D;
  padding: 10px 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 2px 6px 0 rgba(214, 176, 116, 0.13);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  cursor: pointer;
  margin-left: 6px;
}
.cta-btn:hover, .cta-btn:focus-visible {
  background: #e2c68c;
  color: #2B4C2D;
  box-shadow: 0 0 0 3px #D6B07444;
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #2B4C2D;
  border: none;
  font-size: 2rem;
  padding: 7px 12px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 1px 6px 0 rgba(43, 76, 45, 0.07);
  position: absolute;
  right: 24px;
  top: 14px;
  z-index: 110;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus {
  background: #f3ead7;
  color: #d6b074;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 2002;
  box-shadow: 0 3px 32px 0 rgba(43, 76, 45, 0.09);
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.72,.21,.33,1.16);
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
  animation: slideInLeft 0.38s cubic-bezier(.72,.21,.33,1.16);
}
@keyframes slideInLeft {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}
.mobile-menu-close {
  font-size: 1.8rem;
  padding: 8px 14px;
  background: none;
  color: #2B4C2D;
  border: none;
  margin: 28px 0 8px 20px;
  align-self: flex-start;
  cursor: pointer;
  transition: color 0.16s, background 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #D6B074;
  background: #f4f4ef;
  border-radius: 8px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
  padding: 0 32px;
  width: 100%;
}
.mobile-nav a {
  color: #2B4C2D;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 10px 0;
  border-bottom: 1px solid #ece7d7;
  transition: color 0.16s;
  min-width: 120px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #D6B074;
}

/* NAV Responsive */
@media (max-width: 1024px) {
  .container {
    max-width: 95vw;
  }
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    font-size: 0.97rem;
  }
}
@media (max-width: 830px) {
  .main-nav {
    gap: 7px;
    font-size: 0.93rem;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/* === HERO, ADVANTAGES, SERVICES, CARDS === */
.service-list {
  background: #F8F5EF;
  border-radius: 12px;
  box-shadow: 0 1px 6px 0 rgba(43, 76, 45, 0.04);
  padding: 22px 18px 14px 18px;
  margin-bottom: 20px;
  border-left: 4px solid #D6B074;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list h3 {
  font-size: 1.13rem;
  color: #2B4C2D;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 5px;
}
.service-list img {
  max-width: 28px;
  height: 28px;
}
.service-list span, .service-list strong {
  color: #d6b074;
  font-weight: 600;
}

/* === ADVANTAGES LIST === */
ul {
  margin-left: 0;
  padding-left: 0;
}
ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1rem;
}
ul li img {
  width: 24px;
  height: 24px;
  min-width: 24px;
}

/* === FAQ ACCORDION === */
.faq-accordion h3 {
  font-size: 1.05rem;
  color: #2B4C2D;
  margin-top: 22px;
  margin-bottom: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: color .16s;
}
.faq-accordion h3:hover {
  color: #d6b074;
}
.faq-accordion p {
  margin-top: 0;
  margin-bottom: 10px;
  color: #4c5e4d;
}
.faq-contact-hint {
  background: #F1EDDE;
  border-left: 4px solid #d6b074;
  border-radius: 8px;
  padding: 12px 18px;
  margin-top: 24px;
  font-size: 1.01rem;
  color: #234626;
}
.faq-contact-hint a {
  color: #d6b074;
  text-decoration: underline;
}

/* === CONTACT DATA BOXES === */
.contact-data {
  background: #F8F5EF;
  border: 1px solid #D6B07422;
  border-radius: 12px;
  padding: 18px 18px 8px 18px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.contact-data ul {
  list-style: none;
}
.contact-data li {
  margin-bottom: 11px;
  font-size: 1rem;
  color: #2B4C2D;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-data img {
  width: 21px;
}
.map-placeholder {
  background: #efede5;
  border-radius: 8px;
  padding: 12px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4c5e4d;
  font-size: .97rem;
}
.contact-hint {
  margin-bottom: 24px;
  background: #FEFBF6;
  border-radius: 10px;
  padding: 14px;
  border-left: 3px solid #D6B074;
}
.contact-hint h3 {
  color: #2B4C2D;
  font-size: 1.08rem;
}

/* === THANK YOU / ORDER CONFIRMATION === */
.thanks-message {
  background: #f4efe2;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  border-left: 4px solid #d6b074;
}
.thanks-message img {
  width: 32px;
  margin-bottom: 8px;
}
.order-confirmation-hint {
  margin-bottom: 18px;
  background: #F1EDDE;
  border-left: 3px solid #D6B074;
  border-radius: 10px;
  padding: 11px 16px;
  font-size: .98rem;
}
.next-steps h3 {
  font-size: 1.15rem;
  margin-bottom: 7px;
}
.next-steps ul {
  padding-left: 20px;
  list-style-type: disc;
}
.next-steps li {
  display: list-item;
  margin-bottom: 5px;
}

/* === TEXT SECTIONS === */
.text-section {
  background: #F8F5EF;
  border-radius: 12px;
  padding: 26px 18px;
  margin-bottom: 16px;
}

/* === FOOTER === */
footer {
  background: #2B4C2D;
  color: #f5ecd6;
  padding-top: 32px;
  padding-bottom: 32px;
  position: relative;
  margin-top: 80px;
  font-size: 0.98rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #D6B074;
  text-decoration: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff7dc;
  text-decoration: underline;
}
address {
  color: #e8e0cc;
  font-style: normal;
  display: block;
  text-align: center;
}
footer p {
  text-align: center;
  margin-top: 12px;
  color: #bda179;
  font-size: 0.93rem;
}

/* === BUTTONS AND LINKS === */
button, .cta-btn {
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
}
button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* === UNIVERSAL SPACING & FLEX === */
.section, section, .content-wrapper, .card, .testimonial-card, .service-list {
  margin-bottom: 60px;
}
.card-container, .content-grid, .features {
  gap: 24px;
}
.text-image-section {
  gap: 30px;
}

/* == LIST, ICONS, and STRONG == */
ul, ol {
  margin-bottom: 16px;
}
strong {
  color: #2B4C2D;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 28px 8px;
  }
  .card, .service-list, .testimonial-card, .text-section {
    padding: 14px 8px;
  }
  .container {
    padding-left: 3px;
    padding-right: 3px;
  }
  .content-grid, .card-container, .features {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block !important;
  }
}

/* === TRANSITIONS & MICRO-INTERACTIONS === */
.card, .testimonial-card, .service-list, .cta-btn, .main-nav > a, .mobile-menu, .mobile-menu-toggle {
  transition: box-shadow 0.18s, background 0.18s, color 0.18s, border-color 0.18s;
}
.card:hover, .testimonial-card:hover, .service-list:hover {
  box-shadow: 0 0 0 2px #D6B074BB, 0 6px 24px 0 rgba(214, 176, 116, 0.11);
  cursor: pointer;
}
.mobile-menu {
  transition: transform 0.38s cubic-bezier(.72,.21,.33,1.16);
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2B4C2D;
  color: #fff6e1;
  padding: 24px 16px 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 3000;
  box-shadow: 0 -2px 16px 0 rgba(43, 76, 45, 0.14);
  font-size: 1.03rem;
  animation: slideUpCookie 0.38s cubic-bezier(.5,1.2,.21,1.02);
}
@keyframes slideUpCookie {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-banner .cookie-btn {
  background: #D6B074;
  color: #2B4C2D;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 7px;
  margin-left: 10px;
  font-weight: 600;
  cursor: pointer;
  margin-right: 5px;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: #2B4C2D;
  border: 1px solid #D6B074;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #e2c68c;
  color: #234626;
}

/* === COOKIE MODAL === */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43,76,45,0.50);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeModalIn 0.32s;
}
@keyframes fadeModalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #2B4C2D;
  max-width: 430px;
  width: 97vw;
  border-radius: 16px;
  box-shadow: 0 5px 40px 0 rgba(43, 76, 45, 0.15);
  padding: 34px 22px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  font-size: 1.05rem;
}
.cookie-modal h2 {
  font-size: 1.26rem;
  color: #2B4C2D;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 12px 0;
  border-bottom: 1px solid #efe7d6;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal .cookie-toggle {
  display: inline-flex;
  align-items: center;
}
.cookie-modal .cookie-switch {
  width: 38px;
  height: 22px;
  border-radius: 22px;
  background: #ece7d6;
  margin-left: 10px;
  cursor: pointer;
  position: relative;
  transition: background 0.13s;
}
.cookie-modal .cookie-switch[data-enabled="true"] {
  background: #D6B074;
}
.cookie-modal .cookie-switch-knob {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left 0.2s;
}
.cookie-modal .cookie-switch[data-enabled="true"] .cookie-switch-knob {
  left: 18px;
}
.cookie-modal .cookie-switch[data-disabled] {
  opacity: 0.38;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #2B4C2D;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #D6B074;
}

@media (max-width: 600px) {
  .cookie-modal {
    padding: 18px 7px 9px 13px;
    font-size: 0.98rem;
  }
  .cookie-modal-close {
    top: 7px;
    right: 7px;
  }
  .cookie-modal h2 {
    font-size: 1.07rem;
  }
}

/* === COLOR ACCESSIBILITY FOR TESTIMONIALS/REVIEWS & GENERIC CARDS === */
.testimonial-card,
.review-card {
  background: #fff;
  color: #2B4C2D;
  border: 1.5px solid #D6B074;
}

/* === MISCELLANEOUS === */
::-webkit-scrollbar {
  width: 8px;
  background: #f3ead7;
}
::-webkit-scrollbar-thumb {
  background: #D6B07488;
  border-radius: 14px;
}
::selection {
  background: #d6b07466;
}

/* Hide visually only but keep accessible: utility class for accessibility */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* === ENSURE MINIMUM SPACING === */
.card, .testimonial-card, .service-list, .feature-item, .contact-data, .contact-hint, .thanks-message {
  margin-bottom: 20px !important;
}

/* === ENSURE NO OVERLAPPING === */
.card, .testimonial-card, .service-list, .card-container, .content-grid, .features {
  margin-top: 0;
  margin-bottom: 20px;
}

/* === UTILITY FLEX CLASSES (EXACT CLASSES FROM BRIEF) === */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Override for stacking context of overlays */
.cookie-banner { z-index: 3000; }
.mobile-menu { z-index: 2002; }
.cookie-modal-overlay { z-index: 4000; }

/* END */
