/* 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,
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;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #F6F6F1;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
img {
  vertical-align: middle;
  max-width: 100%;
  display: block;
}
button {
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
}

/* BRAND CSS VARS & FONTS */
:root {
  --color-primary: #224477;
  --color-secondary: #49B473;
  --color-accent: #FDED89;
  --color-forest: #2C3D26;
  --color-bark: #7F674C;
  --color-leaf: #93C47D;
  --color-earth: #E0D9C1;
  --color-moss: #B8C5A3;
  --color-bg: #F6F6F1;
  --color-card-bg: #FCFBF6;
  --color-shadow: rgba(36, 64, 51, 0.10);
  --color-text: #2C3D26;
  --color-link: #224477;
  --color-link-hover: #49B473;
  --radius-lg: 24px;
  --radius-base: 14px;
  --radius: 8px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --transition: 0.21s cubic-bezier(.6,.13,.22,.82);
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Montserrat'), local('Montserrat-Regular'),
      url('https://fonts.gstatic.com/s/montserrat/v25/JTUQjIg1_i6t8kCHKm459WlhzQ.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Roboto'), local('Roboto-Regular'),
      url('https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxK.woff2') format('woff2');
}

body {
  color: var(--color-text);
  font-family: var(--font-body);
  background: var(--color-bg);
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-forest);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.3rem;
  line-height: 1.15;
  margin-bottom: 22px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--color-forest);
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
main .section {
  background: var(--color-bg);
}
.container {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  margin-bottom: 32px;
}

/***** NAVIGATION *****/
header {
  background: var(--color-card-bg);
  box-shadow: 0 2px 12px var(--color-shadow);
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  padding: 0;
  margin-bottom: 18px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 16px;
}
header img {
  height: 46px;
  width: auto;
  border-radius: var(--radius);
  background: transparent;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-primary);
  padding: 7px 0;
  border-radius: var(--radius);  
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-secondary);
  background: rgba(73,180,115,0.11);
}
.cta {
  padding: 10px 22px;
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: 999px;
  box-shadow: 0 3px 15px var(--color-shadow);
  transition: transform 0.15s, box-shadow 0.19s, background 0.19s;
  font-weight: bold;
  display: inline-block;
}
.cta:hover, .cta:focus {
  background: #339966;
  transform: translateY(-2px) scale(1.045) rotate(-2deg);
  box-shadow: 0 5px 20px rgba(73,180,115,0.18);
  color: #fff;
}
.secondary-cta {
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 999px;
  padding: 10px 20px;
  font-family: var(--font-display);
  display: inline-block;
  margin-top: 8px;
  box-shadow: 0 2px 10px var(--color-shadow);
  transition: background 0.16s, color 0.13s;
  font-weight: bold;
}
.secondary-cta:hover, .secondary-cta:focus {
  background: #FFE76C;
  color: var(--color-forest);
}

/* Hamburger (mobile) */
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: #fff;
  font-size: 2rem;
  width: 42px;
  height: 42px;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-lg);
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 340px;
  height: 100vh;
  background: var(--color-card-bg);
  box-shadow: -6px 0 24px rgba(44,61,38,0.15);
  z-index: 1600;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.29s cubic-bezier(.77,.2,.11,.83);
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: -12px 0 30px rgba(44,61,38,0.22);
}
.mobile-menu-close {
  margin: 18px 8px 14px auto;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 1.45rem;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-secondary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 28px 30px 28px;
}
.mobile-nav a {
  padding: 13px 0 7px 0;
  font-size: 1.13rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  border-bottom: 2.5px solid transparent;
  border-radius: var(--radius);
  transition: border 0.13s, color 0.13s, background 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  background: rgba(73,180,115,0.06);
  border-bottom: 2.5px solid var(--color-secondary);
}


/* Hide desktop menu on mobile */
@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }
  .cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1001px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/**** ORGANIC/NATURE SHAPES & TEXTURES */
.section {
  border-radius: var(--radius-lg) var(--radius) var(--radius-lg) var(--radius);
  background: var(--color-card-bg);
  box-shadow: 0 4px 34px var(--color-shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}
.content-wrapper {
  padding: 24px 0 18px 0;
  border-radius: var(--radius-base);
  background: none;
  box-shadow: none;
}

/**** FLEXBOX UTILITY LAYOUTS ****/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card-bg);
  border-radius: var(--radius-base);
  box-shadow: 0 3px 21px var(--color-shadow);
  padding: 28px 22px 22px 22px;
  margin-bottom: 20px;
  position: relative;
  min-width: 250px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 8px 26px rgba(34,68,119,0.18);
  transform: translateY(-3px) scale(1.035) rotate(-0.5deg);
}
.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-moss);
  color: var(--color-forest);
  padding: 20px;
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
  margin-top: 0;
  box-shadow: 0 4px 18px var(--color-shadow);
  font-size: 1.05rem;
  flex-direction: column;
  font-family: var(--font-body);
  transition: box-shadow 0.19s, background 0.22s;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  background: #dbe4c8;
  box-shadow: 0 7px 28px rgba(73,180,115,0.13);
}
.testimonial-card p {
  color: var(--color-forest);
  font-size: 1.15rem;
  line-height: 1.42;
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-card span {
  color: var(--color-bark);
  font-size: 0.97rem;
  font-family: var(--font-display); 
  font-weight: 600;
  align-self: flex-end;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

/***** INDEX CAROUSEL & CARDS ******/
.tip-carousel,
.advice-cards,
.recipe-cards,
.project-grid,
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 25px;
}
.tip-carousel > div,
.advice-cards > div,
.recipe-cards > div,
.project-grid > div,
.contact-cards > div {
  flex: 1 1 220px;
  min-width: 220px;
  background: var(--color-leaf);
  border-radius: var(--radius-base) var(--radius-lg) var(--radius) var(--radius-base);
  box-shadow: 0 2px 14px rgba(44,61,38,0.06);
  padding: 18px 16px;
  color: var(--color-forest);
  transition: background 0.19s, box-shadow 0.16s, transform 0.17s;
  margin-bottom: 0;
  position: relative;
  font-family: var(--font-body);
}
.tip-carousel > div:hover,
.advice-cards > div:hover,
.recipe-cards > div:hover,
.project-grid > div:hover,
.contact-cards > div:hover {
  background: #d7ebc2;
  box-shadow: 0 6px 25px rgba(73,180,115,0.09);
  transform: translateY(-3px) scale(1.017) rotate(-0.7deg);
}

/**** TRICK LISTINGS ****/
.trick-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.trick-listings li {
  background: var(--color-card-bg);
  border-radius: var(--radius-base);
  box-shadow: 0 2px 16px var(--color-shadow);
  flex: 1 1 240px;
  min-width: 220px;
  padding: 18px 16px 14px 16px;
  margin-bottom: 0;
  transition: box-shadow 0.19s, background 0.15s;
}
.trick-listings li:hover {
  background: var(--color-earth);
  box-shadow: 0 7px 25px rgba(34,68,119,.13);
}

/**** PRO-TIPS & QUICK-TIPS ****/
.pro-tips-box,
.quick-tips,
.healthy-hacks,
.next-steps {
  background: var(--color-leaf);
  border-radius: var(--radius-base);
  box-shadow: 0 1px 12px rgba(44,61,38,0.05);
  padding: 18px 16px 16px 16px;
  margin-bottom: 24px;
}
.pro-tips-box h3,
.quick-tips h3,
.healthy-hacks h3,
.next-steps h2 {
  font-size: 1.1rem;
  font-family: var(--font-display);
  color: var(--color-secondary);
  margin-bottom: 11px;
  font-weight: bold;
}
.pro-tips-box ul, .quick-tips ul, .healthy-hacks ul, .next-steps ul {
  margin: 0 0 0 11px;
  color: var(--color-bark);
  font-size: 1rem;
}

/**** CATEGORY FILTERS & CUE LINKS ****/
.tip-filters,
.category-filters {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 1rem;
}
.tip-filters span,
.category-filters span  {
  font-weight: bold;
  color: var(--color-secondary);
  font-family: var(--font-display);
}
.tip-filters a,
.category-filters a {
  color: var(--color-primary);
  border-radius: var(--radius);
  padding: 4px 12px;
  background: transparent;
  transition: background 0.14s, color 0.13s;
  font-weight: 500;
}
.tip-filters a:hover,
.category-filters a:hover {
  background: var(--color-accent);
  color: var(--color-secondary);
}

/**** CONTACTO CARDS, MAP and BUSINESS HOURS ****/
.contact-cards {
  margin-bottom: 32px;
}
.contact-cards img {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
}
.map-location, .business-hours {
  background: var(--color-earth);
  border-radius: var(--radius-base);
  box-shadow: 0 1px 12px var(--color-shadow);
  padding: 15px 15px 14px 17px;
  margin-bottom: 17px;
}
.map-location h3, .business-hours h3 {
  color: var(--color-primary);
  font-size: 1 rem;
  margin-bottom: 6px;
  font-family: var(--font-display);
}

/***** FOOTER *****/
footer {
  background: var(--color-forest);
  color: #fff;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  padding: 38px 0 12px 0;
  margin-top: 45px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
  align-items: center;
  justify-content: center;
}
.footer-nav a {
  color: var(--color-accent);
  font-size: 1rem;
  border-radius: var(--radius);
  padding: 6px 8px;
  font-family: var(--font-body);
  transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #fff8e0;
  color: var(--color-secondary);
}
footer p {
  color: #e9ece6;
  font-size: .97rem;
  text-align: center;
}

/***** LINKS *****/
a {
  color: var(--color-link);
  transition: color 0.17s;
}
a:hover, a:focus {
  color: var(--color-link-hover);
  text-decoration: underline;
}

/**** BUTTONS (general) ****/
button, .button, .cta, .secondary-cta {
  outline: none;
  cursor: pointer;
  border: none;
}
button:focus-visible, .cta:focus-visible, .secondary-cta:focus-visible {
  outline: 2.5px solid var(--color-secondary);
  outline-offset: 2px;
}

/**** UL/LI with ICONS (for features) ****/
ul li img {
  height: 1.6em;
  width: auto;
  margin: 0 8px 0 0;
  vertical-align: sub;
  display: inline-block;
}
ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-bark);
}
/**** TABLES (for legal) ****/
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
th, td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #d1dbc1;
}

/****** RESPONSIVE DESIGN ******/
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .section,
  main .section {
    padding: 30px 6px;
  }
  .project-grid,
  .tip-carousel,
  .advice-cards,
  .recipe-cards,
  .content-grid,
  .trick-listings,
  .card-container {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.17rem;
  }
  .container {
    max-width: 100vw;
    padding: 0 4px;
  }
  .main-nav, .footer-nav {
    gap: 10px;
  }
  .section, main .section {
    padding: 21px 3px;
    margin-bottom: 35px;
    border-radius: var(--radius);
    box-shadow: 0 1px 13px var(--color-shadow);
  }
  .tip-carousel,
  .advice-cards,
  .recipe-cards,
  .project-grid,
  .content-grid,
  .trick-listings,
  .card-container,
  .contact-cards {
    flex-direction: column;
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 580px) {
  .footer-nav {
    flex-direction: column;
    gap: 8px;
  }
  .testimonial-card {
    padding: 12px 6px;
    gap: 10px;
    font-size: .97rem;
  }
}

/****** COOKIE CONSENT BANNER & MODAL ******/
.cookie-banner {
  position: fixed;
  z-index: 2100;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--color-card-bg);
  box-shadow: 0 -6px 32px rgba(34,68,119,0.07), 0 0 1px #b3a579;
  padding: 19px 9vw 19px 3vw;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 22px;
  font-size: 1.02rem;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(50px);
  transition: opacity 0.17s, transform 0.3s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner-message {
  flex: 1 1 290px;
  color: var(--color-forest);
  font-size: 1rem;
  margin-bottom: 7px;
}
.cookie-banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: 999px;
  padding: 7px 22px;
  transition: background 0.17s, color 0.16s;
  margin: 0 2px 0 0;
  border: none;
}
.cookie-accept {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-accept:hover {
  background: #159458;
}
.cookie-reject {
  background: #ffe7af;
  color: var(--color-primary);
}
.cookie-reject:hover {
  background: #FFDA7F;
  color: var(--color-forest);
}
.cookie-settings {
  color: var(--color-primary);
  background: transparent;
  border: 1.5px solid var(--color-secondary);
}
.cookie-settings:hover {
  background: var(--color-secondary);
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 17px 3vw 10px 3vw;
    align-items: flex-start;
  }
  .cookie-banner-actions {
    gap: 9px;
  }
}

/* Cookie Modal (for preferences) */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44,61,38,0.28);
  z-index: 2200;
  justify-content: center;
  align-items: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  max-width: 375px;
  width: 89vw;
  padding: 32px 24px 20px 24px;
  box-shadow: 0 8px 44px rgba(44,61,38,0.25);
  position: relative;
  margin: 0 auto;
  animation: fadeInCookie 0.18s;
}
@keyframes fadeInCookie {
  0% { transform: scale(0.88) translateY(40px); opacity: 0; }
  70% { opacity: 1; }
  100% { transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.15rem;
  margin-bottom: 13px;
  color: var(--color-primary);
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 26px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-category-label {
  font-weight: 500;
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: .98rem;
}
.cookie-switch {
  width: 40px;
  height: 24px;
  background: #e0d9c1;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: background 0.12s;
}
.cookie-switch input {
  display: none;
}
.cookie-switch-slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 20px; height: 20px;
  background: var(--color-secondary);
  border-radius: 50%;
  transition: transform 0.2s, background 0.16s;
}
.cookie-switch input:checked + .cookie-switch-slider {
  transform: translateX(16px);
  background: var(--color-primary);
}
.cookie-category-description {
  font-size: .94em;
  color: var(--color-bark);
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 9px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 8px;
  right: 11px;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.22rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.13s;
}
.cookie-modal-close:hover {
  background: var(--color-secondary);
  color: #fff;
}

/********* MICRO-INTERACTIONS, EFFECTS *********/
.card, .feature-item, .testimonial-card, .content-wrapper, .pro-tips-box, .next-steps,
.tip-carousel > div, .advice-cards > div, .recipe-cards > div, .project-grid > div, .contact-cards > div {
  transition: box-shadow 0.14s, background 0.17s, transform 0.17s;
}
.card:hover, .tip-carousel > div:hover, .advice-cards > div:hover, .recipe-cards > div:hover, .project-grid > div:hover, .contact-cards > div:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 7px 24px rgba(34,68,119,0.1);
}
.cta:active, .card:active {
  transform: scale(0.97) !important;
}

/********* SPACING CORRECTNESS *********/
.card:not(:last-child),
.tip-carousel > div:not(:last-child), .advice-cards > div:not(:last-child), .recipe-cards > div:not(:last-child), .project-grid > div:not(:last-child), .contact-cards > div:not(:last-child) {
  margin-bottom: 0;
}
.section:not(:last-child) {
  margin-bottom: 60px;
}
.content-wrapper:not(:last-child) {
  margin-bottom: 32px;
}

/********* ACCESSIBILITY: SELECTION *********/
::selection {
  background: var(--color-accent);
  color: var(--color-primary);
}

/****** END OF SHEET ******/
