/* 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,
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 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  background: #FFFFFF;
  color: #283848;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #283848;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.4rem;
  color: #876338;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  color: #876338;
}
p, ul, ol, dl {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #283848;
}
a {
  color: #876338;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #283848;
}
strong {
  font-weight: 700;
}
ul, ol {
  margin-bottom: 20px;
  padding-left: 1.2em;
}
li {
  margin-bottom: 8px;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}
button,
input[type="button"],
input[type="submit"] {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

/* BASIC STRUCTURE */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* HEADER */
header {
  background: #FFFFFF;
  border-bottom: 1px solid #E8DEF0;
  z-index: 1020;
  position: sticky;
  top: 0;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 32px;
  padding-top: 8px;
  padding-bottom: 8px;
}
header img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 500;
  color: #283848;
  font-size: 1rem;
  transition: color 0.2s;
  padding: 6px 0 4px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #876338;
  border-bottom: 2px solid #876338;
}
.main-nav .cta-btn {
  background: #876338;
  color: #fff;
  border-radius: 24px;
  padding: 8px 24px;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  margin-left: 20px;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.25s;
  box-shadow: 0 2px 8px rgba(40,56,72,0.06);
}
.main-nav .cta-btn:hover,
.main-nav .cta-btn:focus {
  background: #283848;
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #876338;
  background: none;
  border: none;
  padding: 8px 12px;
  margin-left: 12px;
  border-radius: 50%;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #F3F0F5;
}

/* HERO */
.hero {
  background: #F8F7FA;
  padding: 50px 0 38px 0;
  min-height: 280px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 650px;
  padding: 0 12px;
}
.hero h1,
.hero h2 {
  margin-bottom: 10px;
  color: #283848;
}
.hero p {
  font-size: 1.16rem;
  color: #283848;
}
.hero .cta-btn {
  margin-top: 22px;
}

/* SECTIONS & CARDS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(40,56,72,0.07);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  transition: box-shadow 0.22s;
  position: relative;
  min-width: 240px;
  flex: 1 1 320px;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 6px 24px rgba(40,56,72,0.13);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  margin: 20px 0 0 0;
  background: #fff;
  color: #283848;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(40,56,72,0.10);
  min-width: 220px;
  max-width: 560px;
}
.testimonial-card p {
  color: #283848;
  font-size: 1.05rem;
  margin: 0 0 8px 0;
}
.testimonial-card span {
  color: #876338;
  font-size: 0.97rem;
  font-weight: 600;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 28px 0 0 0;
}
.feature-grid > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(40,56,72,0.08);
  padding: 24px 20px;
  min-width: 210px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s;
  margin-bottom: 20px;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 22px rgba(40,56,72,0.14);
}
.feature-grid img {
  height: 32px;
  width: 32px;
  margin-bottom: 10px;
}
.feature-grid h3 {
  margin-bottom: 8px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 10px rgba(40,56,72,0.07);
  padding: 26px 18px;
  flex: 1 1 220px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.15s;
  margin-right: 0;
}
.service-card:hover {
  box-shadow: 0 4px 20px rgba(40,56,72,0.13);
}
.service-card img {
  height: 30px;
  width: 30px;
  margin-bottom: 10px;
}

/* LISTS with ICONS */
ul li, ol li {
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
ul li img {
  width: 20px;
  height: 20px;
}

/* FAQ */
.faq-list {
  margin-top: 18px;
}
.faq-list dt {
  font-weight: 700;
  color: #283848;
  margin-bottom: 4px;
  font-size: 1.1rem;
  margin-top: 24px;
}
.faq-list dd {
  margin-left: 0;
  color: #283848;
  margin-bottom: 10px;
}

/* CTA SECTIONS */
.cta {
  background: #E8DEF0;
  padding: 40px 0;
  margin-bottom: 60px;
}
.cta .content-wrapper {
  align-items: center;
}
.cta h2 {
  color: #283848;
  font-size: 2.1rem;
}
.cta .cta-btn {
  margin-top: 18px;
}
.contact-info-snippet {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 18px;
  color: #283848;
  font-size: 1rem;
}
.contact-info-snippet img {
  margin-right: 8px;
  height: 18px;
  width: 18px;
  vertical-align: middle;
}

.confirmation {
  padding: 70px 0;
  background: #F8F7FA;
  min-height: 340px;
}
.confirmation .content-wrapper {
  align-items: center;
  text-align: center;
}

/* CONTACT DETAILS BLOCK */
.contact-details {
  background: #FAF9FB;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(40,56,72,0.05);
  padding: 20px 20px 14px 20px;
  margin-bottom: 26px;
}
.google-maps-snippet {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
  font-size: 0.98rem;
  color: #283848;
}
.google-maps-snippet img {
  vertical-align: middle;
  width: 22px;
  height: 22px;
}

/* FOOTER */
footer {
  background: #FAF9FB;
  border-top: 1px solid #E8DEF0;
  padding: 32px 0 16px 0;
  font-size: 0.98rem;
  color: #283848;
  width: 100%;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo {
  min-width: 60px;
  margin-bottom: 16px;
}
.footer-logo img {
  height: 40px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #876338;
  text-decoration: none;
  font-size: 0.97rem;
  margin-bottom: 2px;
  transition: color 0.15s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #283848;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
  color: #283848;
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 10px;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  filter: grayscale(80%);
  transition: filter 0.15s;
}
.footer-social a:hover img,
.footer-social a:focus img {
  filter: none;
}

/* BUTTONS & CALL-TO-ACTION */
.cta-btn, .cta-btn:visited {
  background: #876338;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 32px;
  font-size: 1.17rem;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 700;
  transition: background 0.2s, box-shadow 0.22s, color 0.2s;
  box-shadow: 0 2px 10px rgba(40,56,72,0.09);
  cursor: pointer;
  outline: none;
  margin-top: 8px;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #283848;
  color: #fff;
  box-shadow: 0 8px 22px rgba(40,56,72,0.18);
}
.button,
button,
input[type='submit'],
input[type='button'] {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  color: #283848;
  background: #E8DEF0;
  border-radius: 22px;
  border: none;
  padding: 7px 22px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
}
.button:hover, button:hover, input[type='submit']:hover {
  background: #876338;
  color: #ffffff;
}

/* MOBILE NAVIGATION MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 90vw;
  max-width: 340px;
  background: #ffffff;
  box-shadow: -2px 0 16px 4px rgba(40,56,72,0.16);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.76, 0, 0.24, 1);
  display: flex;
  flex-direction: column;
  padding: 32px 18px 18px 24px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  color: #283848;
  background: none;
  border: none;
  margin-bottom: 17px;
  cursor: pointer;
  transition: background 0.12s;
  border-radius: 50%;
  padding: 8px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F3F0F5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav a {
  font-size: 1.13rem;
  color: #283848;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 600;
  padding: 13px 4px;
  border-radius: 6px;
  transition: background 0.13s, color 0.13s;
  text-decoration: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #E8DEF0;
  color: #876338;
}

@media (max-width: 1100px) {
  .container {
    max-width: 950px;
  }
}
@media (max-width: 920px) {
  .container {
    max-width: 780px;
  }
  .main-nav {
    gap: 18px;
  }
  .feature-grid {
    gap: 18px;
  }
  .service-cards {
    gap: 18px;
  }
}

@media (max-width: 820px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .service-cards {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .footer-contact,
  .footer-nav,
  .footer-social,
  .footer-logo {
    margin-bottom: 10px;
  }
  footer .container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .header .container {
    gap: 12px;
  }
  .section {
    margin-bottom: 36px;
    padding: 32px 8px;
  }
  .feature-grid,
  .service-cards,
  .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .testimonial-card {
    padding: 13px;
    min-width: unset;
  }
  .footer-social {
    margin-top: 0;
  }
  .cta {
    padding: 24px 0;
    margin-bottom: 32px;
  }
  .hero {
    padding: 30px 0 18px 0;
    min-height: 180px;
  }
  .confirmation {
    padding: 40px 0;
    min-height: unset;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.38rem;
  }
  h2 {
    font-size: 1.08rem;
  }
  .card, .feature-grid > div, .service-card {
    padding: 16px 7px;
    min-width: 0;
  }
  .testimonial-card {
    padding: 8px 5px;
    font-size: 0.98rem;
  }
  .footer-logo img {
    height: 30px;
  }
  .mobile-menu {
    width: 96vw;
    max-width: none;
    padding: 24px 6px 6px 8px;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #E8DEF0;
  color: #283848;
  font-size: 1rem;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  padding: 18px 28px 18px 20px;
  box-shadow: 0 -3px 18px rgba(40,56,72,0.10);
  z-index: 2100;
  transition: transform 0.35s cubic-bezier(0.76,0,0.24,1);
  transform: translateY(120%);
}
.cookie-banner.active {
  transform: translateY(0);
}
.cookie-banner__msg {
  flex: 1 1 0;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner__btn {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  background: #876338;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 7px 22px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.15s, color 0.1s;
}
.cookie-banner__btn:hover,
.cookie-banner__btn:focus {
  background: #283848;
  color: #FFF;
}
.cookie-banner__btn.settings {
  background: #fff;
  color: #876338;
  border: 1px solid #876338;
}
.cookie-banner__btn.settings:hover {
  background: #E8DEF0;
  color: #283848;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 10px 16px 10px;
  }
  .cookie-banner__actions {
    width: 100%;
    gap: 8px;
    flex-wrap: wrap;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(40,56,72,0.18);
  z-index: 2200;
  display: none;
  justify-content: center;
  align-items: center;
  transition: opacity 0.18s;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 17px;
  max-width: 410px;
  width: 90vw;
  padding: 30px 28px 23px 28px;
  box-shadow: 0 8px 38px rgba(40,56,72,0.27);
  position: relative;
  color: #283848;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #283848;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 12px 0 17px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category input[type='checkbox'] {
  accent-color: #876338;
  width: 18px; height: 18px;
}
.cookie-category .essential {
  color: #283848;
  font-weight: 600;
  font-size: 1.01rem;
  margin-left: 4px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 15px;
}
.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #876338;
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 50%;
  transition: background 0.11s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F6F3FA;
}

@media (max-width: 500px) {
  .cookie-modal {
    padding: 15px 7px 13px 10px;
    max-width: 98vw;
  }
}

/* ANIMATIONS */
.mobile-menu,
.cookie-banner,
.cookie-modal {
  will-change: transform, opacity;
}

/* UTILITY */
.mt-20 {
  margin-top: 20px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mt-32 {
  margin-top: 32px;
}
.mb-32 {
  margin-bottom: 32px;
}
.hide {
  display: none !important;
}

/* HR style */
hr {
  border: none;
  border-bottom: 1px solid #E8DEF0;
  margin: 32px 0;
}

/* a11y focus styles */
:focus-visible {
  outline: 2px solid #A68C68;
  outline-offset: 2px;
}

/* Print friendly */
@media print {
  header, footer, nav, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  body {
    color: #000;
    background: #fff;
  }
}
