/*
Theme Name: Steve's Greenhouse
Theme URI: https://www.instagram.com/steves_greenhouse/
Author: Steve's Greenhouse
Author URI: https://www.facebook.com/steve.s.greenhouse/
Description: A fully custom WordPress theme for Steve's Greenhouse in Hamden, NY — nestled in the Catskill Mountains. Features dynamic plant categories, testimonials, gallery, wholesale info, and full Customizer support.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: steves-greenhouse
Tags: custom-background, custom-logo, custom-menu, featured-images, full-width-template, sticky-post, theme-options, translation-ready
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  color: #2b3a2b;
  background: #fafaf5;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== CSS VARIABLES ===== */
:root {
  --green-dark:   #2d5016;
  --green-mid:    #3a7d27;
  --green-light:  #6aad45;
  --green-pale:   #e8f3e0;
  --cream:        #fafaf5;
  --warm-white:   #f5f0e8;
  --earth:        #7a5c3a;
  --earth-light:  #c9a97a;
  --text-dark:    #1e2e1e;
  --text-mid:     #4a5e4a;
  --text-light:   #7a8e7a;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--green-dark);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}
.announcement-bar a { color: var(--earth-light); font-weight: 700; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(250,250,245,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(106,173,69,0.2);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 72px;
}
.site-branding { display: flex; align-items: center; gap: 12px; }
.site-branding .custom-logo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.logo-icon {
  width: 48px; height: 48px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 28px; height: 28px; }
.logo-text .site-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--green-dark); line-height: 1.1;
}
.logo-text .site-tagline { font-size: 0.7rem; color: var(--text-light); letter-spacing: 1.5px; text-transform: uppercase; }

/* PRIMARY NAV */
.main-navigation ul { list-style: none; display: flex; gap: 32px; align-items: center; }
.main-navigation ul li a {
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--text-dark); transition: color 0.2s;
  position: relative;
}
.main-navigation ul li a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--green-mid);
  transform: scaleX(0); transition: transform 0.25s;
}
.main-navigation ul li a:hover { color: var(--green-mid); }
.main-navigation ul li a:hover::after { transform: scaleX(1); }
.main-navigation ul li.nav-cta a {
  background: var(--green-mid); color: #fff !important;
  padding: 10px 22px; border-radius: 30px;
  transition: background 0.2s, transform 0.2s !important;
}
.main-navigation ul li.nav-cta a:hover { background: var(--green-dark) !important; transform: translateY(-1px); }
.main-navigation ul li.nav-cta a::after { display: none !important; }

/* HAMBURGER */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--green-dark); border-radius: 2px; transition: 0.3s; }

/* MOBILE NAV */
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(20,40,15,0.97); z-index: 9998;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay a { font-family: 'Playfair Display', serif; font-size: 2rem; color: #fff; font-weight: 700; transition: color 0.2s; }
.mobile-nav-overlay a:hover { color: #a8d97a; }
.mobile-nav-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; }

/* ===== HERO ===== */
.hero-section {
  position: relative; height: 92vh; min-height: 560px; max-height: 900px;
  overflow: hidden; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,60,20,0.72) 0%, rgba(45,80,22,0.45) 50%, rgba(0,0,0,0.25) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 0 48px; width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3); color: #fff;
  font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 18px; border-radius: 30px; margin-bottom: 28px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 700;
  color: #fff; line-height: 1.1; margin-bottom: 20px; max-width: 700px;
}
.hero-title em { font-style: italic; color: #a8d97a; }
.hero-subtitle { font-size: clamp(1rem, 1.8vw, 1.2rem); color: rgba(255,255,255,0.88); max-width: 520px; margin-bottom: 40px; line-height: 1.7; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--green-light); color: #fff;
  padding: 16px 36px; border-radius: 40px; font-weight: 700; font-size: 0.9rem;
  transition: all 0.25s; box-shadow: 0 4px 20px rgba(106,173,69,0.4);
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(58,125,39,0.5); }
.btn-outline {
  background: rgba(255,255,255,0.15); backdrop-filter: blur(6px);
  border: 2px solid rgba(255,255,255,0.6); color: #fff;
  padding: 14px 34px; border-radius: 40px; font-weight: 700; font-size: 0.9rem; transition: all 0.25s;
}
.btn-outline:hover { background: rgba(255,255,255,0.28); transform: translateY(-2px); }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.6); font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== INFO STRIP ===== */
.info-strip { background: var(--green-dark); color: #fff; }
.info-strip-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.info-item {
  display: flex; align-items: center; gap: 16px;
  padding: 28px 32px; border-right: 1px solid rgba(255,255,255,0.12); transition: background 0.2s;
}
.info-item:last-child { border-right: none; }
.info-item:hover { background: rgba(255,255,255,0.07); }
.info-icon {
  width: 44px; height: 44px; background: rgba(255,255,255,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.info-label { font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 3px; }
.info-value { font-size: 0.95rem; font-weight: 700; }

/* ===== SECTIONS ===== */
.site-section { padding: 96px 32px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-label { font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--green-mid); font-weight: 700; margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--text-dark); line-height: 1.2; margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-mid); max-width: 580px; line-height: 1.7; margin-bottom: 56px; }

/* ===== PLANT CATEGORIES ===== */
.categories-section { background: var(--cream); }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cat-card { position: relative; border-radius: 16px; overflow: hidden; height: 280px; cursor: pointer; }
.cat-card.large { grid-column: span 2; height: 340px; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.cat-card:hover img { transform: scale(1.07); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,50,10,0.75) 0%, rgba(0,0,0,0.1) 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; transition: background 0.3s;
}
.cat-card:hover .cat-overlay { background: linear-gradient(to top, rgba(20,50,10,0.85) 0%, rgba(20,50,10,0.2) 60%); }
.cat-tag { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 6px; }
.cat-name { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.cat-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 700; color: #a8d97a; letter-spacing: 0.5px; opacity: 0; transform: translateY(6px); transition: all 0.3s; }
.cat-card:hover .cat-link { opacity: 1; transform: translateY(0); }

/* ===== ABOUT ===== */
.about-section { background: var(--warm-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; height: 540px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 75%; height: 82%; border-radius: 20px; object-fit: cover; box-shadow: 0 20px 60px rgba(0,0,0,0.18); }
.about-img-accent { position: absolute; bottom: 0; right: 0; width: 55%; height: 50%; border-radius: 20px; object-fit: cover; box-shadow: 0 12px 40px rgba(0,0,0,0.15); border: 6px solid var(--warm-white); }
.about-badge {
  position: absolute; top: 50%; left: 68%; transform: translate(-50%, -50%);
  background: var(--green-dark); color: #fff; border-radius: 50%;
  width: 110px; height: 110px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  box-shadow: 0 8px 30px rgba(45,80,22,0.5); z-index: 2;
}
.about-badge .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.about-badge .sub { font-size: 0.62rem; letter-spacing: 1px; text-transform: uppercase; opacity: 0.8; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 40px; }
.about-feature { display: flex; align-items: flex-start; gap: 12px; }
.af-icon { width: 36px; height: 36px; background: var(--green-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.af-title { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 2px; }
.af-desc { font-size: 0.82rem; color: var(--text-mid); line-height: 1.5; }
.btn-green { display: inline-flex; align-items: center; gap: 8px; background: var(--green-dark); color: #fff; padding: 15px 32px; border-radius: 40px; font-weight: 700; font-size: 0.9rem; transition: all 0.25s; }
.btn-green:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(45,80,22,0.35); }

/* ===== SERVICES ===== */
.services-section { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.07); transition: transform 0.3s, box-shadow 0.3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.service-img { height: 220px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-body { padding: 28px; }
.service-icon-wrap { width: 52px; height: 52px; background: var(--green-pale); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 16px; }
.service-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.service-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 20px; }
.service-link { font-size: 0.83rem; font-weight: 700; color: var(--green-mid); display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.service-link:hover { gap: 10px; }

/* ===== SEASONAL BANNER ===== */
.seasonal-banner { position: relative; overflow: hidden; padding: 0; }
.seasonal-bg {
  background-size: cover; background-position: center;
  padding: 96px 48px; position: relative;
}
.seasonal-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(20,50,10,0.88) 40%, rgba(20,50,10,0.4) 100%);
}
.seasonal-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.seasonal-banner .section-label { color: #a8d97a; }
.seasonal-banner .section-title { color: #fff; max-width: 560px; }
.seasonal-banner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 500px; margin-bottom: 40px; line-height: 1.7; }
.seasonal-list { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.seasonal-tag { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: #fff; padding: 8px 18px; border-radius: 30px; font-size: 0.82rem; font-weight: 700; }

/* ===== GALLERY ===== */
.gallery-section { background: var(--warm-white); }
.gallery-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 240px 240px; gap: 16px; }
.gallery-item { border-radius: 14px; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-hover { position: absolute; inset: 0; background: rgba(30,60,15,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-hover span { color: #fff; font-size: 1.4rem; }
.gallery-insta { text-align: center; margin-top: 36px; }
.btn-insta { display: inline-flex; align-items: center; gap: 10px; border: 2px solid var(--green-mid); color: var(--green-mid); padding: 13px 30px; border-radius: 40px; font-weight: 700; font-size: 0.88rem; transition: all 0.25s; }
.btn-insta:hover { background: var(--green-mid); color: #fff; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--green-dark); padding: 96px 32px; }
.testimonials-section .section-label { color: #a8d97a; }
.testimonials-section .section-title { color: #fff; }
.testimonials-section .section-subtitle { color: rgba(255,255,255,0.7); margin-bottom: 56px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 36px; transition: background 0.3s; }
.testimonial-card:hover { background: rgba(255,255,255,0.12); }
.stars { color: #f5c518; font-size: 1rem; margin-bottom: 18px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; color: #fff; flex-shrink: 0; overflow: hidden; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-weight: 700; color: #fff; font-size: 0.92rem; }
.author-loc { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* ===== NEWSLETTER ===== */
.newsletter-section { background: var(--green-pale); padding: 72px 32px; text-align: center; }
.newsletter-section .section-title { margin-bottom: 12px; }
.newsletter-section p { color: var(--text-mid); font-size: 1rem; max-width: 500px; margin: 0 auto 36px; line-height: 1.7; }
.newsletter-form { display: flex; gap: 12px; justify-content: center; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.newsletter-form input { flex: 1; min-width: 220px; padding: 14px 22px; border-radius: 40px; border: 2px solid rgba(45,80,22,0.2); background: #fff; font-family: inherit; font-size: 0.92rem; color: var(--text-dark); outline: none; transition: border 0.2s; }
.newsletter-form input:focus { border-color: var(--green-mid); }
.newsletter-form button { background: var(--green-dark); color: #fff; border: none; padding: 14px 28px; border-radius: 40px; font-family: inherit; font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: all 0.25s; }
.newsletter-form button:hover { background: var(--green-mid); transform: translateY(-2px); }

/* ===== CONTACT ===== */
.contact-section { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.contact-detail { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 28px; }
.cd-icon { width: 48px; height: 48px; background: var(--green-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.cd-label { font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.cd-value { font-size: 1rem; font-weight: 700; color: var(--text-dark); line-height: 1.4; }
.cd-value a { color: var(--green-mid); }
.cd-value a:hover { text-decoration: underline; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 12px; }
.hours-table td { padding: 8px 0; font-size: 0.92rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
.hours-table td:first-child { color: var(--text-mid); }
.hours-table td:last-child { font-weight: 700; text-align: right; color: var(--text-dark); }
.hours-table tr.today td { color: var(--green-mid); }
.map-wrap { border-radius: 20px; overflow: hidden; box-shadow: 0 12px 48px rgba(0,0,0,0.12); height: 460px; background: #e8f0e8; display: flex; flex-direction: column; }
.map-wrap iframe { width: 100%; flex: 1; border: none; }
.map-cta { padding: 18px 24px; background: var(--green-dark); color: #fff; text-align: center; }
.map-cta a { color: #a8d97a; font-weight: 700; font-size: 0.88rem; transition: color 0.2s; }
.map-cta a:hover { color: #fff; }

/* ===== FOOTER ===== */
.site-footer { background: var(--text-dark); color: rgba(255,255,255,0.75); padding: 72px 32px 32px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand .site-name { color: #fff; }
.footer-brand .site-tagline { color: rgba(255,255,255,0.4); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin: 20px 0 28px; max-width: 280px; }
.social-links { display: flex; gap: 12px; }
.social-link { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: background 0.2s, transform 0.2s; }
.social-link:hover { background: var(--green-mid); transform: translateY(-2px); }
.footer-col h4 { font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul li a:hover { color: #a8d97a; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: #a8d97a; }

/* ===== INTERIOR PAGES ===== */
.page-hero { background: var(--green-dark); padding: 64px 32px; text-align: center; }
.page-hero h1 { font-family: 'Playfair Display', serif; color: #fff; font-size: clamp(2rem, 5vw, 3.5rem); }
.page-hero p { color: rgba(255,255,255,0.7); margin-top: 12px; font-size: 1.1rem; }
.page-content { max-width: 900px; margin: 0 auto; padding: 64px 32px; }
.page-content h2, .page-content h3 { font-family: 'Playfair Display', serif; color: var(--text-dark); margin: 32px 0 16px; }
.page-content p { color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; }

/* ===== SINGLE PLANT ===== */
.plant-single { max-width: 1280px; margin: 0 auto; padding: 64px 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.plant-gallery img { border-radius: 16px; width: 100%; object-fit: cover; max-height: 500px; }
.plant-info .plant-category-badge { display: inline-block; background: var(--green-pale); color: var(--green-mid); font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 16px; }
.plant-info h1 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--text-dark); margin-bottom: 16px; }
.plant-info .plant-desc { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 32px; }
.plant-meta { background: var(--green-pale); border-radius: 16px; padding: 24px; margin-bottom: 32px; }
.plant-meta-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.07); font-size: 0.9rem; }
.plant-meta-item:last-child { border-bottom: none; }
.plant-meta-item .label { color: var(--text-light); }
.plant-meta-item .value { font-weight: 700; color: var(--text-dark); }

/* ===== PLANTS ARCHIVE ===== */
.plants-archive { max-width: 1280px; margin: 0 auto; padding: 64px 32px; }
.plants-filter { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn { background: #fff; border: 2px solid rgba(45,80,22,0.2); color: var(--text-mid); padding: 8px 22px; border-radius: 30px; font-family: inherit; font-size: 0.85rem; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { background: var(--green-mid); border-color: var(--green-mid); color: #fff; }
.plants-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.plant-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.07); transition: transform 0.3s, box-shadow 0.3s; }
.plant-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.plant-card-img { height: 200px; overflow: hidden; }
.plant-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.plant-card:hover .plant-card-img img { transform: scale(1.06); }
.plant-card-body { padding: 20px; }
.plant-card-cat { font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green-mid); font-weight: 700; margin-bottom: 6px; }
.plant-card-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.plant-card-excerpt { font-size: 0.82rem; color: var(--text-mid); line-height: 1.5; }

/* ===== 404 ===== */
.error-404 { text-align: center; padding: 120px 32px; }
.error-404 h1 { font-family: 'Playfair Display', serif; font-size: 8rem; color: var(--green-pale); line-height: 1; margin-bottom: 16px; }
.error-404 h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--text-dark); margin-bottom: 16px; }
.error-404 p { color: var(--text-mid); max-width: 400px; margin: 0 auto 32px; }

/* ===== WPCF7 / FORMS ===== */
.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 textarea {
  width: 100%; padding: 12px 18px; border: 2px solid rgba(45,80,22,0.2); border-radius: 10px;
  font-family: inherit; font-size: 0.92rem; color: var(--text-dark); outline: none; transition: border 0.2s;
  background: var(--cream); margin-bottom: 16px;
}
.wpcf7 input[type="text"]:focus, .wpcf7 input[type="email"]:focus, .wpcf7 textarea:focus { border-color: var(--green-mid); }
.wpcf7 input[type="submit"] { background: var(--green-dark); color: #fff; border: none; padding: 14px 32px; border-radius: 40px; font-family: inherit; font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: all 0.25s; }
.wpcf7 input[type="submit"]:hover { background: var(--green-mid); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .info-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .info-item:nth-child(2) { border-right: none; }
  .info-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.1); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 380px; order: -1; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .cat-card.large { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .plants-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .site-section { padding: 64px 20px; }
  .main-navigation { display: none; }
  .menu-toggle { display: flex; }
  .hero-content { padding: 0 24px; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card.large { grid-column: auto; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item.tall { grid-row: auto; }
  .gallery-item.wide { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr; }
  .plants-grid { grid-template-columns: repeat(2, 1fr); }
  .plant-single { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .nav-inner { padding: 0 20px; }
  .info-strip-inner { grid-template-columns: 1fr; }
  .info-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .gallery-grid { grid-template-columns: 1fr; }
  .plants-grid { grid-template-columns: 1fr; }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
