/* -----------------------------------------------------------
   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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  background: #F5F5F5;
  color: #24313A;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #487600;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #24313A;
}
ul, ol {
  margin-left: 1.25em;
  padding-left: 1em;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
  color: #24313A;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  font-weight: 500;
}
section {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px 0 rgba(36,49,58,0.04);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
}
.text-section {
  margin-bottom: 32px;
}
strong {
  font-weight: 700;
  color: #487600;
}

/* -----------------------------------------------------------
   NATURE ORGANIC: COLORS & BRAND
----------------------------------------------------------- */
:root {
  --color-primary: #24313A;
  --color-secondary: #F4A95E;
  --color-accent: #F5F5F5;
  --color-green: #487600;
  --color-bark: #9C8370;
  --color-leaf: #B4C77B;
  --color-sand: #E9E4D6;
  --color-white: #fff;
  --color-shadow: rgba(36,49,58,0.07);
  --radius-section: 22px;
  --radius-card: 16px;
  --radius-btn: 32px;
  --shadow-card: 0 2px 14px 0 rgba(36,49,58,0.09);
  --shadow-hover: 0 6px 24px 0 rgba(36,49,58,0.12);
}

/* -----------------------------------------------------------
   LAYOUT: FLEXBOX PATTERNS ONLY
----------------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: var(--color-sand);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.22s;
}
.card:hover {
  box-shadow: var(--shadow-hover);
}
.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;
  background: #fff;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-card);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-sand);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px 16px;
  flex: 1 1 240px;
  min-width: 220px;
  transition: box-shadow .18s, background-color .18s;
}
.feature-item:hover {
  background: var(--color-leaf);
  box-shadow: var(--shadow-hover);
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 0 0;
  justify-content: flex-start;
}

/* Index, Tips, Trends: Responsive Grids */
.tip-grid,.trend-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: space-between;
}
.tip-grid>div,.trend-list>div {
  flex: 1 1 240px;
  min-width: 200px;
  background: var(--color-accent);
  border-radius: var(--radius-card);
  padding: 20px 16px;
  margin-bottom: 8px;
  box-shadow: 0 2px 10px 0 rgba(180,199,123,0.09);
}
.inspiration-overview,.style-tip-list,.tip-detail {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 20px 18px;
  margin-bottom: 18px;
}

/* Visually distinctive cards: Testimonials, Tips, Trends */
.testimonials {
  background: var(--color-leaf);
  border-radius: var(--radius-section);
  margin-bottom: 60px;
}
.testimonial-card {
  background: var(--color-accent);
  border-left: 7px solid var(--color-green);
  margin-bottom: 24px;
  color: #24313A;
}
.testimonial-card blockquote {
  font-size: 1.125rem;
  font-style: italic;
  color: #24313A;
  margin: 0 0 8px 0;
}
.testimonial-card p {
  color: #24313A;
  margin: 0 0 0 8px;
}

/* -----------------------------------------------------------
   BUTTONS & INTERACTIVE
----------------------------------------------------------- */
.cta-btn, .cookie-banner button, .cookie-modal .btn,
.mobile-menu-toggle, .mobile-menu-close {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  background: var(--color-green);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  padding: 14px 32px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 1px 4px 0 var(--color-shadow);
  transition: background-color 0.17s, color 0.14s, box-shadow 0.21s, transform 0.17s;
  outline: none;
  display: inline-block;
  text-align: center;
  letter-spacing: .01em;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--color-primary);
  color: var(--color-secondary);
  box-shadow: 0 4px 14px 0 var(--color-shadow);
  transform: translateY(-2px);
}
.cta-btn:active {
  background: var(--color-bark);
}
/* Alt button style on cookie & dialog */
.btn-alt {
  background: var(--color-bark);
  color: #fff;
}
.btn-alt:hover,.btn-alt:focus {
  background: var(--color-green);
}

/* Button contrast in cookies */
.cookie-banner button, .cookie-modal .btn {
  min-width: 124px;
  margin-right: 12px;
  margin-bottom: 10px;
  font-size: 1rem;
  box-shadow: var(--shadow-card);
  padding: 12px 20px;
}
.cookie-banner .btn-secondary{
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-banner .btn-secondary:hover {
  background: var(--color-green);
  color: #fff;
}

/* -----------------------------------------------------------
   HEADER & NAVIGATION
----------------------------------------------------------- */
header {
  background: var(--color-white);
  box-shadow: 0 2px 16px 0 rgba(36,49,58,0.07);
  position: sticky;
  top: 0;
  z-index: 30;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 18px 16px;
  justify-content: flex-start;
}
.main-nav > a {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.12rem;
  color: var(--color-primary);
  margin-right: 7px;
  padding: 7px 14px;
  border-radius: 25px;
  transition: background-color 0.16s, color .15s;
  position: relative;
}
.main-nav > a.cta-btn {
  margin-left: auto;
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 11px 25px;
  font-weight: 700;
  font-size: 1.12rem;
}
.main-nav > a.cta-btn:hover {
  background: var(--color-green);
  color: #fff;
}
.main-nav > a.active, .main-nav > a:hover, .main-nav > a:focus {
  background: var(--color-green);
  color: #fff;
}
.main-nav > a img {
  height: 43px; width: auto; margin-right: 11px; vertical-align: middle;
  border-radius: 24px;
}

/* -----------------------------------------------------------
   MOBILE NAVIGATION
----------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 16px;
  top: 18px;
  background: var(--color-green);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: var(--shadow-card);
  font-size: 2.1rem;
  z-index: 31;
  align-items: center;
  justify-content: center;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,49,58,0.90);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.63,.01,0,1);
  box-shadow: 0 4px 12px 0 rgba(36,49,58,0.23);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-bark);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2.15rem;
  position: absolute;
  right: 18px;
  top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 10001;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 90px;
  gap: 27px;
  flex: 1;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.45rem;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 18px;
  transition: background-color 0.11s, color 0.13s;
  background: transparent;
  text-align: center;
  min-width: 190px;
  margin-right: 0;
  letter-spacing: .02em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
@media (max-width: 1024px) {
  .main-nav .cta-btn {
    margin-left: 0;
  }
}
@media (max-width: 960px) {
  .main-nav img {
    height: 38px;
  }
}
@media (max-width: 850px) {
  .main-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 7px;
    padding: 11px 12px;
  }
  .main-nav > a {
    font-size: 1rem;
    padding: 6px 11px;
  }
  .main-nav > a.cta-btn {
    font-size: 1rem;
    padding: 9px 16px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Overlay disables scroll */
body.mobile-menu-open {
  overflow: hidden;
}

/* -----------------------------------------------------------
   HERO SECTION
----------------------------------------------------------- */
.hero-section {
  background: linear-gradient(135deg, var(--color-leaf) 0%, var(--color-sand) 100%);
  box-shadow: 0 6px 28px 0 rgba(36,49,58,0.10);
  border-radius: var(--radius-section);
  margin-bottom: 60px;
  padding: 60px 20px 40px 20px;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.hero-section h1 {
  color: var(--color-primary);
  font-size: 2.8rem;
  margin-bottom: 16px;
}
.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: var(--color-primary);
}

/* -----------------------------------------------------------
   FOOTER
----------------------------------------------------------- */
footer {
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-section) var(--radius-section) 0 0;
  box-shadow: 0 -1px 10px 0 rgba(36,49,58,0.07);
  padding: 34px 0 14px 0;
  margin-top: 40px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 13px;
}
.footer-nav a {
  color: var(--color-leaf);
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 4px 10px;
  border-radius: 10px;
  transition: background-color 0.11s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.footer-contact {
  margin-top: 12px;
  font-size: 1rem;
  color: #fff;
  text-align: center;
}
.footer-contact a {
  color: var(--color-secondary);
  text-decoration: underline;
}
.footer-contact a:hover {
  color: var(--color-leaf);
}
footer address {
  font-style: normal;
  line-height: 1.8;
}

/* -----------------------------------------------------------
   ORGANIC DECORATIVE
----------------------------------------------------------- */
section, .card, .feature-item, .testimonial-card, .hero-section {
  border-radius: 24px 32px 24px 48px / 36px 24px 36px 32px;
}

/* -----------------------------------------------------------
   COOKIE CONSENT BANNER
----------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--color-bark);
  color: #fff;
  z-index: 11000;
  box-shadow: 0 -4px 20px 0 rgba(36,49,58,.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 12px 18px 12px;
  gap: 15px;
  font-size: 1.07rem;
}
.cookie-banner strong {
  color: var(--color-leaf);
}
.cookie-banner .cookie-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  justify-content: center;
}

/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(36,49,58,0.37);
  z-index: 13000;
  align-items: center;
  justify-content: center;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 27px;
  box-shadow: 0 7px 32px 0 rgba(36,49,58,0.17);
  padding: 34px 22px 26px 22px;
  min-width: 92vw;
  max-width: 440px;
  min-height: 80px;
  animation: fade-in 0.3s;
}
@keyframes fade-in {
  from { opacity: 0; transform: scale(.97); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h3 {
  font-size: 1.3rem;
  margin-bottom: 17px;
  color: var(--color-green);
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  background: var(--color-sand);
  border-radius: 16px;
  padding: 13px 14px 11px 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  font-size: 1.03rem;
}
.cookie-category-toggle {
  margin-left: auto;
}
.cookie-modal .btn-row {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 25px;
}
/* Toggle-switch style */
.cookie-switch {
  width: 38px;
  height: 22px;
  background: var(--color-leaf);
  border-radius: 20px;
  position: relative;
  transition: background 0.21s;
  vertical-align: middle;
  display: inline-block;
}
.cookie-switch input {
  display: none;
}
.cookie-switch .slider {
  position: absolute;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  left: 3px; top: 3px;
  background: var(--color-primary);
  transition: left .19s, background .17s;
}
.cookie-switch input:checked + .slider {
  left: 19px;
  background: var(--color-green);
}
.cookie-category.essential {
  background: #e7f2d1;
  color: var(--color-green);
  font-weight: 700;
}

/* -----------------------------------------------------------
   OTHER & UTILS
----------------------------------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.contact-details {
  margin-bottom: 16px;
  background: var(--color-sand);
  border-radius: var(--radius-card);
  padding: 22px;
  color: var(--color-primary);
  font-size: 1.13rem;
}
.contact-details a {
  color: var(--color-green);
  font-weight: 600;
}
.seasonal-tip, .trend-highlights {
  background: var(--color-leaf);
  color: var(--color-primary);
  border-radius: var(--radius-card);
  padding: 14px 16px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-card);
  font-size: 1.09rem;
}

/* Lists */
ul, ol {
  margin-bottom: 16px;
  color: #485040;
}
ul li strong, ol li strong { color: var(--color-green); }

/* Responsive Tables (fallback) */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2em;
  font-size: 1rem;
  background: var(--color-white);
  border-radius: 9px;
  box-shadow: 0 1px 9px rgba(36,49,58,.08);
}
tr { border-bottom: 1px solid #ddd; }
th, td { padding: 12px 8px; text-align: left; }
th {
  background: var(--color-leaf);
  color: var(--color-primary);
}

/* -----------------------------------------------------------
   SPACING / ORGANIC MOTION
----------------------------------------------------------- */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  section {
    padding-left: 10px; padding-right: 10px;
  }
}
@media (max-width: 980px) {
  .feature-grid, .card-container, .content-grid, .tip-grid {
    gap: 16px;
  }
  .feature-item, .card {
    padding: 16px 10px;
  }
}
@media (max-width: 780px) {
  .feature-grid, .card-container, .content-grid, .tip-grid {
    flex-direction: column;
  }
  .feature-item, .card {
    min-width: 0;
    width: 100%;
  }
  .main-nav {
    font-size: 0.98rem;
    gap: 5px;
  }
  section, .section {
    padding: 24px 5px 24px 5px;
  }
  .hero-section {
    padding: 32px 5px 20px 5px;
    min-height: 120px;
  }
}
@media (max-width: 550px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.12rem; }
  h3 { font-size: 1.00rem; }
  .testimonial-card, .feature-item, .card {
    padding: 8px 4px;
  }
}
@media (max-width: 400px) {
  .cookie-banner, .cookie-modal { font-size: .92rem; }
  .footer-nav, .footer-contact { font-size: .98rem; }
}

/* TEXT-IMAGE FLEX DIRECTION FOR MOBILE */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* -----------------------------------------------------------
   FOCUS ACCESSIBILITY
----------------------------------------------------------- */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid var(--color-green);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px var(--color-leaf);
}

/* -----------------------------------------------------------
   MICRO-INTERACTIONS / TRANSITIONS
----------------------------------------------------------- */
.card,.feature-item,.testimonial-card,section {
  transition: box-shadow .19s, background-color .14s;
}
.card:active,.feature-item:active{ transform: scale(.99); }

/* -----------------------------------------------------------
   CUSTOM FONTS
----------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Source+Sans+Pro:wght@400;600;700&display=swap');

/* -----------------------------------------------------------
   PRINT UTILS
----------------------------------------------------------- */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  section, .container { box-shadow: none; background: #fff; color: #111; }
}
