/* 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, 
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #2C3843;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  text-decoration: none;
  color: #2C3843;
}
a:focus {
  outline: 2px solid #B6A793;
  outline-offset: 2px;
}
img {
  max-width: 100%;
  height: auto;
}
button {
  font-family: inherit;
  font-size: 16px;
  border: none;
  outline: none;
  background: none;
  color: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

/*---- TYPOGRAPHY ----*/
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2C3843;
  letter-spacing: -1px;
  margin-bottom: 24px;
  line-height: 1.2;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2C3843;
  margin-bottom: 16px;
  line-height: 1.2;
}
h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #2C3843;
  letter-spacing: 0.01em;
}
h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}
p, li {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #2C3843;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}
.signature {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #B6A793;
  font-style: italic;
  margin-top: 12px;
}
.subheadline {
  font-size: 1.15rem;
  color: #2C3843;
  opacity: 0.95;
  font-weight: 500;
  margin-bottom: 28px;
}

/*---- BUTTONS ----*/
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  background: #2C3843;
  color: #F4E9DF;
  padding: 16px 40px;
  font-size: 1.15rem;
  border-radius: 8px;
  box-shadow: 0 4px 14px 0 rgba(44,56,67,0.08);
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.1s;
  cursor: pointer;
  letter-spacing: 0.02em;
  margin-top: 20px;
  margin-bottom: 0;
}
.btn-primary:hover, .btn-primary:focus {
  background: #B6A793;
  color: #2C3843;
  box-shadow: 0 6px 18px 0 rgba(44,56,67,0.11);
  transform: translateY(-2px) scale(1.025);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F4E9DF;
  color: #2C3843;
  font-weight: 700;
  font-family: 'Lato', Arial, sans-serif;
  border-radius: 8px;
  padding: 14px 34px;
  border: 2px solid #2C3843;
  transition: background 0.15s, color 0.15s, border 0.15s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #2C3843;
  color: #F4E9DF;
  border-color: #B6A793;
}

/* BUTTON for cookie banner */
.btn-cookie {
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: bold;
  background-color: #2C3843;
  color: #F4E9DF;
  border-radius: 8px;
  margin-right: 12px;
  transition: background 0.15s, color 0.15s;
}
.btn-cookie.reject {
  background: #B6A793;
  color: #fff;
}
.btn-cookie.settings {
  background: #F4E9DF;
  color: #2C3843;
  border: 2px solid #2C3843;
}
.btn-cookie:hover, .btn-cookie:focus {
  background: #B6A793;
  color: #fff;
}
.btn-cookie.reject:hover, .btn-cookie.reject:focus {
  background: #2C3843;
  color: #F4E9DF;
}
.btn-cookie.settings:hover, .btn-cookie.settings:focus {
  background: #2C3843;
  color: #F4E9DF;
  border-color: #B6A793;
}

/*---- CONTAINER/LAYOUT ----*/
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(44,56,67, 0.06);
}
.cta {
  background: #2C3843;
  color: #F4E9DF;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.cta h2, .cta p {
  color: #F4E9DF;
}

/*---- FLEX SPACING CLASSES (MANDATORY) ----*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(44,56,67,0.08);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 260px;
  min-width: 260px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.card:hover {
  box-shadow: 0 6px 22px 0 rgba(44,56,67, 0.15);
  transform: translateY(-3px) scale(1.018);
}
.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: #F4E9DF;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(44,56,67,0.05);
  flex-direction: column;
}
.testimonial-card p {
  font-size: 1.05rem;
  font-weight: 600;
  color: #2C3843;
}
.testimonial-card span {
  font-size: 0.95rem;
  color: #2C3843;
  font-weight: bold;
  font-family: 'Lato', Arial, sans-serif;
  opacity: 0.85;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*---- SPECIAL FLEX CLASSES FOR PAGE-GRID CONTENT ----*/
.feature-grid, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 8px;
}
.feature-grid > div, .service-grid > div {
  background: #fff;
  border: 2px solid #F4E9DF;
  border-radius: 18px;
  padding: 22px 18px;
  flex: 1 1 250px;
  min-width: 240px;
  max-width: 320px;
  box-shadow: 0 1px 8px 0 rgba(44,56,67,0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.11s;
  margin-bottom: 0;
}
.feature-grid > div:hover, .service-grid > div:hover {
  border-color: #B6A793;
  box-shadow: 0 4px 18px 0 rgba(44,56,67, 0.08);
  transform: scale(1.028);
}
.feature-grid img, .service-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}

.text-section, .info-block, .map-visual, .timeline-visual, .story-snippet {
  background: #F4E9DF;
  padding: 22px 22px;
  border-radius: 16px;
  margin-bottom: 16px;
}
.story-snippet {
  border-left: 6px solid #B6A793;
  margin-bottom: 22px;
}
.timeline-visual {
  border-left: 4px solid #2C3843;
  font-weight: 700;
  color: #2C3843;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #F4E9DF;
  padding: 17px 18px;
  border-radius: 12px;
  color: #2C3843;
  transition: box-shadow 0.15s;
}
.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 7px;
  font-weight: bold;
  color: #2C3843;
}
.faq-item p {
  font-size: 0.99rem;
}

/*---- CONTACT INFO FLEX ----*/
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.address-block, .phone-email-info, .office-hours {
  background: #F4E9DF;
  border-radius: 14px;
  padding: 16px 20px;
  flex: 1 1 220px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.address-block img, .phone-email-info img, .office-hours img {
  width: 21px;
  margin-bottom: 8px;
}
.phone-email-info a { color: #2C3843; font-weight: bold; }
.phone-email-info a:hover { color: #B6A793; text-decoration: underline; }

/*---- HERO SECTION ----*/
.hero {
  background: #F4E9DF;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 64px 0 64px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero h1 {
  color: #2C3843;
}

/*---- HEADER & NAVIGATION ----*/
header {
  width: 100%;
  background: #fff;
  border-bottom: 2px solid #F4E9DF;
  box-shadow: 0 2px 10px 0 rgba(44,56,67,0.04);
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 80px;
  gap: 28px;
  position: relative;
}
header nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
header nav a {
  font-family: 'Lato', Arial, sans-serif;
  color: #2C3843;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 9px 12px;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
}
header nav a:hover, header nav a:focus {
  background: #B6A793;
  color: #fff;
}
header img {
  height: 48px;
}
/* Hide desktop nav in mobile by default */
.mobile-menu-toggle {
  display: none;
}

/*--- FOOTER ----*/
footer {
  width: 100%;
  background: #2C3843;
  color: #F4E9DF;
  padding: 40px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
}
footer img {
  height: 42px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.footer-nav a {
  color: #F4E9DF;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: bold;
  transition: color 0.16s, text-decoration 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #B6A793;
  text-decoration: underline;
}
.contact-footer {
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 340px;
  color: #F4E9DF;
  opacity: 0.96;
}

.contact-footer p{
	color: #F4E9DF;
}

/*---- UTILITY CLASSES ----*/
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.text-center { text-align: center; }

/*---- MOBILE BURGER MENU ----*/
.mobile-menu-toggle {
  display: none;
  background: #2C3843;
  color: #F4E9DF;
  border-radius: 8px;
  font-size: 2.2rem;
  padding: 8px 20px;
  margin-left: auto;
  transition: background 0.15s, color 0.15s, box-shadow 0.18s;
  position: relative;
  z-index: 120;
}
.mobile-menu-toggle:focus {
  background: #B6A793;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #2C3843;
  color: #F4E9DF;
  z-index: 160;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.34s cubic-bezier(.68,-0.55,.27,1.55), opacity 0.22s;
  box-shadow: 0 8px 40px 0 rgba(44,56,67,0.23);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  color: #F4E9DF;
  background: #B6A793;
  border-radius: 50%;
  padding: 8px 16px;
  font-size: 2.3rem;
  align-self: flex-end;
  margin: 20px 18px 6px 0;
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
  z-index: 170;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F4E9DF;
  color: #2C3843;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  padding: 32px 28px;
  margin-top: 12px;
}
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #F4E9DF;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0;
  padding: 12px 0 8px 0;
  transition: color 0.15s, background 0.12s;
  border-radius: 6px;
  min-width: 240px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #B6A793;
  color: #fff;
}

/* MOBILE NAV OVERLAY MASK FOR ANIMATION (OPTIONAL) */
.mobile-menu::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
}

/*---- COOKIE BANNER FIXED ----*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #2C3843;
  color: #F4E9DF;
  z-index: 2000;
  box-shadow: 0 -3px 32px 0 rgba(44,56,67,0.14);
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  gap: 32px;
  padding: 32px 20px 24px 20px;
  justify-content: center;
  animation: bannerFadeIn 0.7s cubic-bezier(.42,0,.1,1);
}
@keyframes bannerFadeIn {
  0% {transform: translateY(100%); opacity:0}
  100% {transform: translateY(0); opacity:1}
}
.cookie-banner__msg {
  flex: 1 1 320px;
  font-size: 1rem;
  color: #F4E9DF;
  font-family: 'Lato', Arial, sans-serif;
  margin-right: 14px;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/*---- COOKIE MODAL ----*/
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: 400px;
  width: 90%;
  background: #fff;
  color: #2C3843;
  border-radius: 20px;
  box-shadow: 0 12px 50px 0 rgba(44,56,67,0.23);
  transform: translate(-50%, -52%);
  z-index: 3000;
  padding: 36px 28px 30px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  animation: cookieModalIn 0.5s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes cookieModalIn {
  0% {transform: translate(-50%,50%) scale(0.7); opacity: 0}
  100% {opacity: 1; transform: translate(-50%,-52%) scale(1)}
}
.cookie-modal__header {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.cookie-modal__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
}
.cookie-modal .toggle {
  width: 46px; height: 26px;
  background: #F4E9DF;
  border-radius: 16px;
  position: relative;
  margin-left: 14px;
  cursor: pointer;
  border: 1.5px solid #B6A793;
}
.cookie-modal .toggle[data-on="true"] {
  background: #B6A793;
  border-color: #2C3843;
}
.cookie-modal .toggle-thumb {
  width: 22px; height: 22px;
  background: #fff;
  position: absolute;
  top: 2px; left: 2px;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(44,56,67,0.09);
  transition: left 0.19s cubic-bezier(.46,.03,.52,.96), background 0.12s;
}
.cookie-modal .toggle[data-on="true"] .toggle-thumb {
  left: 22px;
  background: #2C3843;
}
.cookie-modal__actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.cookie-modal__close {
  position: absolute;
  top: 13px;
  right: 23px;
  background: transparent;
  color: #2C3843;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #B6A793;
}

/*---- CARD & VISUALS ----*/
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 7px 0 rgba(44,56,67,0.07);
  margin-bottom: 20px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.16s, transform 0.06s;
}
.card:hover {
  box-shadow: 0 4px 20px 0 rgba(44,56,67, 0.11);
  transform: scale(1.018) translateY(-2px);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*---- FORMS (general) ----*/
input, textarea, select {
  border: 2px solid #B6A793;
  border-radius: 8px;
  padding: 12px 14px;
  width: 100%;
  font-size: 1em;
  font-family: 'Lato', Arial, sans-serif;
  margin-bottom: 12px;
}
input:focus, textarea:focus, select:focus {
  border-color: #2C3843;
  outline: none;
}
label {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.99em;
  font-weight: 700;
  color: #2C3843;
  margin-bottom: 7px;
}

/*---- LISTS & TABLES ----*/
ul, ol {
  margin-left: 22px;
  padding-left: 0;
  margin-bottom: 18px;
}
ul li, ol li {
  font-size: 1rem;
  margin-bottom: 7px;
}
ul li::marker, ol li::marker { color: #B6A793; font-weight: bold; }

/*---- RESPONSIVE DESIGN ----*/
@media (max-width: 1080px) {
  .container {
    max-width: 95vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .footer-nav {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-grid {
    justify-content: center;
    gap: 20px;
  }
  .card-container, .content-grid {
    gap: 13px;
    justify-content: center;
  }
  .contact-info {
    gap: 14px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 25px 10px 20px 10px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-left: 9px;
    padding-right: 9px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .section, .cta {
    padding: 22px 7px;
    margin-bottom: 38px;
    border-radius: 12px;
  }
  .hero {
    padding: 38px 0 38px 0;
    border-radius: 12px;
    margin-bottom: 38px;
  }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  .feature-grid > div, .service-grid > div {
    min-width: 92vw;
    max-width: 92vw;
    padding: 18px 11px;
  }
  .contact-info {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  /* Switch header nav to burger */
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }
  header nav {
    display: none !important;
  }
  .btn-primary {
    font-size: 1rem;
    padding: 13px 18px;
    margin-top: 15px;
  }
  header img, footer img {
    height: 33px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .map-visual, .timeline-visual, .text-section, .info-block, .story-snippet {
    padding: 13px 7px;
    border-radius: 8px;
  }
  .cookie-modal {
    padding: 22px 9px 14px 9px;
    border-radius: 12px;
    font-size: 1.01rem;
  }
  .cookie-modal__close {
    right: 12px;
    top: 8px;
    font-size: 1.3rem;
  }
  .mobile-nav {
    padding: 19px 8px;
    gap: 13px;
  }
  .mobile-nav a {
    min-width: 160px;
    font-size: 1.03rem;
    padding: 11px 0 6px 0;
  }
}
@media (max-width: 480px) {
  .feature-grid, .service-grid, .card-container, .content-grid {
    flex-direction: column !important;
    gap: 12px;
  }
  .testimonial-card {
    padding: 10px 6px;
    gap: 10px;
    border-radius: 9px;
  }
  .card {
    min-width: 90vw;
    padding: 12px 6px;
    border-radius: 7px;
  }
}
@media (max-width: 400px) {
  .section, .cta {
    padding: 7px 2px;
  }
  .cookie-banner {
    padding: 15px 3px 6px 3px;
  }
}

/*---- COLOR UTILITIES ----*/
.bg-primary { background: #2C3843 !important; color: #F4E9DF !important; }
.bg-secondary { background: #B6A793 !important; color: #fff !important; }
.bg-accent { background: #F4E9DF !important; color: #2C3843 !important; }
.border-radius-8 { border-radius: 8px; }

/*---- SMOOTH TRANSITIONS ----*/
*, ::before, ::after {
  box-sizing: inherit;
  transition: color 0.12s, background 0.18s, box-shadow 0.18s, border-color 0.16s;
}

/*---- SELECTION ----*/
::selection {
  color: #fff;
  background: #B6A793;
}

/*---- ACCESSIBILITY (FOCUS STATE) ----*/
:focus-visible {
  outline: 2.5px solid #B6A793;
  outline-offset: 1.5px;
}

/*---- ENSURE NO GRID OR COLUMNS USED (MANDATORY) ----*/
/* No CSS grid or column properties used anywhere */
