/* 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F7F8FA;
  color: #3E4A3A;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 16px;
}
a {
  color: #768377;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #B58D63;
  text-decoration: underline;
  outline: none;
}
::-webkit-input-placeholder { color: #768377; }
::-moz-placeholder { color: #768377; }
:-ms-input-placeholder { color: #768377; }
::placeholder { color: #768377; opacity: 1; }

/* BASE CONTAINERS */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #3E4A3A;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #3E4A3A;
  margin-bottom: 12px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #3E4A3A;
  margin-bottom: 8px;
}
p, li {
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  color: #3E4A3A;
  margin-bottom: 8px;
}
p:last-child, li:last-child {
  margin-bottom: 0;
}
strong { font-weight: 600; }

/* SOFT PASTEL STYLE */
:root {
  --brand-primary: #3E4A3A;
  --brand-secondary: #B58D63;
  --brand-accent: #F5F3EF;
  --pastel-bg1: #F7F8FA;
  --pastel-bg2: #F6F3F7;
  --pastel-bg3: #F6F7F1;
  --pastel-mint: #D2E4DB;
  --pastel-pink: #F7D7DF;
  --pastel-blue: #E7F3FC;
  --pastel-lav: #E9E3F8;
  --text-main: #3E4A3A;
  --text-muted: #768377;
  --white: #fff;
  --shadow-1: 0 1px 8px 0 rgba(150, 160, 180, 0.10);
  --shadow-2: 0 4px 18px 0 rgba(120,140,160,0.10);
  --radius-xl: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --gradient-header: linear-gradient(90deg, #E7F3FC 0%, #F7D7DF 100%);
}

/* HEADER & NAV */
header {
  width: 100%;
  padding: 0;
  background: var(--gradient-header);
  box-shadow: var(--shadow-1);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding-top: 14px;
  padding-bottom: 14px;
}
header img { height: 44px; width: auto; border-radius: var(--radius-md); background: transparent; }
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--brand-primary);
  padding: 2px 0;
  transition: color 0.18s;
}
header nav a:hover, header nav a.active {
  color: var(--brand-secondary);
}
.button.primary {
  background: var(--brand-secondary);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  padding: 13px 28px;
  margin-left: 20px;
  box-shadow: var(--shadow-1);
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.18s, color 0.1s;
  outline: none;
}
.button.primary:hover, .button.primary:focus {
  background: #C09C7B;
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.button.secondary {
  background: var(--pastel-mint);
  color: var(--brand-primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  padding: 12px 26px;
  box-shadow: var(--shadow-1);
  cursor: pointer;
  transition: background 0.14s, box-shadow 0.16s;
}
.button.secondary:hover, .button.secondary:focus {
  background: var(--pastel-blue);
  color: var(--brand-primary);
  box-shadow: var(--shadow-2);
}

/* HEADER MOBILE NAV */
.mobile-menu-toggle {
  background: transparent;
  color: var(--brand-primary);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  display: none;
  padding: 4px 10px;
  margin-left: 18px;
  border-radius: 7px;
  transition: background 0.16s;
  z-index: 35;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--pastel-pink);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 88vw;
  max-width: 340px;
  background: #fff;
  box-shadow: -2px 0 30px 0 rgba(66,66,84,0.07), var(--shadow-2);
  z-index: 60;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 26px 40px 26px;
  gap: 24px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: transparent;
  color: var(--brand-primary);
  border: none;
  font-size: 2.1rem;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 12px;
  border-radius: 7px;
  padding: 2px 10px;
  transition: background 0.13s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--pastel-mint);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--brand-primary);
  padding: 12px 0 10px 0;
  border-radius: 5px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--pastel-lav);
  color: var(--brand-secondary);
}
@media (max-width: 1119px) {
  header nav, .button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1120px) {
  .mobile-menu { display: none !important; }
}

/* MAIN LAYOUTS & FLEXBOX PATERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--pastel-bg1);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-1);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 16px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-1);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  flex: 1 0 300px;
}
.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: #fffce9;
  color: #3E4A3A;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
  margin-bottom: 24px;
  min-width: 220px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--pastel-bg2);
  padding: 20px 18px 18px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
  margin-bottom: 20px;
}

/* RESPONSIVE GRID-LIKE FLEXBOX FOR FEATURES */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
  padding: 22px 18px 20px 18px;
  flex: 1 1 280px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.17s;
}
.feature img {
  width: 36px;
  height: 36px;
  margin-bottom: 9px;
  filter: drop-shadow(0 1px 7px #F7D7DF80);
}
.feature:hover {
  box-shadow: var(--shadow-2);
}

/* HERO SECTION */
.hero {
  padding: 56px 0 42px 0;
  background: var(--pastel-bg2);
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  min-height: 320px;
  box-shadow: var(--shadow-1);
  margin-bottom: 42px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  font-size: 2.8rem;
  line-height: 1.15;
  color: var(--brand-primary);
  margin-bottom: 12px;
  text-shadow: 0 1px 0 #ffffffcc;
}
.hero p {
  font-size: 1.18rem;
  color: #3E4A3A;
  margin-bottom: 18px;
}

/* TEXT SECTION */
.text-section {
  background: var(--pastel-bg3);
  border-radius: var(--radius-md);
  padding: 20px 20px 14px 20px;
  box-shadow: var(--shadow-1);
  margin-bottom: 24px;
  font-size: 1.05rem;
}
.text-section ul li, .text-section ol li {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.map-snippet {
  background: var(--pastel-blue);
  border-radius: var(--radius-sm);
  padding: 10px 15px;
  font-size: 0.98rem;
  box-shadow: var(--shadow-1);
  margin-top: 8px;
}

/* TESTIMONIALS */
.testimonial-card {
  border-left: 6px solid var(--brand-secondary);
  background: #fffce9;
  color: #31261d;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.09rem;
  gap: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-1);
}
.testimonial-card p {
  margin-bottom: 0;
  font-style: italic;
  color: #33322A;
}
.testimonial-card span {
  color: #8A7358;
  font-size: 0.94rem;
  font-family: 'Roboto', sans-serif;
  align-self: flex-end;
}

/* BUTTONS & LINKS */
.button, a.button {
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
}
.button:focus {
  outline: 2px dotted var(--brand-secondary);
  outline-offset: 2px;
}

/* FOOTER */
footer {
  padding: 32px 0 24px 0;
  background: var(--pastel-bg2);
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  box-shadow: 0 -2px 16px 0 rgba(214, 193, 210,0.10);
  width: 100%;
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
footer nav a {
  font-family: 'Montserrat', sans-serif;
  color: var(--brand-primary);
  font-size: 1rem;
  padding: 0.5em 0 0.3em 0;
  transition: color 0.14s;
}
footer nav a:hover {
  color: var(--brand-secondary);
}
footer .text-section {
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin-bottom: 0;
}
footer .text-section ul li {
  color: #48473F;
  font-size: 0.97rem;
  margin-bottom: 4px;
}
footer .branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
footer .branding img {
  height: 32px;
  background: none;
  border-radius: 0;
}
footer .branding span {
  color: #82705c;
  font-size: 0.93rem;
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
}

/* ICONS IN LISTS */
ul li img, ol li img {
  width: 19px; height: 19px;
  margin-right: 6px;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  width: 100vw;
  background: #fff5e6;
  color: var(--brand-primary);
  box-shadow: 0 -2px 14px 0 rgba(180,170,120,0.09);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  padding: 20px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.04rem;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0%);
  transition: transform 0.32s cubic-bezier(.9,0,.2,1), opacity 0.29s;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: var(--brand-secondary);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  border: none;
  border-radius: 9px;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.13s, box-shadow 0.13s;
  box-shadow: var(--shadow-1);
  font-size: 1rem;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #9c774e;
}
.cookie-banner .cookie-settings-btn {
  background: var(--pastel-blue);
  color: var(--brand-primary);
}
.cookie-banner .cookie-settings-btn:hover {
  background: var(--pastel-mint);
  color: var(--brand-primary);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right:0; bottom: 0;
  background: rgba(61,67,72,0.18);
  z-index: 121;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  padding: 32px 22px 24px 22px;
  max-width: 420px;
  width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 8px 50px 6px rgba(97,115,160,0.18), var(--shadow-2);
  position: relative;
  animation: cookieModalIn 0.38s cubic-bezier(.6,0,.2,1);
}
@keyframes cookieModalIn {
  0% { opacity: 0; transform: translateY(45px) scale(0.98); }
  100% { opacity:1; transform: translateY(0) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.38rem;
  margin-bottom: 6px;
  color: var(--brand-primary);
}
.cookie-modal .category {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--brand-secondary);
  width: 20px;
  height: 20px;
  margin-top: 3px;
  border-radius: 5px;
}
.cookie-modal .category label {
  font-size: 1rem;
  color: var(--brand-primary);
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
}
.cookie-modal-buttons {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal button {
  background: var(--brand-secondary);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-1);
  transition: background 0.17s;
}
.cookie-modal .close-modal-btn {
  position: absolute;
  top: 13px;
  right: 14px;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: var(--brand-primary);
  cursor: pointer;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #9c774e;
}

/* PASTEL ACCENT COLS */
.bg-pastel-mint {
  background: var(--pastel-mint);
}
.bg-pastel-blue {
  background: var(--pastel-blue);
}
.bg-pastel-lav {
  background: var(--pastel-lav);
}
.bg-pastel-pink {
  background: var(--pastel-pink);
}

/* SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card {
  margin-bottom: 20px;
}
.testimonial-card, .feature-item, .feature, .card {
  margin-bottom: 20px;
}
.content-wrapper, .feature-grid, .content-grid, .card-container, .text-image-section {
  gap: 20px;
}
.testimonial-card {
  gap: 20px;
  padding: 20px;
}
ul, ol {
  margin-bottom: 20px;
}

/* TRANSITIONS & MICRO-INTERACTIONS */
.button, a.button, .feature, .feature-item, .testimonial-card, .card {
  transition: box-shadow 0.18s, border-color 0.15s, background 0.15s, color 0.13s;
}
.feature:hover, .feature-item:hover, .card:hover {
  box-shadow: 0 2px 18px 0 rgba(120,140,160,0.13);
}
.card:active, .feature:active { transform: scale(0.99); }

/* MEDIA QUERIES */
@media (max-width: 920px) {
  .container {
    padding-left: 14px; padding-right: 14px;
  }
  .hero h1 {
    font-size: 2rem;
    line-height: 1.15;
  }
  .feature, .card {
    min-width: 170px;
    max-width: 100%;
    flex: 1 1 230px;
    padding: 16px 10px 16px 10px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-left: 8px; padding-right: 8px;
  }
  .content-wrapper, .feature-grid, .content-grid, .card-container, .text-image-section {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .feature-grid, .content-grid, .card-container {
    justify-content: flex-start;
    align-items: stretch;
  }
  .section, .hero {
    padding: 20px 6px;
    border-radius: 16px;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  header .container {
    padding-top: 8px; padding-bottom: 8px;
    min-height: 58px;
  }
  .branding img {
    height: 31px;
  }
}

/* Z-INDEX LAYERING */
header, .mobile-menu { z-index: 50; }
.cookie-banner { z-index: 110; }
.cookie-modal-overlay { z-index: 121; }

/* MISCELLANEOUS */
::-webkit-scrollbar { width: 8px; background: var(--pastel-bg1); }
::-webkit-scrollbar-thumb { background: var(--pastel-blue); border-radius: 8px; }

/* VISUAL HIERARCHY */
h1, h2, h3, h4, h5 {
  margin-bottom: 8px;
}

/* ACCESSIBILITY FOCUS */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #F7D7DF80;
}

/* PRINT STYLES */
@media print {
  header, nav, .cookie-banner, .cookie-modal-overlay, .mobile-menu { display: none !important; }
}

/* END */