/* CSS RESET & NORMALIZE - BEGIN */
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 {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  line-height: 1.55;
  background: #F6F3EC;
  color: #272F4B;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img, picture {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

h1 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 2.25rem;
  margin-bottom: 16px;
  color: #272F4B;
}
h2 {
  font-family: 'Merriweather', serif;
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #272F4B;
}
h3 {
  font-family: 'Merriweather', serif;
  font-weight: 400;
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #272F4B;
}


.subheading {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.1rem;
  color: #6B6B6B;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

p, li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #272F4B;
  margin-bottom: 10px;
}

strong {
  color: #272F4B;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(39,47,75,0.06);
}
@media (max-width: 768px) {
  section {
    margin-bottom: 40px;
    padding: 24px 8px;
    border-radius: 16px;
  }
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 0 16px 0;
}

header {
  background: #F6F3EC;
  box-shadow: 0 2px 12px rgba(39,47,75,0.03);
  position: sticky;
  top: 0;
  z-index: 30;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #DFB13A;
  color: #fff;
  box-shadow: 0 2px 5px rgba(39,47,75,0.09);
}
.main-nav .cta.primary {
  background: #DFB13A;
  color: #272F4B;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav .cta.primary:hover,
.main-nav .cta.primary:focus {
  background: #272F4B;
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #272F4B;
  border-radius: 8px;
  background: transparent;
  padding: 6px 12px;
  transition: background 0.2s;
  z-index: 101;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #DFB13A;
  color: #fff;
}

.mobile-menu {
  display: none;
}

/* MOBILE NAVIGATION */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    box-shadow: 0 2px 24px rgba(39,47,75,0.12);
    z-index: 110;
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.45,0.05,0.55,0.95), opacity 0.2s;
    padding: 24px 24px 48px 24px;
  }
  .mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
  }
}

.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #272F4B;
  background: transparent;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #DFB13A;
  color: #fff;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  padding: 12px 8px;
  font-size: 1.15rem;
  color: #272F4B;
  border-radius: 6px;
  font-weight: 500;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #DFB13A;
  color: #fff;
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(100deg, #F6F3EC 80%, #fff 100%);
  border-radius: 24px;
  margin-bottom: 48px;
  padding-top: 56px;
  padding-bottom: 56px;
  display: flex;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 8px;
}
.hero-section .cta.primary {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .hero-section {
    margin-bottom: 32px;
    padding: 36px 6px 36px 6px;
    border-radius: 14px;
  }
  .hero-section .container {
    padding: 0;
  }
}

/* CTA BUTTONS */
.cta {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 12px;
  background: #272F4B;
  color: #fff;
  box-shadow: 0 3px 16px rgba(39,47,75,0.07);
  transition: background 0.22s, color 0.18s, box-shadow 0.18s, transform 0.11s;
  border: none;
  outline: none;
}
.cta.primary {
  background: #DFB13A;
  color: #272F4B;
  box-shadow: 0 3px 16px rgba(223,177,58,0.08);
}
.cta.primary:hover, .cta.primary:focus {
  background: #272F4B;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(39,47,75,0.11);
}
.cta:hover, .cta:focus {
  background: #DFB13A;
  color: #272F4B;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(223,177,58,0.07);
}

/* FEATURES FLEX PATTERNS & CARDS  */
.features-section .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 10px;
  justify-content: flex-start;
}
.feature-box {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 9px rgba(39,47,75,0.04);
  padding: 28px 22px 22px 22px;
  flex: 1 1 260px;
  max-width: 300px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.12s;
  border: 1px solid #F1EADA;
}
.feature-box:hover, .feature-box:focus-within {
  box-shadow: 0 8px 28px rgba(223,177,58,0.17);
  transform: translateY(-3px) scale(1.02);
  border-color: #DFB13A;
}
.feature-box img {
  width: 38px;
  height: 38px;
  margin-bottom: 1px;
  border-radius: 10px;
}
.feature-box h3 {
  margin: 0 0 2px 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: #272F4B;
}

@media (max-width: 900px) {
  .features-section .feature-grid {
    gap: 16px;
  }
  .feature-box {
    font-size: 0.95rem;
    padding: 18px 8px 16px 10px;
    flex: 1 1 150px;
    min-width: 170px;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .features-section .feature-grid {
    flex-direction: column;
    gap: 14px;
  }
  .feature-box {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    align-items: flex-start;
  }
}

/* Cards, Containers, Grids (Flex) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(39,47,75,0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 18px;
  transition: box-shadow 0.13s, border 0.13s;
  border: 1px solid #F0E8D8;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 8px 24px rgba(39,47,75,0.10);
  border-color: #DFB13A;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(39,47,75,0.08);
  padding: 20px 22px;
  max-width: 370px;
  flex: 1 1 330px;
  margin-bottom: 20px;
  border: 1px solid #E5E5DF;
  transition: box-shadow 0.15s, border 0.14s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 28px rgba(39,47,75,0.18);
  border-color: #DFB13A;
}
.testimonial-card p {
  color: #272F4B;
  font-size: 1.02rem;
  line-height: 1.6;
}
.testimonial-meta {
  font-size: 0.96rem;
  color: #8C825C;
  font-style: italic;
}
.testimonial-card img {
  height: 24px;
  width: auto;
  margin-top: -8px;
}
@media (max-width: 900px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-card {
    max-width: 96vw;
    min-width: 0;
  }
}

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

/* FAQ Section & Lists */
.faq-section .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 6px rgba(39,47,75,0.07);
  padding: 18px 14px;
  min-width: 220px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  border: 1px solid #F6F3EC;
}
.faq-item h3 {
  font-size: 1.09rem;
  font-weight: 600;
  margin-bottom: 8px;
}

ul, ol {
  list-style: disc inside;
  margin-bottom: 14px;
  padding-left: 20px;
}
li {
  margin-bottom: 8px;
}

.service-details {
  font-size: 1.07rem;
  color: #272F4B;
  background: #F6F3EC;
  border-radius: 10px;
  padding: 12px 18px;
  margin: 16px 0 8px 0;
  line-height: 1.55;
}

/* Section: Contact, Maps, Addresses */
.contact-section {
  background: #fff;
}
.text-section {
  margin-bottom: 12px;
}
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  margin-top: 10px;
}
.map-placeholder img {
  width: 100%;
  max-width: 220px;
  border-radius: 12px;
  margin-bottom: 2px;
}

.confirmation-message {
  padding: 18px 22px;
  background: #F8F8F2;
  border-left: 5px solid #DFB13A;
  border-radius: 9px;
  color: #272F4B;
  margin-bottom: 18px;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: #272F4B;
  color: #fff;
  padding: 32px 0 18px 0;
  font-size: 0.97rem;
}
footer .container {
  align-items: flex-start;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 10px;
}
.footer-links a {
  color: #FFFBE6;
  padding: 7px 12px;
  border-radius: 6px;
  transition: background 0.18s, color 0.14s;
}
.footer-links a:hover, .footer-links a:focus {
  background: #DFB13A;
  color: #272F4B;
}
.mini-address {
  color: #E3E0D8;
  margin-bottom: 6px;
}
.copyright {
  color: #C7C7C3;
}

@media (max-width: 600px) {
  .footer-links {
    gap: 8px;
    flex-direction: column;
    margin-bottom: 6px;
  }
}

/* Cookie Consent Banner + Modal */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #272F4B;
  box-shadow: 0 -2px 18px rgba(39,47,75,0.13);
  padding: 20px 14px 18px 14px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  transition: transform 0.28s cubic-bezier(0.56,0.15,0.46,0.92), opacity 0.17s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-consent-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cookie-consent-banner button {
  padding: 9px 22px;
  border-radius: 10px;
  background: #DFB13A;
  color: #272F4B;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  transition: background 0.15s,color 0.14s,box-shadow 0.13s;
  margin-right: 0px;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: #272F4B;
  color: #fff;
  box-shadow: 0 4px 18px rgba(39,47,75,0.16);
}
.cookie-consent-banner .cookie-settings-btn {
  background: #F6F3EC;
  color: #272F4B;
  border: 1px solid #DFB13A;
}
.cookie-consent-banner .cookie-settings-btn:hover, .cookie-consent-banner .cookie-settings-btn:focus {
  background: #DFB13A;
  color: #272F4B;
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(30,36,46,0.32);
  z-index: 201;
  opacity: 1;
  transition: opacity 0.22s;
  pointer-events: all;
}
.cookie-modal-backdrop.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-60%) scale(1);
  background: #fff;
  color: #272F4B;
  max-width: 95vw;
  width: 410px;
  padding: 36px 32px 30px 32px;
  border-radius: 22px;
  box-shadow: 0 10px 38px rgba(39,47,75,0.23);
  z-index: 210;
  opacity: 1;
  transition: transform 0.23s cubic-bezier(0.55,0.08,0.43,1), opacity 0.15s;
  pointer-events: all;
}
.cookie-modal.hide {
  opacity: 0;
  transform: translate(-50%,30%) scale(0.97);
  pointer-events: none;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px; right: 18px;
  background: transparent;
  font-size: 1.3rem;
  color: #272F4B;
  border-radius: 8px;
  padding: 3px 8px;
  transition: background 0.2s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  background: #DFB13A;
  color: #fff;
}
.cookie-modal h2 {
  margin-top: 0;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 22px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-category input[type=checkbox] {
  accent-color: #DFB13A;
  width: 18px;
  height: 18px;
  margin-right: 4px;
}
.cookie-category.cookie-essential label {
  color: #272F4B;
}
.cookie-category.cookie-essential input[type=checkbox] {
  display: none;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions button {
  background: #DFB13A;
  color: #272F4B;
  border-radius: 9px;
  padding: 9px 17px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.11s, color 0.11s;
}
.cookie-modal .cookie-modal-actions button:hover,
.cookie-modal .cookie-modal-actions button:focus {
  background: #272F4B;
  color: #fff;
}


/* Misc */
a[href^="mailto"] {
  color: #DFB13A;
  text-decoration: underline;
}
a[href^="mailto"]:hover, a[href^="mailto"]:focus {
  color: #272F4B;
  background: #DFB13A;
  border-radius: 4px;
}

::-webkit-scrollbar {
  width: 10px;
  background: #F6F3EC;
}
::-webkit-scrollbar-thumb {
  background: #DFB13A;
  border-radius: 6px;
}

/* Accessibility focus */
a:focus, button:focus, .cta:focus, .cookie-consent-banner button:focus, .footer-links a:focus {
  outline: 2px solid #DFB13A;
  outline-offset: 2px;
}

/* Responsive adjustments */
@media (max-width: 500px) {
  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.07rem;
  }
  .cta, .cta.primary {
    font-size: 0.99rem;
    padding: 8px 14px;
  }
  .feature-box {
    font-size: 0.95rem;
  }
  .service-details {
    font-size: 0.98rem;
    padding: 10px 9px;
  }
  .testimonial-card {
    padding: 12px 8px;
  }
}

/* Print minimal style for document clarity */
@media print {
  header, footer, .cookie-consent-banner, .mobile-menu, .cta, nav, button {
    display: none !important;
  }
  section {
    box-shadow: none;
    background: #fff;
  }
}
