/* --- CSS RESET & BASE --- */
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 {
  height: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  background: #F2F7EE;
  color: #25332E;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #104B33;
  text-decoration: none;
  transition: color 0.18s;
}

a:hover, a:focus {
  color: #E2C044;
  outline: none;
}

ul, ol {
  padding-left: 1.4em;
}

li {
  margin-bottom: 8px;
}

/* --- BRAND FONTS --- */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat Bold'), local('Montserrat-Bold'),
    url('https://fonts.googleapis.com/css?family=Montserrat:700&display=swap');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans Regular'), local('OpenSans-Regular'),
    url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 700;
  color: #104B33;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; letter-spacing: 0.02em; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
}

p, li, table, ul, ol {
  font-family: 'Open Sans', 'Georgia', serif;
  font-size: 1rem;
  color: #25332E;
}

.subheadline {
  font-size: 1.1rem;
  color: #6E7C75;
  margin-bottom: 30px;
  font-family: 'Open Sans', serif;
  letter-spacing: 0.02em;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.text-section {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.text-section ul, .text-section ul li {
  margin: 0 !important;
  padding-left: 16px;
}

.text-section p {
  margin-bottom: 0;
}

/* --- MAIN NAVIGATION --- */
header {
  background: #F2F7EE;
  border-bottom: 1px solid #E9E5D9;
  padding-top: 12px;
  padding-bottom: 12px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.main-nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 16px;
  gap: 24px;
}

.main-nav > a img {
  height: 48px;
  width: auto;
  margin-right: 16px;
  display: block;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  align-items: center;
}

.main-nav ul li a {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1rem;
  color: #104B33;
  padding: 6px 14px;
  border-radius: 24px;
  transition: background 0.22s, color 0.22s;
  font-weight: 500;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: #E2C044;
  color: #104B33;
  outline: none;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #104B33;
  cursor: pointer;
  margin-left: 12px;
  z-index: 120;
  line-height: 1;
  padding: 3px 8px;
  border-radius: 4px;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #E2C044;
  color: #104B33;
}

@media (max-width: 1024px) {
  .main-nav ul {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .main-nav ul {
    gap: 9px;
  }
}
@media (max-width: 768px) {
  .main-nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* --- MOBILE SLIDE-IN MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(16, 75, 51, 0.97);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.7,.28,.27,1.19);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 2.3rem;
  color: #E2C044;
  cursor: pointer;
  margin: 28px 28px 12px 0;
  align-self: flex-end;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F2F7EE;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 20px;
  gap: 18px;
  padding-left: 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1.2rem;
  color: #F2F7EE;
  padding: 10px 0;
  width: 100%;
  display: block;
  border-radius: 6px;
  transition: background 0.18s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E2C044;
  color: #104B33;
  outline: none;
}

@media (min-width: 769px) {
  .mobile-menu { display: none; }
}

/* --- CALL TO ACTION BUTTONS --- */
.cta-button {
  display: inline-block;
  font-family: 'Montserrat', serif;
  background: #104B33;
  color: #FFF;
  font-size: 1rem;
  border: none;
  padding: 13px 32px;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(16,75,51,0.09), 0 1.5px 3px rgba(34,34,34,0.03);
  letter-spacing: 0.05em;
  font-weight: 700;
  transition: background 0.21s, color 0.21s, transform 0.13s;
  margin-top: 10px;
  margin-bottom: 4px;
  cursor: pointer;
}
.cta-button:hover, .cta-button:focus {
  background: #E2C044;
  color: #104B33;
  transform: translateY(-2px) scale(1.04);
  outline: none;
}

/* --- SERVICE CARDS --- */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.service-card {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(34, 34, 34, 0.06);
  padding: 32px 24px 20px 24px;
  min-width: 220px;
  flex: 1 1 260px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
  transition: box-shadow 0.23s, transform 0.16s;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 6px 26px rgba(16,75,51, 0.09), 0 3px 12px rgba(34,34,34,0.06);
  transform: translateY(-6px) scale(1.018);
  outline: none;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.price {
  color: #104B33;
  font-weight: 700;
  font-family: 'Montserrat', serif;
  font-size: 1.09rem;
  margin-top: 7px;
}

@media (max-width: 900px) {
  .service-cards {
    gap: 18px;
  }
  .service-card {
    padding: 22px 14px 14px 14px;
    min-width: 160px;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .service-cards {
    flex-direction: column;
    gap: 16px;
  }
  .service-card {
    min-width: 0;
    max-width: 100%;
    padding: 18px 10px 12px 10px;
  }
}

/* --- TABLES --- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 22px;
  margin-bottom: 6px;
}
.price-table th, .price-table td {
  font-family: 'Open Sans', serif;
  font-size: 1rem;
  padding: 10px 12px;
  border-bottom: 1px solid #E9E5D9;
  color: #104B33;
  text-align: left;
}
.price-table tr:nth-child(even) {
  background: #F2F7EE;
}
.price-table th {
  font-weight: 700;
  background: #E2C044;
  color: #104B33;
}

/* --- FEATURE LISTS --- */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 0;
  margin-top: 8px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
}
.feature-list img {
  width: 32px;
  height: 32px;
  vertical-align: middle;
}

/* --- FLEX UTILITIES --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 2px 13px rgba(34, 34, 34, 0.08);
  padding: 18px 16px;
  min-width: 230px;
  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;
}

@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FFF;
  color: #104B33;
  padding: 20px 22px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 2.2px 12px rgba(16, 75, 51, 0.07), 0 0.5px 2px rgba(34,34,34,0.02);
  max-width: 520px;
  min-width: 180px;
  transition: box-shadow 0.19s, transform 0.13s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 4px 19px rgba(16,75,51, 0.12);
  transform: translateY(-3px) scale(1.012);
  outline: none;
}
.testimonial-card p {
  font-size: 1.09rem;
  color: #104B33;
  margin-bottom: 8px;
  font-style: italic;
  line-height: 1.6;
}
.testimonial-footer {
  margin-top: 7px;
  font-size: 0.99rem;
  color: #4C6959;
}
.testimonial-footer strong {
  color: #104B33;
}
.testimonial-footer span {
  color: #E2C044;
  margin-left: 10px;
  font-size: 1.1rem;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 750px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
}

/* --- INCLUSIONS GRID --- */
.inclusions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px;
  margin-bottom: 24px;
}
.inclusions-grid > div {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #FFF;
  border-radius: 10px;
  padding: 16px 20px;
  color: #104B33;
  font-size: 1rem;
  box-shadow: 0 1.2px 7px rgba(16, 75, 51, 0.07);
  min-width: 150px;
  font-family: 'Open Sans', serif;
  margin-bottom: 0;
}
.inclusions-grid img {
  width: 24px;
  height: 24px;
}
@media (max-width: 600px) {
  .inclusions-grid {
    gap: 12px;
  }
  .inclusions-grid > div {
    padding: 10px 11px;
    min-width: 110px;
    font-size: 0.96rem;
  }
}

.features, .feature-item { /* For more custom uses if needed */
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.feature-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- CONTACT INFO --- */
.contact-info {
  list-style: none;
  margin-bottom: 24px;
}
.contact-info li {
  margin-bottom: 8px;
  font-size: 1rem;
  font-family: 'Open Sans', serif;
  color: #25332E;
}

/* --- FOOTER --- */
footer {
  background: #F2F7EE;
  border-top: 1px solid #E9E5D9;
  padding: 38px 0 26px 0;
  width: 100%;
  margin-top: 30px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 19px;
}
.footer-menu a {
  font-family: 'Montserrat', serif;
  color: #104B33;
  font-size: 1rem;
  padding: 6px 17px;
  border-radius: 20px;
  transition: background 0.19s, color 0.19s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #E2C044;
  color: #104B33;
  outline: none;
}
.footer-info {
  text-align: center;
  color: #6E7C75;
  font-size: 0.98rem;
  font-family: 'Open Sans', serif;
  margin-top: 6px;
}

@media (max-width: 600px) {
  .footer-menu {
    gap: 12px;
    flex-direction: column;
    align-items: center;
  }
  .footer-info {
    font-size: 0.95rem;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #E2C044;
  color: #104B33;
  font-family: 'Open Sans', serif;
  box-shadow: 0 -3px 12px rgba(16,75,51,0.12);
  padding: 22px 16px;
  z-index: 3000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}
.cookie-banner .cookie-banner-text {
  max-width: 450px;
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner-buttons button {
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  padding: 8px 21px;
  border-radius: 22px;
  border: none;
  background: #104B33;
  color: #FFF;
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.19s, color 0.19s, transform 0.11s;
}
.cookie-banner-buttons button:hover, .cookie-banner-buttons button:focus {
  background: #FFF;
  color: #104B33;
  transform: translateY(-1px);
  outline: none;
}
.cookie-banner-buttons .cookie-reject {
  background: #FFF;
  color: #104B33;
  border: 1.5px solid #104B33;
}
.cookie-banner-buttons .cookie-reject:hover, .cookie-banner-buttons .cookie-reject:focus {
  background: #F2F7EE;
  color: #104B33;
}
.cookie-banner-buttons .cookie-settings {
  background: #FFF;
  color: #104B33;
  border: 1.5px solid #104B33;
}
.cookie-banner-buttons .cookie-settings:hover, .cookie-banner-buttons .cookie-settings:focus {
  background: #F2F7EE;
  color: #104B33;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 17px 8px;
  }
  .cookie-banner-buttons {
    width: 100%;
    justify-content: flex-start;
    gap: 7px;
  }
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(16, 75, 51, 0.45);
  z-index: 3300;
  align-items: center;
  justify-content: center;
}
.cookie-modal-backdrop.open {
  display: flex;
}
.cookie-modal {
  background: #FFF;
  color: #104B33;
  border-radius: 20px;
  padding: 38px 26px 28px 26px;
  max-width: 420px;
  width: 92vw;
  box-shadow: 0 6px 32px rgba(16,75,51, 0.18);
  font-family: 'Open Sans', serif;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: modalIn 0.33s cubic-bezier(.45,.5,.4,1.3);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(50px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h3 {
  margin-bottom: 12px;
  font-family: 'Montserrat', serif;
  font-size: 1.19rem;
  color: #104B33;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: transparent;
  border: none;
  font-size: 1.7rem;
  color: #104B33;
  cursor: pointer;
  transition: color 0.19s;
  z-index: 1;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #E2C044;
  outline: none;
}
.cookie-categories {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 20px;
  background: #E2C044;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.19s;
  border: none;
}
.cookie-toggle:checked {
  background: #104B33;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  top: 2.5px; left: 3px;
  width: 15px; height: 15px;
  background: #FFF;
  border-radius: 50%;
  transition: left 0.19s, background 0.17s;
}
.cookie-toggle:checked:before {
  left: 20px;
  background: #E2C044;
}
.cookie-category.essential .cookie-toggle,
.cookie-category.essential input[type=checkbox] {
  opacity: 0.4;
  pointer-events: none;
}
.cookie-modal-actions {
  margin-top: 21px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  padding: 8px 21px;
  border-radius: 22px;
  border: none;
  font-weight: 700;
  background: #104B33;
  color: #FFF;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, transform 0.13s;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: #E2C044;
  color: #104B33;
  transform: translateY(-1px); outline: none;
}

@media (max-width: 480px) {
  .cookie-modal { padding: 16px 7vw 13px 7vw; }
  .cookie-modal h3{ font-size: 1.07rem; }
}

/* --- THANK YOU PAGE OVERRIDE --- */
.thank-you {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* --- UTILITIES & SPACING HELPERS --- */
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }
.text-center { text-align: center !important; }

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.cta-button, .cookie-banner-buttons button, .cookie-modal-actions button, .service-card, .testimonial-card {
  will-change: transform, box-shadow;
}

/* --- RESPONSIVE GENERAL --- */
@media (max-width: 800px) {
  .container { max-width: 98vw; }
}
@media (max-width: 600px) {
  .section {
    margin-bottom: 38px;
    padding: 30px 6px;
  }
  .content-wrapper {
    gap: 15px;
  }
}
section {
  padding: 15px;
}