/* -----------------------------------------------------
  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,
main, 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; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #FAFAF7;
  color: #1E2421;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #236945; text-decoration: none; transition: color 0.22s; }
a:hover, a:focus { color: #896200; }
ul, ol { padding-left: 22px; }
strong, b { font-weight: 600; }
button { font-family: inherit; background: none; border: none; cursor: pointer; }

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

/* -----------------------------------------------------
  BRAND COLORS & LUXURY PALETTE
----------------------------------------------------- */
:root {
  --color-primary: #236945;
  --color-secondary: #75B472;
  --color-accent: #F6F3E9;
  --color-light: #FAFAF7;
  --color-dark: #151712;
  --color-gold: #C7A156;
  --color-gold-deep: #896200;
  --color-footer-bg: #22241C;
  --color-testimonial-bg: #FFFDEE;
  --color-card-bg: #FFFFFF;
  --color-neutral: #E9E5D6;
  --shadow-primary: 0 4px 24px rgba(35, 105, 69, 0.07), 0 1.5px 6px rgba(199,161,86,0.06);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 7px;
}

/* -----------------------------------------------------
  TYPOGRAPHY & HEADERS
----------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-dark);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.7rem;
  margin-bottom: 14px;
  line-height: 1.18;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1.22;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  line-height: 1.18;
  color: var(--color-primary);
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.05rem; }
}
.subheadline {
  color: var(--color-secondary);
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 16px;
}
p {
  margin-bottom: 14px;
  color: #2b2e26;
  font-size: 1.01rem;
  line-height: 1.6;
}

/* -----------------------------------------------------
  LAYOUT & FLEXBOX STRUCTURE
----------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1220px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: var(--radius-lg);
}
@media (max-width: 768px) {
  .section { padding: 26px 6px; margin-bottom: 32px; }
  .container { padding: 0 8px; }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-primary);
  margin-bottom: 20px;
  padding: 26px 22px 22px;
  position: relative;
  transition: box-shadow 0.25s;
  min-width: 275px;
  max-width: 380px;
  flex: 1 1 320px;
  border: 1.5px solid var(--color-neutral);
}
.card:hover {
  box-shadow: 0 8px 32px rgba(199,161,86,0.13), 0 4px 16px rgba(35,105,69,0.08);
  border-color: var(--color-gold-deep);
}
.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;
  background: var(--color-testimonial-bg);
  color: #34301b;
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(199,161,86,0.08);
  font-style: italic;
  margin-bottom: 20px;
  border-left: 5px solid var(--color-gold);
  transition: box-shadow 0.19s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(199,161,86,.24);
}
.testimonial-card p { color: #25231B; }
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  font-style: normal;
  font-size: 1.04rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-accent);
  padding: 18px 18px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  border-left: 3px solid var(--color-gold);
}

/* Responsive flex behavior */
@media (max-width: 768px) {
  .content-grid, .card-container, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .card {
    min-width: 100%;
    max-width: 100%;
    padding: 18px 9px;
  }
}

/* -----------------------------------------------------
  HEADER & NAVIGATION STYLES
----------------------------------------------------- */
header {
  background: var(--color-card-bg);
  box-shadow: 0 1.5px 9px rgba(35,105,69,0.05);
  border-bottom: 1.5px solid var(--color-neutral);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 36px;
  justify-content: space-between;
  min-height: 86px;
}
header img {
  height: 46px;
  width: auto;
  margin-right: 18px;
}
header nav {
  display: flex;
  gap: 34px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--color-primary);
  padding: 7px 7px;
  border-radius: 6px;
  transition: color 0.2s, background 0.18s;
}
header nav a.active,
header nav a:hover, header nav a:focus {
  color: var(--color-gold-deep);
  background: var(--color-accent);
}
.cta-primary {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 26px;
  padding: 11px 34px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  box-shadow: 0 1px 6px rgba(35,105,69,.12);
  transition: background 0.22s, box-shadow 0.18s, color 0.22s;
  margin-left: 16px;
  letter-spacing: 0.01em;
  position: relative;
}
.cta-primary:before {
  content: '';
  position: absolute;
  left: 22px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--color-gold);
  opacity: 0.14;
  transform: translateY(-50%);
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-gold);
  color: var(--color-primary);
  box-shadow: 0 4px 18px rgba(199,161,86,.18);
}

/* -----------------------------------------------------
  MOBILE NAVIGATION
----------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-gold);
  box-shadow: 0 2px 10px rgba(35,105,69, 0.18);
  position: relative;
  z-index: 1201;
  margin-left: 16px;
  transition: background 0.14s, color 0.12s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--color-gold);
  color: var(--color-primary);
}
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 1200;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #191c18ed;
  transition: transform 0.33s cubic-bezier(.4,1.38,.77,.98);
  transform: translateX(100%);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-card-bg);
  color: var(--color-primary);
  border-radius: 50%;
  font-size: 2.1rem;
  margin: 20px 12px 10px 18px;
  align-self: flex-end;
  padding: 2px 8px;
  border: 2px solid var(--color-gold);
  box-shadow: 0 2px 8px rgba(199,161,86,0.09);
  transition: background 0.14s, color 0.10s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-gold);
  color: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
  padding-left: 30px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  padding: 11px 0;
  border-radius: 9px;
  transition: color 0.17s, background 0.17s, padding 0.12s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--color-gold);
  background: rgba(199,161,86,0.05);
  padding-left: 12px;
}
@media (max-width: 1024px) {
  header nav, header .cta-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* -----------------------------------------------------
  FOOTER
----------------------------------------------------- */
footer {
  background: var(--color-footer-bg);
  color: #f9f8f4;
  padding: 42px 0;
  font-size: 1rem;
}
footer .container {
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  flex-direction: row;
}
footer img {
  height: 42px;
  margin-bottom: 12px;
}
footer p {
  color: #f8f7f2;
  font-size: 1rem;
  margin-bottom: 6px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}
footer nav a {
  color: #EFDFA7;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.19s;
}
footer nav a:hover {
  color: var(--color-gold);
}
.footer-cta {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.footer-cta .cta-primary {
  margin-left: 0px;
  background: var(--color-gold);
  color: var(--color-footer-bg);
}
.footer-cta .cta-primary:hover,
.footer-cta .cta-primary:focus {
  background: var(--color-primary);
  color: #fff;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}

/* -----------------------------------------------------
  ICONS & LISTS
----------------------------------------------------- */
ul img, li img {
  vertical-align: middle;
  margin-right: 8px;
  height: 1.18em;
  width: auto;
  display: inline-block;
}
.eco-certifications ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.eco-certifications ul li {
  background: var(--color-light);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  display: flex;
  align-items: center;
  margin-bottom: 0!important;
  font-size: 1.06rem;
}
@media (max-width: 768px) {
  .eco-certifications ul {
    flex-direction: column;
    gap: 10px;
  }
}

/* -----------------------------------------------------
  CONTACT INFO
----------------------------------------------------- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 1.06rem;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 7px;
}
.contact-info img {
  width: 22px;
  height: 22px;
}

/* -----------------------------------------------------
  COOKIE CONSENT BANNER & COOKIE SETTINGS MODAL
----------------------------------------------------- */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  background: #fffbe7;
  box-shadow: 0 -4px 22px rgba(199,161,86,0.19);
  border-top: 3px solid var(--color-gold);
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  padding: 20px 18px 17px 24px;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1.06rem;
  animation: fadeIn 0.66s cubic-bezier(.41,1.32,.77,.98);
}
#cookie-consent-banner span {
  font-size: 1.07rem;
  color: #665622;
  max-width: 670px;
  font-weight: 500;
  margin-right: 16px;
}
#cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 22px;
  border: none;
  padding: 7px 31px;
  font-size: 1.03rem;
  font-weight: 600;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.cookie-btn-accept {
  background: var(--color-primary);
  color: #fff;
}
.cookie-btn-accept:hover,
.cookie-btn-accept:focus {
  background: var(--color-gold);
  color: var(--color-primary);
}
.cookie-btn-reject {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-gold);
}
.cookie-btn-reject:hover,
.cookie-btn-reject:focus {
  background: var(--color-gold);
  color: var(--color-primary);
}
.cookie-btn-settings {
  background: #fffbe7;
  color: var(--color-gold-deep);
  border: 2px solid var(--color-gold);
}
.cookie-btn-settings:hover,
.cookie-btn-settings:focus {
  background: var(--color-gold);
  color: var(--color-footer-bg);
}

/* Cookie Modal */
#cookie-modal {
  position: fixed;
  z-index: 2500;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(34,34,27,0.35);
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.45s
}
#cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #fffbe7;
  border: 2.2px solid var(--color-gold);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 42px rgba(199,161,86,0.23);
  width: 98vw;
  max-width: 430px;
  padding: 36px 30px 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  animation: fadeInUp 0.55s cubic-bezier(.32,1.64,.66,1.01);
}
.cookie-modal-header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-dark);
  font-size: 1.32rem;
  margin-bottom: 0;
}
.cookie-modal-categories {
  margin-top: 12px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-switch input[type="checkbox"] {
  accent-color: var(--color-gold);
  width: 19px;
  height: 19px;
}
.cookie-modal-footer {
  display: flex;
  gap: 17px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 15px;
  background: var(--color-card-bg);
  color: var(--color-primary);
  border-radius: 50%;
  border: 1.2px solid var(--color-gold);
  font-size: 1.36rem;
  width: 33px; height: 33px;
  transition: background 0.14s, color 0.11s;
}
.cookie-modal-close:hover { background: var(--color-gold); color: var(--color-footer-bg); }
@media (max-width: 600px) {
  #cookie-consent-banner { flex-direction: column; align-items: flex-start; gap: 11px; padding: 13px 8px 16px; }
  #cookie-consent-banner span { margin-right: 0; }
  .cookie-modal-content { padding: 19px 7px 21px 7px; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* -----------------------------------------------------
  BUTTONS & INTERACTIVE ELEMENTS
----------------------------------------------------- */
button,
input[type="button"],
input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: var(--color-primary);
  color: #fff;
  border-radius: 22px;
  border: none;
  padding: 10px 30px;
  font-size: 1.01rem;
  transition: background 0.17s, color 0.17s;
  box-shadow: 0 2px 9px rgba(35,105,69,0.09);
  cursor: pointer;
}
button.secondary, input[type="button"].secondary {
  background: var(--color-gold);
  color: var(--color-footer-bg);
}
button.secondary:hover, input[type="button"].secondary:hover {
  background: var(--color-footer-bg);
  color: var(--color-gold);
}
button:disabled {
  opacity: 0.56;
  cursor: not-allowed;
}

/* -----------------------------------------------------
  MICRO-INTERACTIONS (subtle shadow + bg on hover)
----------------------------------------------------- */
.card, .testimonial-card, .feature-item, .eco-certifications ul li, .contact-info p {
  transition: box-shadow 0.16s, background 0.16s;
}
.card:hover, .feature-item:hover, .eco-certifications ul li:hover {
  background: #FFFDEE;
  box-shadow: 0 8px 36px rgba(199,161,86,0.09);
}

/* -----------------------------------------------------
  RESPONSIVE UTILITIES
----------------------------------------------------- */
@media (max-width: 600px) {
  .section { padding: 12px 2px; margin-bottom: 22px; }
  main { padding-bottom: 48px; }
}

/* -----------------------------------------------------
  FORMS (for contact forms etc.)
----------------------------------------------------- */
input, textarea, select {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  border: 1.5px solid var(--color-neutral);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 1rem;
  outline: none;
  margin-bottom: 14px;
  background: #fff;
  width: 100%;
  transition: border 0.13s, box-shadow 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 5px 17px rgba(199,161,86,0.09);
}

/* -----------------------------------------------------
  ACCENT DIVIDERS
----------------------------------------------------- */
.divider {
  width: 48px;
  height: 3.5px;
  border-radius: 2px;
  background: var(--color-gold);
  margin: 18px 0;
}

/* -----------------------------------------------------
  GOLD ACCENTS & FINE DETAILS
----------------------------------------------------- */
.gold-accent {
  color: var(--color-gold-deep);
  background: linear-gradient(90deg, #C7A15618 10%, transparent 70%);
  border-radius: 8px;
  padding: 3px 10px 2px 11px;
}
.gold-bar {
  display: inline-block;
  background: var(--color-gold);
  width: 28px;
  height: 3.5px;
  border-radius: 2px;
  margin-left: 8px;
  vertical-align: middle;
}

/* -----------------------------------------------------
  OTHER UTILS
----------------------------------------------------- */
.mt-2 { margin-top: 12px; }
.mt-4 { margin-top: 28px; }
.mb-2 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 28px; }

/* -----------------------------------------------------
  PRINT STYLE (brand) – Disables background and boxshadows to save ink
----------------------------------------------------- */
@media print {
  body { background: #fff; color: #000; }
  header, footer, .mobile-menu, #cookie-consent-banner, #cookie-modal { display: none !important; }
  .section, .card, .testimonial-card, .feature-item { background: #fff !important; box-shadow: none !important; border: none !important; }
}
