/* =========================
   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,
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 {
  box-sizing: border-box;
  height: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  background: #F7F6EC;
  color: #2D4B23;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img, picture {
  max-width: 100%;
  display: block;
}
a {
  color: #2D4B23;
  text-decoration: none;
  transition: color 0.18s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1em;
  border: none;
  outline: none;
  background: none;
}
ol, ul {
  list-style: none;
}

/* =========================
   BRAND COLOR SYSTEM (for Scandinavian Clean feel)
   ========================= */
:root {
  --brand-primary: #2D4B23;   /* deep forest green */
  --brand-secondary: #A38E5D; /* muted gold / sand */
  --brand-accent: #F7F6EC;    /* very light beige */
  --brand-bg: #F7F6EC;
  --brand-card: #FFFFFF;
  --brand-grey: #D1CEC0;
  --brand-shadow: rgba(44, 75, 35, 0.10);
  --brand-danger: #8C4242;
}

/* =========================
   TYPOGRAPHY
   ========================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #2D4B23;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.375rem; /* 38px */
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 20px;
}
h3 {
  font-size: 1.375rem; /* 22px */
  margin-bottom: 16px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.375rem; }
  h3 { font-size: 1.075rem; }
}
p, ul, li {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2D4B23;
  font-size: 1rem;
  margin-bottom: 16px;
}
.strong, strong {
  font-weight: 700;
}
em {
  font-style: italic;
  color: #A38E5D;
}
blockquote {
  font-style: italic;
  background: #F7F6EC;
  padding: 0 24px;
  border-left: 4px solid var(--brand-secondary);
  margin: 0 0 10px 0;
  color: #2D4B23;
}
cite {
  display: block;
  font-size: 1rem;
  color: #A38E5D;
  margin-top: 4px;
}

/* =========================
   GENERAL LAYOUT
   ========================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border: none;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section {
  background: var(--brand-card);
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--brand-shadow);
  padding: 32px 24px;
}
@media (max-width: 768px) {
  .section { padding: 28px 5px; margin-bottom: 36px; }
  .text-section { padding: 24px 8px; }
}

/* =========================
   HEADER & NAVIGATION
   ========================= */
header {
  background: var(--brand-accent);
  box-shadow: 0 1px 8px var(--brand-shadow);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 12px;
}
.logo img {
  height: 46px;
  width: auto;
  display: block;
  margin-right: 12px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--brand-primary);
  padding: 12px 6px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-secondary);
  color: #fff;
}
.cta-btn {
  background: var(--brand-primary);
  color: #fff;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  padding: 12px 30px;
  box-shadow: 0 2px 8px var(--brand-shadow);
  transition: background 0.21s, transform 0.13s, box-shadow 0.18s;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--brand-secondary);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px var(--brand-shadow);
}
.mobile-menu-toggle {
  font-size: 2.2rem;
  background: transparent;
  color: var(--brand-primary);
  border: none;
  display: none;
  cursor: pointer;
  margin-left: 10px;
  line-height: 1;
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* =========================
   MOBILE MENU
   ========================= */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(247,246,236,0.97);
  box-shadow: 2px 0 28px rgba(44, 75, 35, 0.10);
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.38s cubic-bezier(.44,.25,.61,1.26), opacity 0.33s cubic-bezier(.28,.51,.32,1.37);
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.0rem;
  color: var(--brand-primary);
  background: none;
  border: none;
  margin: 22px 0 0 24px;
  align-self: flex-start;
  cursor: pointer;
  padding: 4px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 60px;
  padding-left: 30px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 1.35rem;
  border-radius: 7px;
  padding: 12px 10px;
  transition: background 0.19s, color 0.16s;
  width: fit-content;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-secondary);
  color: #fff;
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* =========================
   HERO SECTION
   ========================= */
.hero {
  background: var(--brand-card);
  border-radius: 0 0 20px 20px;
  margin-bottom: 48px;
  box-shadow: 0 2px 18px var(--brand-shadow);
}
.hero .container {
  min-height: 352px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 38px 0;
  gap: 22px;
}
.hero h1 {
  color: var(--brand-primary);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hero .subheadline {
  font-size: 1.18rem;
  color: #8A846A;
  font-weight: 400;
}
@media (max-width: 768px) {
  .hero .container { min-height: 210px; }
  .hero h1 { font-size: 1.5rem; }
  .hero .subheadline { font-size: 1rem; }
}

/* =========================
   FEATURE SECTION (.feature-grid)
   ========================= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
  justify-content: flex-start;
}
.feature-grid > li {
  background: var(--brand-card);
  border-radius: 14px;
  box-shadow: 0 2px 14px var(--brand-shadow);
  flex: 1 1 222px;
  min-width: 200px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 20px 18px 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: box-shadow 0.18s, transform 0.14s;
  position: relative;
  gap: 12px;
  margin-bottom: 20px;
}
.feature-grid > li img {
  height: 36px; width: 36px;
  margin-bottom: 8px;
}
.feature-desc {
  color: #7C7B61;
  font-size: 0.98em;
  margin-top: 6px;
}
.feature-grid > li:hover, .feature-grid > li:focus {
  box-shadow: 0 6px 18px var(--brand-shadow);
  transform: translateY(-2px) scale(1.03);
}
@media (max-width: 960px) {
  .feature-grid { gap: 20px; }
  .feature-grid > li { min-width: 160px; max-width: 100%; padding: 16px 8px; }
}
@media (max-width: 600px) {
  .feature-grid { flex-direction: column; gap: 18px; }
  .feature-grid > li { min-width: 0; max-width: 100%; }
}

/* =========================
   CARDS & LISTS LAYOUTS
   ========================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: var(--brand-card);
  border-radius: 18px;
  box-shadow: 0 2px 10px var(--brand-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.18s, transform 0.14s;
}
.card:hover, .card:focus {
  box-shadow: 0 4px 22px var(--brand-shadow);
  transform: scale(1.02);
}
.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;
    gap: 18px;
  }
}

/* =========================
   TESTIMONIALS / OPINIONS
   ========================= */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--brand-card);
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px var(--brand-shadow);
  border-left: 5px solid var(--brand-secondary);
  transition: box-shadow 0.16s, border-color 0.23s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 4px 24px var(--brand-shadow);
  border-left-color: var(--brand-primary);
}
.testimonial-card blockquote {
  font-size: 1.12em;
  margin-bottom: 0;
  background: none;
  padding: 0;
  border-left: none;
  color: var(--brand-primary);
}
.testimonial-card cite {
  min-width: 120px;
  color: var(--brand-secondary);
  font-style: normal;
  margin-left: 10px;
  font-size: 1rem;
}
@media (max-width: 600px) {
  .testimonial-card { flex-direction: column; gap: 8px; padding: 14px; }
}

/* =========================
   CTA SECTIONS
   ========================= */
.cta {
  background: linear-gradient(90deg, #F7F6EC 60%, #fff 100%);
  padding: 32px 0;
  border-radius: 22px 22px 0 0;
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.cta h2 {
  color: var(--brand-primary);
  margin-bottom: 8px;
}
.cta p {
  font-size: 1.11rem;
}

/* =========================
   FOOTER
   ========================= */
footer {
  background: var(--brand-card);
  box-shadow: 0 -1px 8px var(--brand-shadow);
  margin-top: 68px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-top: 36px;
  padding-bottom: 36px;
}
.footer-col {
  flex: 1, 1, 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col img {
  width: 48px;
  margin-bottom: 6px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #8A846A;
  font-size: 0.98em;
  padding: 2px 0;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-primary);
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-social a img {
  width: 28px;
  transition: opacity 0.14s, transform 0.16s;
  opacity: 0.72;
}
.footer-social a:hover img, .footer-social a:focus img {
  opacity: 1;
  transform: scale(1.15);
}
@media (max-width: 850px) {
  footer .container {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    padding-top: 26px;
    padding-bottom: 22px;
  }
  .footer-social { margin-top: 10px; }
}

/* =========================
   INSPIRATION & TIP LISTS
   ========================= */
.inspiration-tips {
  margin: 8px 0 16px 14px;
  list-style: disc inside;
  color: #6a6142;
  font-size: 1rem;
}
.inspiration-tips li {
  margin-bottom: 7px;
}

/* =========================
   SERVICE BENEFITS
   ========================= */
.service-benefits {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.service-benefits li {
  background: #ECE9DC;
  border-radius: 8px;
  padding: 7px 20px;
  color: #48462B;
  font-size: 1em;
}

/* =========================
   CONTACT INFO
   ========================= */
.text-section ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 10px;
}
.text-section ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #424328;
  font-size: 1rem;
  font-weight: 600;
}
.text-section ul li img {
  height: 22px; width: 22px;
}

/* =========================
   FORM ELEMENTS (if used on future pages)
   ========================= */
input[type='text'], input[type='email'], textarea, select {
  background: #fff;
  border-radius: 7px;
  border: 1px solid #D1CEC0;
  padding: 10px 15px;
  font-size: 1rem;
  color: #2D4B23;
  transition: border 0.18s;
  margin-bottom: 12px;
  width: 100%;
}
input[type='text']:focus, input[type='email']:focus, textarea:focus, select:focus {
  border: 1.4px solid var(--brand-secondary);
  outline: none;
}
label {
  font-size: 0.98em;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-primary);
  margin-bottom: 6px;
  display: block;
}

/* ================
   COOKIE BANNER
   ================ */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: #fff;
  box-shadow: 0 -2px 22px var(--brand-shadow);
  padding: 20px 24px 19px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 20px 20px 0 0;
  font-size: 1rem;
  transition: transform 0.32s cubic-bezier(.39,.58,.57,1.08), opacity 0.18s;
  opacity: 1;
  transform: translateY(0);
}
#cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
#cookie-banner .banner-content {
  color: #4A4C3C;
  font-size: 1em;
  max-width: 780px;
}
#cookie-banner .banner-buttons {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  background: var(--brand-primary);
  color: #fff;
  border-radius: 7px;
  padding: 9px 22px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.17s, box-shadow 0.17s, transform 0.11s;
  box-shadow: 0 1px 6px var(--brand-shadow);
}
.cookie-btn:focus, .cookie-btn:hover {
  background: var(--brand-secondary);
  color: #fff;
  transform: translateY(-1.5px) scale(1.04);
}
.cookie-btn.cookie-reject {
  background: #D1CEC0;
  color: var(--brand-primary);
}
.cookie-btn.cookie-reject:focus, .cookie-btn.cookie-reject:hover {
  background: #b1ab96;
  color: #fff;
}
.cookie-btn.cookie-settings {
  background: #fff;
  color: var(--brand-primary);
  border: 1.1px solid #A38E5D;
}
.cookie-btn.cookie-settings:focus, .cookie-btn.cookie-settings:hover {
  background: var(--brand-accent);
  border: 1.5px solid var(--brand-secondary);
  color: var(--brand-secondary);
}
@media (max-width: 650px) {
  #cookie-banner { flex-direction: column; gap: 13px; padding: 15px 8px;}
  #cookie-banner .banner-content { max-width: 100%; }
  #cookie-banner .banner-buttons { flex-direction: column; gap: 8px; width: 100%; }
}

/* ================
   COOKIE MODAL
   ================ */
#cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,75,35,0.36);
  z-index: 100;
  display: none;
}
#cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -60%) scale(0.94);
  z-index: 101;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px var(--brand-shadow);
  padding: 28px 34px 30px 34px;
  min-width: 320px;
  max-width: 90vw;
  max-height: 94vh;
  overflow-y: auto;
  display: none;
  transition: transform 0.29s cubic-bezier(.34,1.32,.59,1), opacity 0.25s;
  opacity: 0;
}
#cookie-modal.active, #cookie-modal-overlay.active {
  display: block;
  opacity: 1;
}
#cookie-modal.active {
  transform: translate(-50%, -50%) scale(1.0);
  opacity: 1;
}
#cookie-modal .modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 16px;
}
#cookie-modal .modal-section {
  margin-bottom: 22px;
}
#cookie-modal label {
  font-size: 1rem;
  color: var(--brand-primary);
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.cookie-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cookie-toggle input[type=checkbox] {
  accent-color: var(--brand-secondary);
  width: 18px; height: 18px;
}
.cookie-essential {
  color: #787768;
  font-size: 0.97em;
}
#cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 18px;
}
@media (max-width: 600px) {
  #cookie-modal { padding: 12px 6px 18px 6px; min-width: 0; }
}

/* =======================================
   EFFECTS, HIERARCHY, INTERACTIONS
   ======================================= */
button, [role=button], .cta-btn, .cookie-btn, .mobile-menu-toggle {
  transition: background 0.18s, box-shadow 0.17s, color 0.16s, transform 0.13s;
}
a, .main-nav a, .mobile-nav a {
  transition: color 0.16s, background 0.16s;
}
.cta-btn:active, .cookie-btn:active {
  transform: scale(0.97) !important;
}

/* =======================================
   FLEXBOX MANDATORY SPACING PATTERNS
   ======================================= */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { 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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* =======================================
   RESPONSIVE ALIGNMENT & LAYOUT
   ======================================= */
@media (max-width: 768px) {
  .section { padding: 28px 8px; margin-bottom: 36px; }
  .content-wrapper, .text-section {
    padding-left: 4px; padding-right: 4px;
  }
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid { flex-direction: column; gap: 18px; }
  .footer-nav, .footer-social {
    flex-direction: row;
    gap: 10px;
  }
}

/* =======================================
   SCROLLBAR STYLING (for clean modernity)
   ======================================= */
::-webkit-scrollbar {
  height: 8px;
  width: 10px;
  background: var(--brand-accent);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #D1CEC0;
  border-radius: 8px;
  transition: background 0.14s;
}
::-webkit-scrollbar-thumb:hover {
  background: #A38E5D44;
}

/* =======================================
   PRINT OPTIMIZATION
   ======================================= */
@media print {
  header, footer, #cookie-banner, #cookie-modal, #cookie-modal-overlay, .mobile-menu { display: none !important; }
  body { background: #fff; color: #2D4B23; }
  .section, .content-wrapper { box-shadow: none !important; background: none !important; }
}
