/* CSS RESET & BASELINE */
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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F1E9DC;
  color: #1D2B22;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #346B3E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #59935C;
}
ul, ol {
  margin: 0 0 16px 24px;
  padding: 0;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 6px;
}
strong {
  font-weight: bold;
}

/* NATURE ORGANIC DESIGN ROOTS */
:root {
  --color-primary-ink: #1D3557;
  --color-secondary-stone: #A9A9B3;
  --color-accent-sand: #F1E9DC;
  --color-leaf: #59935C;
  --color-treebark: #6C584C;
  --color-forest-bg: #F8F9F4;
  --color-earth: #D6BEA6;
  --color-error: #b3584a;
  --color-focus: #98C47C;
  --radius-card: 18px;
  --radius-button: 9999px;
  --shadow-card: 0 4px 24px 0 rgba(30,57,43,0.09);
  --shadow-hover: 0 8px 36px 0 rgba(30,57,43,0.12);
  --transition: all 0.2s cubic-bezier(.39,.58,.57,1);
}

/* TYPOGRAPHY */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Roboto:wght@400;500;700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #1D2B22;
  background-color: var(--color-forest-bg);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--color-primary-ink);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.013em;
}
h1 { font-size: 2.5rem; margin-bottom: 22px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 14px; font-weight: 500; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 12px; }
p, li {
  font-size: 1rem;
  color: #1D2B22;
  margin-bottom: 12px;
}
.subheadline {
  color: var(--color-leaf);
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 32px;
}
strong {
  color: var(--color-treebark);
  font-weight: 700;
}

/* GENERAL CONTAINERS */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  background: var(--color-accent-sand);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 32px 20px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-forest-bg);
  border-radius: 0 0 var(--radius-card) var(--radius-card);
}

/* FLEXBOX PATTERNS */
.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-accent-sand);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px) scale(1.01);
}
.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-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 16px 0;
}
.testimonial-card {
  background: #ffffff;
  color: #1D3557;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  padding: 20px 24px;
  margin-bottom: 20px;
  max-width: 350px;
  min-width: 250px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card p {
  font-style: italic;
  color: #3a3a3a;
}
.testimonial-card strong {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-leaf);
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(92,139,79,.18);
  transform: scale(1.035);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-accent-sand);
  border-radius: var(--radius-card);
  padding: 18px 16px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
}

/* FEATURE GRID & LISTS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div {
  flex: 1 1 220px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 25px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  min-width: 210px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-grid > div:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px) scale(1.03);
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.tradition, .monument {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 22px 18px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 350px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.tradition:hover, .monument:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.01);
}
.personality-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 10px;
}
.personality {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 22px 18px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 350px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.personality:hover {
  box-shadow: var(--shadow-hover);
  transform: scale(1.012);
}

/* HEADER & NAVIGATION */
header {
  background-color: #ffffffcc;
  box-shadow: 0 2px 12px rgba(109,126,123,.06);
  z-index: 1000;
  padding: 0;
  position: sticky;
  top: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 16px 18px;
  min-height: 60px;
}
header img {
  height: 46px;
  width: auto;
  margin-right: 16px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
nav a {
  color: var(--color-primary-ink);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  padding: 6px 10px;
  border-radius: 7px;
  transition: background 0.14s, color 0.14s;
}
nav a:hover, nav a:focus {
  background: var(--color-leaf);
  color: #fff;
}
.mobile-menu-toggle {
  display: none;
  background: var(--color-leaf);
  border: none;
  color: #fff;
  font-size: 2.2rem;
  border-radius: var(--radius-button);
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.13s;
  z-index: 1300;
  box-shadow: none;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #407249;
}

/* MOBILE MENU */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  max-width: 100vw;
  background: rgba(246, 243, 235, 0.97);
  box-shadow: 0 4px 32px 0 rgba(92,139,79,.17);
  z-index: 12000;
  transform: translateX(-105vw);
  visibility: hidden;
  opacity: 0;
  transition: transform 0.36s cubic-bezier(.63,.05,.77,.89), opacity 0.22s;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  margin: 17px 20px 9px auto;
  background: none;
  border: none;
  color: var(--color-leaf);
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 12010;
  transition: color 0.12s;
}
.mobile-menu-close:hover {
  color: var(--color-treebark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 13px;
  padding: 10px 42px 36px 38px;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: var(--color-primary-ink);
  padding: 10px 0;
  border-radius: 8px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.15s, color 0.13s;
  min-width: 120px;
  min-height: 38px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-leaf);
  color: #fff;
}

/* BUTTONS */
.cta-primary {
  display: inline-flex;
  align-items: center;
  background: var(--color-leaf);
  color: #fff;
  border: none;
  outline: none;
  border-radius: var(--radius-button);
  padding: 14px 38px;
  font-size: 1.17rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 20px rgba(30,57,43,.08);
  margin-top: 8px;
  margin-bottom: 8px;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.cta-primary:hover, .cta-primary:focus {
  background: #417143;
  color: #fff;
  box-shadow: 0 4px 26px 0 rgba(68,124,89,.14);
  transform: scale(1.025);
}
.button-secondary {
  background: transparent;
  color: var(--color-leaf);
  border: 2px solid var(--color-leaf);
  border-radius: var(--radius-button);
  padding: 12px 32px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.16s, color 0.12s;
}
.button-secondary:hover, .button-secondary:focus {
  background: var(--color-leaf);
  color: #fff;
}

/* LISTS */
ul, ol {
  margin: 0 0 18px 24px;
  color: #28302b;
  line-height: 1.6;
}
ul li, ol li {
  margin-bottom: 8px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}

/* SPECIAL SECTIONS */
.brand-contact-details ul {
  list-style: none;
  padding-left: 0;
}
.brand-contact-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.06rem;
  margin-bottom: 12px;
}
.brand-contact-details img {
  height: 24px;
  width: 24px;
}

/* FOOTER */
footer {
  background: linear-gradient(180deg, #E7E2CE 12%, #F1E9DC 100%);
  color: #495152;
  padding: 32px 0 18px 0;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-top: 42px;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  box-shadow: 0 -2px 16px rgba(109,126,123,.07);
}
footer .container {
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.footer-navigation {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.footer-navigation a {
  color: var(--color-primary-ink);
  opacity: 0.92;
  font-size: 1.02rem;
  margin-bottom: 4px;
  transition: color 0.16s;
}
.footer-navigation a:hover {
  color: var(--color-leaf);
}
.brand-address {
  font-size: 0.97rem;
  opacity: 0.8;
}
.copyright {
  opacity: 0.7;
  color: #645c55;
  font-size: 0.93rem;
}

/* SPACING CONSISTENCY */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .card-grid, .feature-grid, .feature-list, .personality-list, .testimonial-list {
  gap: 24px;
}
.card, .feature-item, .feature-grid > div, .tradition, .monument, .personality, .testimonial-card {
  margin-bottom: 20px;
}

/* ANIMATION & MICRO-INTERACTION */
.card, .feature-grid > div, .tradition, .monument, .personality, .testimonial-card {
  transition: box-shadow 0.17s, transform 0.13s;
}
.cta-primary {
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1020px) {
  .feature-grid > div, .tradition, .monument, .personality {
    min-width: 180px;
    max-width: 340px;
    flex: 1 1 200px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .feature-list, .personality-list, .testimonial-list {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div,
  .tradition,
  .monument,
  .personality {
    min-width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 6px;
  }
  .content-wrapper {
    padding: 22px 7px;
  }
  header .container {
    padding: 8px 7px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .section {
    padding: 25px 6px;
    margin-bottom: 38px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-navigation {
    flex-direction: column;
    gap: 11px;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.56rem; }
  h2 { font-size: 1.22rem; }
  h3 { font-size: 1.06rem; }
  .container { padding: 0 2px; }
  .content-wrapper { padding: 13px 2px; }
  .brand-contact-details li { font-size: 0.99rem; }
  .footer-navigation {
    font-size: 0.97rem;
  }
}

/* FOCUSED ELEMENTS */
button:focus, .cta-primary:focus, .button-secondary:focus, a:focus {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 30000;
  background: #fffdf9;
  color: #28302b;
  box-shadow: 0 -5px 28px -4px rgba(109,126,123,.11);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 36px;
  border-radius: 18px 18px 0 0;
  font-size: 1rem;
  animation: bannerFadeIn 0.6s cubic-bezier(.21,.78,.56,1) 1;
}
@keyframes bannerFadeIn {
  from { transform: translateY(90px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-text {
  flex: 2 1 360px;
  margin-right: 18px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 11px;
  align-items: center;
}
.cookie-banner button {
  border: none;
  border-radius: var(--radius-button);
  padding: 11px 25px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  background: var(--color-leaf);
  color: #fff;
  transition: background 0.1s, color 0.1s, box-shadow 0.11s;
  margin-left: 0;
  box-shadow: 0 2px 14px rgba(36,79,49,.08);
}
.cookie-banner .button-secondary {
  background: #eee6d9;
  color: var(--color-leaf);
  border: 1px solid var(--color-leaf);
}
.cookie-banner .button-secondary:hover {
  background: var(--color-leaf);
  color: #fff;
}
.cookie-banner .button-plain {
  background: none;
  color: var(--color-treebark);
  border: none;
  text-decoration: underline;
  padding: 0 11px;
  min-width: 0;
}
.cookie-banner .button-plain:hover {
  color: var(--color-error);
  background: none;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 11px;
    align-items: stretch;
    padding: 17px 8px 11px 8px;
    font-size: 0.99rem;
  }
  .cookie-banner .cookie-actions {
    gap: 6px;
    justify-content: flex-end;
    margin-top: 0;
  }
  .cookie-banner .cookie-text {
    margin-right: 0; margin-bottom: 4px;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 31000;
  background: rgba(71, 84, 69, 0.29);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.27s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fffffc;
  border-radius: var(--radius-card);
  box-shadow: 0 8px 44px rgba(92,139,79,0.19);
  padding: 37px 27px 25px 27px;
  width: 98vw;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalSlideIn 0.45s cubic-bezier(.61,.32,.27,1.15) 1;
  position: relative;
}
@keyframes modalSlideIn {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 7px;
  color: var(--color-leaf);
  font-size: 1.4rem;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1rem;
  color: #294723;
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--color-leaf);
  width: 19px;
  height: 19px;
  margin-right: 3px;
}
.cookie-modal .info {
  color: var(--color-secondary-stone);
  font-size: 0.85rem;
  margin-left: 25px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 8px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--color-treebark);
  cursor: pointer;
  z-index: 999;
}
.cookie-modal .cookie-modal-close:hover {
  color: var(--color-leaf);
}

/* UTILITY CLASSES */
.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.gap-20 {
  gap: 20px;
}
.gap-30 {
  gap: 30px;
}
.align-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}

/* ORGANIC SHAPES/DECORATIVE ELEMENTS */
.organic-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  filter: blur(0.7px) opacity(.26);
}
/* For future SVGs/shapes as decoration only, not for layout */

/* SCROLLBAR */
::-webkit-scrollbar { width: 10px; background: #E7E6DF; border-radius: 7px; }
::-webkit-scrollbar-thumb { background: #b6baa3; border-radius: 7px; }

/* ERROR/FOCUS STYLES */
.has-error input, .has-error textarea {
  border-color: var(--color-error) !important;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--color-focus);
}

/* HIDE ELEMENTS UTILITY */
.hide { display: none !important; }


/* END OF CSS */
