/* ==========================================
   HORTIENA – MAIN STYLESHEET
   Aesthetic: Organic Editorial / Natural Luxury
   ========================================== */

:root {
  --green-deep:   #1b4332;
  --green-mid:    #2d6a4f;
  --green-bright: #52b788;
  --green-light:  #95d5b2;
  --green-pale:   #d8f3dc;
  --earth:        #8b5e3c;
  --earth-light:  #d4a574;
  --cream:        #faf8f5;
  --white:        #ffffff;
  --text-dark:    #1a2015;
  --text-mid:     #3d4f3a;
  --text-light:   #7a8c76;
  --bg-light:     #f5f7f4;
  --shadow:       0 4px 24px rgba(27,67,50,0.1);
  --shadow-hover: 0 12px 40px rgba(27,67,50,0.18);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 700; }

p { color: var(--text-mid); font-size: 1.02rem; }

a { color: var(--green-mid); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-bright); }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.bg-light { background: var(--bg-light); }
.bg-green { background: var(--green-deep); }
.bg-dark { background: var(--text-dark); }
.center-btn { text-align: center; margin-top: 48px; }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}
.btn-primary:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green-deep);
}
.btn-full { width: 100%; text-align: center; }

/* SECTION LABELS */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 12px;
}
.section-label.light { color: var(--green-light); }

.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { margin-top: 8px; }
.section-header.white h2 { color: var(--white); }

/* TWO COLUMN LAYOUT */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27,67,50,0.08);
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--green-pale);
  color: var(--green-deep);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--green-deep);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-img { transform: scale(1.0); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,67,50,0.82) 0%, rgba(27,67,50,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  text-align: center;
}
.hero-tag {
  display: inline-block;
  background: rgba(82,183,136,0.25);
  border: 1px solid rgba(82,183,136,0.5);
  color: var(--green-light);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--green-light);
}
.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* PAGE HERO */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  margin-top: 72px;
}
.page-hero.short-hero { min-height: 42vh; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,67,50,0.78) 0%, rgba(27,67,50,0.4) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 60px 24px;
  margin: 0 auto;
  text-align: center;
}
.page-hero-content h1 { color: var(--white); margin: 12px 0; }
.page-hero-content p { color: rgba(255,255,255,0.85); font-size: 1.1rem; }

/* ==========================================
   FEATURES STRIP
   ========================================== */
.features-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--green-deep);
  padding: 28px 40px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.feature-item:last-child { border-right: none; }
.feat-icon { font-size: 1.8rem; }
.feature-item strong { color: var(--white); font-size: 0.95rem; display: block; }
.feature-item p { color: var(--green-light); font-size: 0.85rem; margin: 0; }

/* ==========================================
   ABOUT HOME
   ========================================== */
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%; height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--green-mid);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}
.about-text h2 { margin: 12px 0 20px; }
.about-text p { margin-bottom: 16px; }
.about-text .btn { margin-top: 12px; }

/* ==========================================
   CATEGORIES
   ========================================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
}
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cat-card:hover img { transform: scale(1.08); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,67,50,0.85) 0%, transparent 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: var(--transition);
}
.cat-overlay h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 6px; }
.cat-overlay p { color: var(--green-light); margin: 0; font-size: 0.9rem; }

/* ==========================================
   BLOG
   ========================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.blog-card img {
  width: 100%; height: 220px;
  object-fit: cover;
}
.blog-body { padding: 24px; }
.blog-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-deep);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.blog-body h3 { margin-bottom: 10px; font-size: 1.1rem; }
.blog-body p { font-size: 0.92rem; margin-bottom: 16px; }
.read-more { color: var(--green-mid); font-weight: 700; font-size: 0.9rem; }
.read-more:hover { color: var(--green-deep); }

/* Blog Large */
.blog-grid-large {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card-lg {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.blog-card-lg:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.blog-card-lg img {
  width: 100%; height: 200px;
  object-fit: cover;
}
.post-meta {
  display: flex; gap: 16px;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 10px;
  flex-wrap: wrap;
}

/* FEATURED POST */
.featured-post {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.featured-post img {
  width: 100%; height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.featured-body {
  padding: 48px;
  background: var(--white);
  display: flex; flex-direction: column;
  justify-content: center; gap: 16px;
}
.featured-body h2 { font-size: 1.7rem; }
.featured-body p { font-size: 1rem; }

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.testi-card p {
  color: rgba(255,255,255,0.85);
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.testi-card strong { color: var(--green-light); font-size: 0.9rem; }

/* ==========================================
   NEWSLETTER
   ========================================== */
.newsletter { background: var(--green-pale); }
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.newsletter-inner h2 { margin-bottom: 8px; }
.nl-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  min-width: 360px;
}
.nl-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  border: 2px solid var(--green-bright);
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  outline: none;
  background: white;
}
.nl-form input:focus { border-color: var(--green-mid); }

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--text-dark);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand img { margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }
.footer-links h4, .footer-contact h4 { color: var(--white); margin-bottom: 18px; font-size: 1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.92rem; }
.footer-links a:hover { color: var(--green-light); }
.footer-contact p { color: rgba(255,255,255,0.55); font-size: 0.92rem; margin-bottom: 10px; }
.footer-contact a { color: rgba(255,255,255,0.55); }
.footer-contact a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.85rem; }

/* ==========================================
   GARDEN TIPS PAGE
   ========================================== */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tip-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.tip-card img { width: 100%; height: 200px; object-fit: cover; }
.tip-body { padding: 24px; }
.tip-label {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-deep);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.tip-body h3 { margin-bottom: 10px; }
.tip-body p { font-size: 0.92rem; margin-bottom: 14px; }
.tip-list {
  padding-left: 18px;
  margin: 0;
}
.tip-list li {
  color: var(--text-mid);
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cal-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px;
}
.cal-item h4 { color: var(--green-light); margin-bottom: 10px; }
.cal-item p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* ==========================================
   PLANTS PAGE
   ========================================== */
.filter-section { padding: 28px 0; background: var(--bg-light); border-bottom: 1px solid #e8ede6; }
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 2px solid var(--green-bright);
  background: transparent;
  color: var(--green-mid);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green-mid);
  color: white;
  border-color: var(--green-mid);
}
.plants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.plant-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.plant-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.plant-card.hidden { display: none; }
.plant-card img { width: 100%; height: 220px; object-fit: cover; }
.plant-info { padding: 22px; }
.plant-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-deep);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.plant-info h3 { margin-bottom: 8px; }
.plant-info p { font-size: 0.9rem; margin-bottom: 14px; }
.plant-meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  font-size: 0.8rem;
  color: var(--text-light);
}
.plant-meta span {
  background: var(--bg-light);
  padding: 4px 10px;
  border-radius: 20px;
}

.difficulty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diff-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 2px solid transparent;
}
.diff-card.beginner { background: #f0fff4; border-color: #9ae6b4; }
.diff-card.intermediate { background: #fffbeb; border-color: #f6e05e; }
.diff-card.advanced { background: #fff5f5; border-color: #fc8181; }
.diff-card h3 { margin-bottom: 12px; }
.diff-card p { font-size: 0.9rem; margin-bottom: 16px; }
.diff-card ul { padding-left: 18px; }
.diff-card li { margin-bottom: 6px; font-size: 0.9rem; color: var(--text-mid); }

/* ==========================================
   HOME DECOR PAGE
   ========================================== */
.room-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.room-card img { width: 100%; height: 240px; object-fit: cover; }
.room-body { padding: 28px; }
.room-body h3 { margin-bottom: 12px; }
.room-body p { font-size: 0.92rem; margin-bottom: 12px; }
.room-body strong { color: var(--green-mid); font-size: 0.9rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(27,67,50,0.8), transparent);
  color: white; padding: 16px 20px 12px;
  font-weight: 600; font-size: 0.95rem;
}

.tips-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.tip-item {
  display: flex; gap: 20px; align-items: flex-start;
}
.tip-item > span {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  min-width: 48px;
}
.tip-item h4 { color: var(--white); margin-bottom: 8px; }
.tip-item p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin: 12px 0 20px; }
.contact-info p { margin-bottom: 28px; }
.info-blocks { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.info-block { display: flex; gap: 16px; align-items: flex-start; }
.info-icon {
  font-size: 1.4rem;
  min-width: 36px;
  background: var(--green-pale);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.info-block h4 { color: var(--green-deep); margin-bottom: 4px; font-size: 0.9rem; }
.info-block p { margin: 0; font-size: 0.92rem; }
.contact-img img { width: 100%; border-radius: var(--radius); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { margin-bottom: 28px; font-size: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-weight: 700; font-size: 0.88rem;
  margin-bottom: 8px; color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e8de;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-bright);
  box-shadow: 0 0 0 3px rgba(82,183,136,0.15);
}
.form-group textarea { resize: vertical; }
.form-success {
  margin-top: 16px;
  background: var(--green-pale);
  color: var(--green-deep);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
}
.hidden { display: none; }

.map-section { padding: 0 0 60px; }
.map-wrap { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }

.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #dde8da; }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
  background: none; border: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600;
  color: var(--text-dark); cursor: pointer;
  text-align: left;
}
.faq-q span { font-size: 1.3rem; color: var(--green-mid); transition: var(--transition); }
.faq-q.open span { transform: rotate(45deg); }
.faq-a { padding: 0 0 20px; display: none; }
.faq-a p { font-size: 0.96rem; }
.faq-a.open { display: block; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .tips-grid, .blog-grid, .blog-grid-large,
  .plants-grid { grid-template-columns: repeat(2, 1fr); }
  .features-strip { grid-template-columns: repeat(2, 1fr); }
  .calendar-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-post { grid-template-columns: 1fr; }
  .featured-post img { min-height: 280px; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px 16px; }

  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .cat-grid { grid-template-columns: 1fr; }
  .blog-grid, .blog-grid-large, .tips-grid,
  .plants-grid, .room-grid, .testi-grid,
  .difficulty-grid { grid-template-columns: 1fr; }
  .calendar-grid { grid-template-columns: 1fr 1fr; }
  .features-strip { grid-template-columns: 1fr 1fr; padding: 20px; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .nl-form { min-width: unset; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.tall, .gallery-item.wide { grid-row: auto; grid-column: auto; }
  .tips-list-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .about-badge { position: static; margin-top: 16px; display: inline-block; }
}

@media (max-width: 480px) {
  .features-strip { grid-template-columns: 1fr; }
  .calendar-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
}

/* ==========================================
   ARTICLE PAGES
   ========================================== */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 52px;
  align-items: start;
}
.article-body { min-width: 0; }
.article-meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 0.85rem; color: var(--text-light);
  margin-bottom: 28px;
}
.article-lead {
  font-size: 1.18rem !important;
  color: var(--text-dark) !important;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 32px;
  border-left: 4px solid var(--green-bright);
  padding-left: 20px;
}
.article-img {
  width: 100%; border-radius: var(--radius-lg);
  margin: 32px 0; box-shadow: var(--shadow);
  max-height: 480px; object-fit: cover;
}
.article-body h2 {
  font-size: 1.6rem; margin: 36px 0 14px;
  color: var(--green-deep);
}
.article-body h3 {
  font-size: 1.2rem; margin: 28px 0 10px;
  color: var(--text-dark);
}
.article-body p { margin-bottom: 18px; line-height: 1.85; }
.article-cta {
  background: var(--green-pale);
  border-radius: var(--radius-lg);
  padding: 36px; margin-top: 48px;
  text-align: center;
}
.article-cta h3 { margin-bottom: 10px; }
.article-cta p { margin-bottom: 22px; }
.article-cta .btn { margin: 6px; }
.btn-outline-green {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--green-mid);
  color: var(--green-mid);
  background: transparent;
  transition: var(--transition);
}
.btn-outline-green:hover {
  background: var(--green-mid);
  color: white;
}

/* Sidebar */
.article-sidebar { position: sticky; top: 90px; }
.sidebar-widget {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 24px; margin-bottom: 24px;
}
.sidebar-widget h4 {
  color: var(--green-deep); margin-bottom: 16px;
  font-size: 1rem; padding-bottom: 10px;
  border-bottom: 2px solid var(--green-pale);
}
.sidebar-links { list-style: none; }
.sidebar-links li { margin-bottom: 10px; }
.sidebar-links a {
  color: var(--text-mid); font-size: 0.9rem;
  line-height: 1.4;
}
.sidebar-links a:hover { color: var(--green-mid); }

/* Privacy Policy */
.policy-layout { max-width: 860px; margin: 0 auto; }
.policy-body h2 {
  font-size: 1.4rem; color: var(--green-deep);
  margin: 36px 0 14px;
}
.policy-body p { margin-bottom: 16px; line-height: 1.85; }
.policy-list {
  padding-left: 22px; margin-bottom: 18px;
}
.policy-list li { margin-bottom: 10px; line-height: 1.7; color: var(--text-mid); }
.policy-contact {
  background: var(--green-pale);
  border-radius: var(--radius);
  padding: 24px; margin-top: 12px;
}
.policy-contact p { margin-bottom: 8px; }

@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

/* ==========================================
   COMPLIANCE ADDITIONS
   ========================================== */

/* 4-column footer grid */
.footer-grid {
  grid-template-columns: 2fr 1fr 1.5fr 1fr !important;
}
.footer-legal h4 { color: var(--white); margin-bottom: 18px; font-size: 1rem; }
.footer-legal ul { list-style: none; }
.footer-legal li { margin-bottom: 10px; }
.footer-legal a { color: rgba(255,255,255,0.55); font-size: 0.92rem; }
.footer-legal a:hover { color: var(--green-light); }

/* Article byline */
.article-byline {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
}
.byline-avatar {
  width: 52px; height: 52px;
  border-radius: 50%; object-fit: cover;
  border: 3px solid var(--green-bright);
}
.article-byline strong { color: var(--text-dark); font-size: 0.95rem; }
.byline-cat {
  color: var(--green-mid);
  font-size: 0.88rem;
  font-weight: 700;
}
.byline-note { color: var(--text-light); font-size: 0.82rem; margin: 2px 0 0; }

/* Article disclaimer box */
.article-disclaimer {
  background: #fffbea;
  border-left: 4px solid #f6c90e;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 18px;
  font-size: 0.86rem;
  color: #7a6b00;
  margin-bottom: 28px;
  line-height: 1.6;
}
.article-disclaimer a { color: #7a6b00; text-decoration: underline; }

/* About page */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.value-icon { font-size: 2.2rem; margin-bottom: 14px; }
.value-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.value-card p { font-size: 0.9rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  text-align: center;
}
.team-card img {
  width: 100px; height: 100px;
  border-radius: 50%; object-fit: cover;
  margin: 0 auto 18px;
  border: 4px solid var(--green-bright);
}
.team-role {
  color: var(--green-mid);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 12px;
  display: block;
}
.team-card p { font-size: 0.9rem; }

.editorial-policy h3 { margin: 24px 0 10px; color: var(--green-deep); }
.editorial-policy p { margin-bottom: 14px; }

/* Cookie consent bar */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--text-dark);
  color: rgba(255,255,255,0.85);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; z-index: 9999;
  font-size: 0.9rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-bar p { color: rgba(255,255,255,0.85); margin: 0; }
.cookie-bar a { color: var(--green-light); text-decoration: underline; }
.cookie-bar-btns { display: flex; gap: 10px; }
.cookie-accept {
  background: var(--green-bright); color: white;
  border: none; padding: 10px 22px;
  border-radius: 50px; font-weight: 700;
  cursor: pointer; font-size: 0.9rem;
  white-space: nowrap;
}
.cookie-decline {
  background: transparent; color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.3); padding: 10px 22px;
  border-radius: 50px; font-weight: 600;
  cursor: pointer; font-size: 0.9rem;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
  .cookie-bar { flex-direction: column; text-align: center; }
}
