/* ---------- 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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  height: 100%;
  line-height: 1.5;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #1d2d2d;
  background-color: #FFFFFF;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  text-decoration: none;
  color: #22513A;
}
a:hover, a:focus {
  color: #947032;
  outline: none;
}
ul, ol {
  padding-left: 1.25em;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}
/* ---------- BRAND COLORS ---------- */
:root {
  --color-primary: #22513A;
  --color-secondary: #DEDECA;
  --color-accent: #947032;
  --color-bg: #FFFFFF;
  --color-blue-dark: #1e3644;
  --color-gray-base: #eaf2f5;
  --color-gray: #B1BDC5;
  --color-text: #202A2E;
  --color-card-bg: #F7F9FA;
  --color-shadow: rgba(34, 81, 58, 0.05);
}

/* ---------- GLOBAL TYPOGRAPHY ---------- */
h1, .hero h1 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-primary);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
h2 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-blue-dark);
  margin-bottom: 14px;
}
h3 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 10px;
}
p, li, ul, ol {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.7;
}
strong {
  font-weight: 700;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* ---------- HEADER & NAVIGATION ---------- */
header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-gray-base);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 90;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 18px;
  position: relative;
}
header a img {
  height: 42px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-weight: 500;
  color: var(--color-primary);
  font-size: 1rem;
  position: relative;
  transition: color 0.2s;
  padding: 2px 3px;
}
.main-nav a:after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: transparent;
  transition: background 0.3s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-accent);
}
.main-nav a:hover:after, .main-nav a:focus:after {
  background: var(--color-accent);
}
.cta-btn {
  background: var(--color-primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 8px;
  box-shadow: 0px 2px 8px var(--color-shadow);
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  margin-left: 14px;
  display: inline-block;
  letter-spacing: 0.04em;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0px 6px 16px var(--color-shadow);
}
button.mobile-menu-toggle {
  background: var(--color-blue-dark);
  color: #fff;
  border-radius: 7px;
  font-size: 2rem;
  width: 46px; height: 46px;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
button.mobile-menu-toggle:hover,
button.mobile-menu-toggle:focus {
  background: var(--color-accent);
  color: #fff;
}
/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,54,68,0.93);
  z-index: 9999;
  transform: translateX(-100vw);
  transition: transform 0.3s cubic-bezier(.77,0,.18,1) 0s;
  display: flex;
  flex-direction: column;
  padding: 0;
  align-items: flex-start;
  justify-content: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 18px 30px 8px 20px;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0 0 20px;
}
.mobile-nav a {
  color: var(--color-secondary);
  font-size: 1.3rem;
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 500;
  padding: 8px 0px 8px 2px;
  border-radius: 4px;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-accent);
  background: rgba(255,255,255,.07);
}

/* ---------- HERO, SECTION AND LAYOUT ---------- */
.hero {
  background: linear-gradient(90deg, #eaf2f5 60%, #dedeca 100%);
  padding: 64px 0 48px 0;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 26px;
}
.hero p {
  font-size: 1.18rem;
  max-width: 540px;
}
.features {
  background: #F7F9FA;
  border-radius: 18px;
}
.features .content-wrapper {
  gap: 38px;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  list-style: none;
  margin-top: 14px;
}
.features ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  min-width: 220px;
  flex: 1 1 220px;
  padding: 28px 20px 22px 20px;
  border-radius: 14px;
  box-shadow: 0 2px 12px var(--color-shadow);
  border: 1px solid #eaf2f5;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, border 0.22s, transform 0.12s;
}
.features ul li:hover {
  box-shadow: 0 6px 22px rgba(34,81,58,0.09);
  border: 1px solid var(--color-accent);
  transform: translateY(-3px) scale(1.025);
}
.features ul li img {
  width: 42px;
  height: 42px;
}
.guarantee {
  background: var(--color-secondary);
  padding: 18px 18px;
  border-radius: 10px;
  margin-top: 20px;
  font-size: 1.08rem;
}
.about, .team, .products, .inspiration, .policy, .terms, .gdpr, .contact, .cookie-policy, .thank-you, .promotions, .cta, .cta-inspiration {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 40px;
}
.about ul, .team ul, .products ul, .inspiration ul, .policy ul, .terms ul, .gdpr ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 12px;
}
.highlight {
  color: var(--color-accent);
  font-weight: bold;
  margin-top: 18px;
}
.cta, .cta-inspiration {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(70deg, #eaf2f5 60%, #dedeca 100%);
  border-radius: 18px;
  min-height: 200px;
  margin-bottom: 60px;
}
.cta .content-wrapper, .cta-inspiration .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 22px;
}

/********** TESTIMONIALS & CUSTOMER REVIEWS ***********/
.testimonials {
  background: #f9fbfc;
  border-radius: 18px;
  padding: 40px 20px 32px 20px;
  margin-bottom: 60px;
}
.testimonials .content-wrapper {
  gap: 22px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-card-bg);
  border-radius: 12px;
  box-shadow: 0 2px 10px var(--color-shadow);
  padding: 20px 26px 18px 20px;
  margin-bottom: 20px;
  position: relative;
  flex-wrap: wrap;
}
.testimonial-card p {
  color: #1e3644;
  font-size: 1.08rem;
  flex: 1 1 260px;
  margin-right: 18px;
}
.customer-info {
  display: flex;
  flex-direction: column;
  color: var(--color-primary);
  font-size: 1.01rem;
  gap: 5px;
  min-width: 140px;
}
.customer-info img {
  width: 20px; height: 20px;
  display: inline-block;
}
.leave-review {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 8px;
  padding: 18px 24px;
  box-shadow: 0 2px 8px var(--color-shadow);
  margin-top: 12px;
}
.leave-review p {
  color: var(--color-blue-dark);
}
.leave-review .cta-btn {
  margin: 0;
}

/********* FOOTER ********/
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 36px 0 14px 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
footer a img {
  height: 36px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 5px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: .93;
  padding-left: 2px;
  transition: color 0.19s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent);
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 1rem;
  margin-top: 3px;
  color: #dedeca;
}
.footer-contact img {
  width: 17px;
  height: 17px;
  margin-right: 4px;
  vertical-align: -3px;
  filter: brightness(0) invert(1);
}
footer p, .footer-contact p {
  color: #dedeca;
}

/* ---------- FLEXBOX CONTAINERS ---------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px var(--color-shadow);
  padding: 22px 18px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/************ RESPONSIVE (MOBILE FIRST) ************/
@media (max-width: 1100px) {
  .container {
    max-width: 96vw;
    padding: 0 8px;
  }
  header .container, footer .container {
    padding: 14px 8px;
  }
}
@media (max-width: 930px) {
  .features ul {
    gap: 14px;
  }
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .section, .features, .about, .team, .products, .inspiration, .policy, .terms, .gdpr, .contact, .cookie-policy, .thank-you, .promotions, .cta, .cta-inspiration {
    border-radius: 8px;
    padding: 26px 5px;
    margin-bottom: 40px;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    padding: 9px 16px;
    font-size: 1rem;
    margin-left: 0;
  }
  button.mobile-menu-toggle {
    display: flex;
    z-index: 1002;
  }
  .content-grid, .card-container, .features ul, .footer-nav {
    flex-direction: column;
    gap: 18px;
  }
  .footer-contact {
    margin-top: 6px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
@media (max-width: 580px) {
  h1, .hero h1 {
    font-size: 1.48rem;
    margin-bottom: 10px;
  }
  h2 {
    font-size: 1.12rem;
    margin-bottom: 8px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 13px;
    padding: 15px 8px 13px 8px;
  }
  .leave-review {
    padding: 13px 7px;
  }
  .footer-nav {
    gap: 8px;
  }
  .features ul li {
    min-width: 130px;
    padding: 17px 8px 16px 8px;
  }
}

/**** CARD LAYOUTS (for product, inspiration, team, etc.) ****/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.card {
  flex: 1 1 280px;
  min-width: 220px;
  margin-bottom: 20px;
}

/******** BUTTONS, LINKS, MICRO-INTERACTIONS ******/
a, button {
  transition: color 0.21s, background 0.22s, box-shadow 0.18s, transform 0.13s;
}
a:focus, button:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.cta-btn:active {
  background: #15452e;
  transform: scale(0.97);
}

/***** INPUT, FORMS (future-proof) *****/
input, textarea, select {
  background: #fff;
  border: 1px solid var(--color-gray);
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 1rem;
  width: 100%;
  color: #1e3644;
  transition: border 0.16s;
  resize: vertical;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--color-primary);
}
label {
  font-size: 1rem;
  color: var(--color-blue-dark);
  font-weight: 600;
}

/***** COOKIE CONSENT BANNER *****/
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #F7F9FA;
  border-top: 1px solid var(--color-gray-base);
  box-shadow: 0 -2px 16px var(--color-shadow);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 18px 28px;
  z-index: 21000;
  justify-content: center;
  gap: 28px;
  min-height: 70px;
  animation: slideUpCookie 0.4s;
}
@keyframes slideUpCookie {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  color: var(--color-text);
  font-size: 1rem;
  margin: 0;
}
.cookie-consent-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-btn {
  background: var(--color-primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 7px 24px;
  border-radius: 7px;
  cursor: pointer;
  border: none;
  margin-left: 0;
  transition: background 0.2s, color 0.2s;
}
.cookie-btn.settings {
  background: #eaf2f5;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.cookie-btn.reject {
  background: none;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-accent);
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-secondary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--color-primary);
  color: #fff;
}
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(33,37,44,0.42);
  z-index: 22000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.28s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  padding: 30px 22px 22px 22px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0 6px 28px rgba(30,54,68,0.21);
  z-index: 22001;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  animation: modalAppear 0.24s;
}
@keyframes modalAppear {
  from { transform: scale(0.95); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  color: var(--color-primary);
  font-size: 1.18rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 18px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 600;
  color: #1e3644;
}
.cookie-switch {
  width: 34px; height: 18px;
  display: inline-block;
  position: relative;
  margin-left: 8px;
}
.cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #dedeca;
  border-radius: 10px;
  transition: background 0.21s;
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--color-primary);
}
.cookie-slider:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.19s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(16px);
}
.cookie-modal .cookie-btn {
  margin-right: 7px;
  margin-top: 8px;
}
.cookie-modal-close {
  background: none;
  color: var(--color-blue-dark);
  border: none;
  font-size: 1.7rem;
  position: absolute;
  right: 8px; top: 8px;
  cursor: pointer;
  transition: color 0.21s;
}
.cookie-modal-close:hover,.cookie-modal-close:focus { color: var(--color-accent); }

@media (max-width: 650px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 12px 9px;
  }
}

/********* ADDITIONAL UTILITIES *********/
.mt-10 {margin-top: 10px;}
.mt-20 {margin-top: 20px;}
.text-center {text-align:center;}
.text-muted {color: #889298;}
.bg-primary {background: var(--color-primary)!important; color: #fff;}
.bg-accent {background: var(--color-accent)!important; color: #fff;}
.rounded {border-radius: 8px;}
.shadow {box-shadow: 0 2px 10px var(--color-shadow);}

/****** KEEP ADEQUATE SPACING BETWEEN ALL CONTENT *******/
h1, h2, h3, .cta-btn, .card, .testimonial-card, .leave-review, section, .footer-contact, nav, ul, .cookie-consent-banner, .cookie-modal { margin-bottom: 20px; }

/****** PREVENT OVERLAPPING *******/
.card, .testimonial-card, .leave-review, .features ul li, .cookie-modal, .cookie-consent-banner {
  z-index: 5;
}

/***** THANK-YOU & CONTACT CTA SECTIONS *****/
.thank-you .content-wrapper, .contact .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.cta-wrapper {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: center;
  margin-top: 10px;
}

/***** OVERRIDES & FIXES for brand micro-style *****/
::-webkit-input-placeholder { color:#b1bdc5; }
::-moz-placeholder { color: #b1bdc5; }
:-ms-input-placeholder { color: #b1bdc5; }
::placeholder { color: #b1bdc5; }

/***** Hide elements visually but keep accessible *****/
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  border: 0;
  clip: rect(0,0,0,0); overflow: hidden;
}

/***** ENSURE NO GRID OR ABSOLUTE LAYOUT ON CARDS *****/
/* NO grid, NO columns, NO absolute on content */
