/* 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;
}
/* 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: #F4F7EF;
  color: #1a2d20;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  font-weight: 400;
  scroll-behavior: smooth;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #206B41;
  text-decoration: none;
  transition: color .2s;
}

ul, ol {
  list-style: none;
}

button,
input[type="button"],
input[type="submit"] {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

/* FONT IMPORTS ------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #206B41;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
}

p, li, span {
  font-family: 'Roboto', Arial, sans-serif;
  color: #1a2d20;
  font-size: 1rem;
}

/* CONTAINER --------------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER ------------------------------------------------------------ */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 8px rgba(32,107,65,0.07);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 12px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #206B41;
  padding: 8px 0;
  position: relative;
  transition: color .2s;
}
header nav a:hover {
  color: #8C6038;
}
header .btn-primary {
  display: flex;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: #206B41;
  font-size: 2rem;
  cursor: pointer;
  display: none;
  margin-left: 14px;
  z-index: 102;
  transition: color .2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #8C6038;
}

/* MOBILE MENU ------------------------------------------------------- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 370px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 12px rgba(32,107,65,0.22);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.7,.3,.28,.9);
  z-index: 201;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #8C6038;
  margin: 20px 24px 8px 0;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #206B41;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 36px 40px 20px 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  color: #206B41;
  padding: 8px 0;
  border-bottom: 1px solid #F4F7EF;
  width: 100%;
  font-weight: 500;
  transition: color .2s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #8C6038;
}

/* Hide desktop nav/burger on large screens; show on small ----------- */
@media (max-width: 991px) {
  header nav,
  header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

/* MAIN SECTIONS & LAYOUTS ------------------------------------------ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 18px rgba(32,107,65,0.06);
}
main section + section {
  margin-top: 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Common flex layouts and helpers ----------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(32,107,65,0.07);
  padding: 28px 20px;
  position: relative;
  transition: box-shadow .18s;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(140,96,56,0.16);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px;
  background: #F4F7EF;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(32,107,65,0.11);
  margin-bottom: 20px;
  border-left: 4px solid #8C6038;
  min-width: 240px;
  max-width: 500px;
  position: relative;
}
.testimonial-card p {
  color: #1a2d20 !important;
  font-size: 1.04rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-style: italic;
  font-weight: 400;
}
.testimonial-card span {
  color: #66401A;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* CONTACT INFO ----------------------------------------------------- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  color: #206B41;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 5px 0;
}
.contact-info img {
  width: 22px;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(24%) sepia(33%) saturate(857%) hue-rotate(86deg) brightness(103%) contrast(94%);
}

/* BUTTONS ---------------------------------------------------------- */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 34px;
  text-align: center;
  box-shadow: 0 1px 8px rgba(32,107,65,0.09);
  border: none;
  outline: none;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s, border .2s;
}
.btn-primary {
  background: #206B41;
  color: #fff;
  border: 2px solid #8C6038;
  letter-spacing: 0.025em;
  box-shadow: 0 2px 12px rgba(140,96,56,0.11);
}
.btn-primary:hover, .btn-primary:focus {
  background: #8C6038;
  color: #fff;
  box-shadow: 0 4px 18px rgba(32,107,65,0.13);
  border-color: #206B41;
  text-decoration: none;
}
.btn-secondary {
  background: #fff;
  color: #8C6038;
  border: 2px solid #8C6038;
  letter-spacing: 0.02em;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #8C6038;
  color: #fff;
  box-shadow: 0 4px 18px rgba(32,107,65,0.07);
}

a.btn-primary, a.btn-secondary {
  text-decoration: none;
}

/* LISTS ------------------------------------------------------------ */
ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
ul li {
  font-size: 1rem;
  color: #206B41;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.7;
  margin-bottom: 7px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
ul li img {
  width: 22px;
  height: 22px;
  margin-top: 2px;
}
.text-section ul,
.text-section ol {
  padding-left: 18px;
  margin-top: 14px;
  margin-bottom: 10px;
}
.text-section ol li {
  list-style-type: decimal;
  margin-bottom: 6px;
}

/* FOOTER ----------------------------------------------------------- */
footer {
  width: 100%;
  background: #206B41;
  color: #fff;
  padding: 45px 0 25px;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 10px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.95;
  transition: color .2s, opacity .2s;
  font-weight: 500;
}
footer nav a:hover, footer nav a:focus {
  color: #8C6038;
  opacity: 1;
}
.brand-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  font-size: 1.02rem;
  color: #fff;
}
.brand-footer .social-links {
  display: flex;
  gap: 18px;
}
.brand-footer .social-links a img {
  width: 28px;
  height: 28px;
  filter: brightness(1) invert(0) sepia(41%) saturate(3352%) hue-rotate(343deg) brightness(100%) contrast(89%);
  transition: filter .2s;
}
.brand-footer .social-links a:hover img {
  filter: brightness(1.1) sepia(78%) saturate(1332%) hue-rotate(23deg) brightness(106%) contrast(94%);
}

/* SECTIONS SPACING FROM REQUIREMENTS ------------------------------- */
.section,
main section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 2px 18px rgba(32,107,65,0.06);
}
.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;
}

/* INTERACTIVE MICRO-INTERACTIONS & DETAILS ------------------------- */
.button, .btn-primary, .btn-secondary {
  transition: background .2s, color .2s, box-shadow .2s;
}
section h2:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #8C6038;
  border-radius: 2px;
  margin-top: 8px;
}

/* Accent shadow for premium touch on cards */
.card, .testimonial-card, .section {
  box-shadow: 0 2px 16px rgba(32,107,65,0.07);
  border-radius: 18px;
}
.card:after, .testimonial-card:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: #CEB77E;
  border-radius: 3px;
  opacity: 0.4;
  transition: opacity .2s;
}
.card:hover:after, .testimonial-card:hover:after {
  opacity: 1;
}

/* LUXURY ACCENT ---------------------------------------------------- */
.section, .card, .testimonial-card {
  border: 1.5px solid #CEB77E;
  box-shadow: 0 2px 18px rgba(206,183,126,0.05), 0 1.5px 0 #CEB77E;
  background: #fff;
}
/* Gold accent for accents (use for luxury brand) */
.accent {
  color: #CEB77E !important;
}

/* LINKS ------------------------------------------------------------ */
a {
  color: #206B41;
  text-decoration: underline dotted 2px #CEB77E;
  transition: color .18s;
}
a:hover, a:focus {
  color: #8C6038;
  text-decoration: underline solid 2px #8C6038;
}

/* TEXT SECTION STYLE FOR ELEGANCE ---------------------------------- */
.text-section {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #1a2d20;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 1px 8px rgba(32,107,65,0.05);
}
.text-section h2 {
  color: #66401A;
  font-size: 1.18rem;
  margin-bottom: 13px;
  margin-top: 16px;
}

/* RESPONSIVE DESIGN ----------------------------------------------- */
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 95vw;
    padding: 0 16px;
  }
  .section, main section {
    padding: 34px 8px;
  }
  .card, .testimonial-card {
    padding: 20px 12px;
  }
  .brand-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .brand-footer {
    font-size: 0.95rem;   
  }
  .content-wrapper, .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .section, main section {
    margin-bottom: 36px;
    padding: 18px 4px;
    border-radius: 13px;
  }
  .card, .testimonial-card {
    padding: 16px 6px;
    border-radius: 10px;
    font-size: 0.98rem;
    min-width: unset;
    max-width: 100%;
  }
  .testimonial-card {
    padding: 12px 8px;
    font-size: 0.95rem;
  }
  .mobile-nav {
    padding: 36px 18px 18px 18px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  .section, main section {
    padding: 14px 2px;
    border-radius: 8px;
  }
  .container {
    max-width: 99vw;
    padding: 0 2vw;
  }
}

/* COOKIE CONSENT BANNER -------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #1a2d20;
  font-size: 1rem;
  border-top: 2px solid #CEB77E;
  box-shadow: 0 -2px 16px rgba(206,183,126,0.11), 0 -1.5px 0 #CEB77E;
  z-index: 400;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 22px;
  padding: 22px 30px 17px 18px;
  transition: transform .32s cubic-bezier(.77,.3,.28,.95), opacity .22s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner-message {
  flex: 1 1 220px;
  font-size: 1rem;
  color: #1a2d20;
}
.cookie-banner-actions {
  display: flex;
  gap: 13px;
}
.btn-cookie {
  padding: 9px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 28px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid #CEB77E;
  color: #66401A;
  background: #fff;
  transition: background .18s, color .18s, border .18s;
}
.btn-cookie.accept {
  background: #CEB77E;
  color: #fff;
}
.btn-cookie.accept:hover {
  background: #8C6038;
  color: #fff;
}
.btn-cookie.reject {
  border-color: #206B41;
  color: #206B41;
}
.btn-cookie.reject:hover {
  background: #206B41;
  color: #fff;
}
.btn-cookie.settings {
  border-color: #8C6038;
  color: #8C6038;
}
.btn-cookie.settings:hover {
  background: #8C6038;
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    padding: 16px 8px 14px 10px;
    align-items: stretch;
    gap: 8px 8px;
    font-size: 0.97rem;
  }
}

/* COOKIE PREFERENCES MODAL ----------------------------------------- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 401;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(32,107,65,0.21);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity .28s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(32,107,65,0.22);
  border: 2.5px solid #CEB77E;
  padding: 38px 26px 30px 26px;
  max-width: 420px;
  width: 98vw;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1a2d20;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookie-modal-pop .32s cubic-bezier(.65,1.85,.5,.95);
}
@keyframes cookie-modal-pop {
  0% { transform: scale(0.95) translateY(30px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  right: 18px; top: 13px;
  background: none;
  border: none;
  color: #66401A;
  font-size: 2rem;
  cursor: pointer;
  transition: color .14s;
  z-index: 11;
}
.cookie-modal-close:hover { color: #8C6038; }
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #206B41;
  margin-bottom: 6px;
  margin-top: 2px;
}
.cookie-pref-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1rem;
}
.cookie-pref-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
.cookie-pref-label {
  flex: 1;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #1a2d20;
}
.cookie-pref-toggle {
  min-width: 36px;
  height: 20px;
  border-radius: 14px;
  background: #F4F7EF;
  border: 1.5px solid #CEB77E;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background .18s;
}
.cookie-pref-toggle[aria-checked="true"] {
  background: #CEB77E;
}
.cookie-pref-toggle[aria-disabled="true"] {
  filter: grayscale(0.6);
  pointer-events: none;
  opacity: 0.75;
}
.cookie-pref-toggle-circle {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left .18s, box-shadow .16s;
  box-shadow: 0 2px 8px rgba(206,183,126,0.12);
}
.cookie-pref-toggle[aria-checked="true"] .cookie-pref-toggle-circle {
  left: 18px;
}

@media (max-width: 450px) {
  .cookie-modal {
    padding: 16px 6px 14px 8px;
    border-radius: 11px;
  }
}

/* MISC ------------------------------------------------------------- */
strong {
  font-weight: bold;
  color: #206B41;
}

/* INPUTS AND FORMS ------------------------------------------------- */
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  border: 1px solid #CEB77E;
  padding: 10px 14px;
  margin-bottom: 12px;
  background: #fff;
  box-shadow: 0 1px 5px rgba(32,107,65,0.07);
  color: #1a2d20;
  transition: border .18s, box-shadow .18s;
}
input:focus, select:focus, textarea:focus {
  border-color: #8C6038;
  outline: none;
  box-shadow: 0 1px 5px rgba(140,96,56,0.10);
}

/* Z-INDEX ORGANISATION --------------------------------------------- */
header { z-index: 50; }
.mobile-menu { z-index: 201; }
.cookie-banner { z-index: 400; }
.cookie-modal-overlay { z-index: 401; }

/* ANIMATIONS ------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .btn-primary, .btn-secondary, .btn-cookie {
    transition: background .22s, color .22s, box-shadow .22s, border-color .18s;
  }
  .card, .testimonial-card {
    transition: box-shadow .19s, border-color .15s;
  }
  .mobile-menu, .cookie-banner, .cookie-modal {
    transition: transform .35s, opacity .22s;
  }
}

/* END CSS */
