:root {
  --green-dark: #2d5a27;
  --green-mid: #4a8b3f;
  --green-light: #7bbf6a;
  --green-pale: #e8f5e2;
  --earth: #8b5e3c;
  --earth-light: #c4956a;
  --cream: #faf7f0;
  --white: #ffffff;
  --text-dark: #1e2a1a;
  --text-mid: #3d4f37;
  --text-light: #6b7c65;
  --border: #d4e8cc;
  --shadow: rgba(45, 90, 39, 0.12);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', sans-serif;
  --font-article: 'Merriweather', Georgia, serif;
  --font-ui: 'Source Sans 3', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  min-height: 100vh;
}

a { color: var(--green-dark); text-decoration: none; transition: color .25s; }
a:hover { color: var(--green-light); }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* PAGE LOADER */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity .4s ease;
}
.page-loader.loader-hidden { opacity: 0; pointer-events: none; }

.loader-inner { display: flex; gap: 12px; align-items: flex-end; }

.loader-leaf {
  width: 18px;
  background: var(--green-light);
  border-radius: 50% 50% 0 50%;
  animation: leafBounce 1s ease-in-out infinite;
}
.leaf-1 { height: 28px; animation-delay: 0s; }
.leaf-2 { height: 40px; animation-delay: .15s; }
.leaf-3 { height: 28px; animation-delay: .3s; }

@keyframes leafBounce {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(.6); }
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green-dark);
  color: #fff;
  z-index: 9000;
  justify-content: center;
  padding: 20px 24px;
  transition: transform .4s ease;
}
.cookie-banner.cookie-hidden { transform: translateY(100%); }
.cookie-content { max-width: 900px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cookie-content p { flex: 1; font-size: .93rem; min-width: 200px; }
.cookie-content a { color: var(--green-light); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 12px; }
.btn-cookie {
  padding: 9px 22px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: .9rem;
  font-weight: 600;
  transition: background .25s, transform .15s;
}
.btn-cookie:hover { transform: translateY(-2px); }
.btn-accept { background: var(--green-light); color: #fff; }
.btn-accept:hover { background: var(--green-mid); }
.btn-reject { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.btn-reject:hover { border-color: #fff; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 800;
  background: var(--green-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,.2);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo img { border-radius: 50%; border: 2px solid var(--green-light); }
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
}

.main-nav ul { display: flex; gap: 4px; list-style: none; }
.main-nav a {
  color: rgba(255,255,255,.85);
  font-family: var(--font-ui);
  font-size: .9rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 4px;
  transition: background .2s, color .2s;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--green-mid);
  color: #fff;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/2/20/Vegetable_garden_in_the_center_of_Lisbon_%2889322041%29.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(.45);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: var(--green-mid);
  color: #fff;
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero p {
  color: rgba(255,255,255,.88);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 32px;
}
.btn-hero {
  display: inline-block;
  background: var(--green-light);
  color: #fff;
  padding: 14px 34px;
  border-radius: 4px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  transition: background .25s, transform .2s;
}
.btn-hero:hover { background: var(--green-mid); color: #fff; transform: translateY(-3px); }

/* INTRO STRIP */
.intro-strip {
  background: var(--green-pale);
  padding: 48px 0;
  border-bottom: 2px solid var(--border);
}
.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.intro-item {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.intro-item:hover { transform: translateY(-4px); box-shadow: 0 8px 24px var(--shadow); }
.intro-icon {
  width: 56px;
  height: 56px;
  background: var(--green-pale);
  border: 2px solid var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
}
.intro-item h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.intro-item p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* SECTION HEADINGS */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 10px;
}
.section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--green-dark);
  margin-bottom: 12px;
}
.section-head p {
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ARTICLES SECTION */
.articles-section {
  padding: 72px 0;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px var(--shadow); }

.card-img {
  height: 210px;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.card:hover .card-img img { transform: scale(1.06); }

.card-body {
  padding: 22px 22px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-tag {
  font-family: var(--font-ui);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 10px;
}
.card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: 10px;
  line-height: 1.35;
}
.card p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: var(--font-ui);
  font-size: .88rem;
  font-weight: 700;
  color: var(--green-dark);
  transition: color .2s, gap .2s;
}
.card-link:hover { color: var(--green-light); gap: 10px; }
.card-link::after { content: '→'; }

/* FEATURED SPLIT SECTION */
.featured-section {
  background: var(--green-dark);
  padding: 72px 0;
}
.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.featured-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.featured-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.featured-text { color: #fff; }
.featured-text .section-tag { color: var(--green-light); }
.featured-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 18px;
  line-height: 1.25;
}
.featured-text p {
  color: rgba(255,255,255,.8);
  margin-bottom: 14px;
  font-size: .98rem;
}
.btn-featured {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 28px;
  background: var(--green-light);
  color: #fff;
  border-radius: 4px;
  font-family: var(--font-ui);
  font-weight: 700;
  transition: background .25s, transform .2s;
}
.btn-featured:hover { background: var(--green-mid); color: #fff; transform: translateY(-2px); }

/* TIPS SECTION */
.tips-section { padding: 72px 0; background: var(--cream); }
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.tip-item {
  background: #fff;
  border-left: 4px solid var(--green-mid);
  padding: 24px 26px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 10px var(--shadow);
}
.tip-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.tip-item p { font-size: .9rem; color: var(--text-light); }

/* ARTICLE PAGE */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding: 64px 0;
}
.article-main {}
.article-hero-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 32px;
}
.article-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.article-tag {
  background: var(--green-pale);
  color: var(--green-dark);
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.article-date, .article-read-time {
  font-size: .85rem;
  color: var(--text-light);
  font-family: var(--font-ui);
}
.article-main h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--green-dark);
  line-height: 1.25;
  margin-bottom: 22px;
}
.article-body {
  font-family: var(--font-article);
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
}
.article-body h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--green-dark);
  margin: 40px 0 16px;
}
.article-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--green-dark);
  margin: 30px 0 12px;
}
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--green-mid); text-decoration: underline; }
.article-body strong { color: var(--text-dark); font-weight: 700; }

.article-info-box {
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 22px;
  margin: 28px 0;
}
.article-info-box h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.article-info-box p { font-family: var(--font-body); font-size: .92rem; color: var(--text-mid); margin: 0; }

.article-sidebar {}
.sidebar-widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 28px;
}
.sidebar-widget h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.sidebar-links { list-style: none; }
.sidebar-links li { padding: 8px 0; border-bottom: 1px solid var(--border); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a {
  font-size: .9rem;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-links a::before { content: '→'; color: var(--green-light); }
.sidebar-links a:hover { color: var(--green-light); }

/* BREADCRUMB */
.breadcrumb {
  padding: 16px 0;
  font-family: var(--font-ui);
  font-size: .85rem;
  color: var(--text-light);
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--green-dark); }
.breadcrumb span { margin: 0 8px; }

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 64px 0;
  text-align: center;
  color: #fff;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  max-width: 560px;
  margin: 0 auto;
}

/* ABOUT / CONTACT / POLICY PAGES */
.content-section { padding: 64px 0; }
.content-section h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--green-dark);
  margin: 36px 0 14px;
}
.content-section h2:first-child { margin-top: 0; }
.content-section p {
  font-family: var(--font-article);
  font-size: .98rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.content-section ul {
  padding-left: 22px;
  margin-bottom: 16px;
}
.content-section li {
  font-family: var(--font-article);
  font-size: .97rem;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.contact-info {
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 32px;
  margin-top: 32px;
}
.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.contact-info p {
  font-family: var(--font-body);
  font-size: .96rem;
  color: var(--text-mid);
  margin-bottom: 10px;
}
.contact-info a { color: var(--green-mid); }

/* ABOUT TEAM */
.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.value-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}
.value-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.value-item p { font-size: .9rem; color: var(--text-light); }

/* FOOTER */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand {}
.footer-logo {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand p { font-size: .88rem; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-ui);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 24px;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: .83rem; color: rgba(255,255,255,.5); }
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--green-light); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-inner { grid-template-columns: 1fr; gap: 36px; }
  .featured-img img { height: 280px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
  .intro-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .burger { display: flex; }
  .main-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--green-dark);
    z-index: 700;
    padding: 24px;
    overflow-y: auto;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a {
    display: block;
    padding: 16px 12px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
    border-radius: 0;
  }
  .articles-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cookie-content { flex-direction: column; gap: 14px; }
  .hero { min-height: 420px; }
}
@media (max-width: 480px) {
  .header-inner { padding: 0 16px; }
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.7rem; }
}
