  :root {
    --green-deep: #2D4A2D;
    --green-mid: #4A7C59;
    --green-light: #A8C5A0;
    --green-pale: #EEF5EC;
    --amber: #D4821A;
    --amber-light: #F5D99A;
    --coral: #C4533A;
    --cream: #FAF7F2;
    --text-dark: #1E2D1E;
    --text-mid: #4A5A4A;
    --text-light: #7A8A7A;
    --border: #D8E8D4;
    --white: #FFFFFF;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: 'Lato', sans-serif; background: var(--cream); color: var(--text-dark); font-size: 16px; line-height: 1.7; }

  /* NAV */
  nav { background: var(--green-deep); padding: 0 3rem; display: flex; align-items: center; justify-content: space-between; height: 68px; position: sticky; top: 0; z-index: 100; }
  .nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
  .nav-logo img { height: 48px; width: 48px; border-radius: 50%; object-fit: cover; }
  .nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--amber-light); letter-spacing: 0.02em; }
  .nav-logo-text span { color: var(--green-light); font-style: italic; font-size: 0.78rem; display: block; line-height: 1; }
  .nav-links { display: flex; }
  .nav-links a { display: flex; align-items: center; text-decoration: none; background: none; border: none; color: var(--green-light); font-family: 'Lato', sans-serif; font-size: 0.83rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; padding: 0 1.2rem; height: 68px; transition: color 0.2s, background 0.2s; border-bottom: 3px solid transparent; }
  .nav-links a:hover, .nav-links a.active { color: var(--amber-light); background: rgba(255,255,255,0.05); border-bottom-color: var(--amber); }
  .nav-toggle { display: none; background: none; border: none; color: var(--amber-light); font-size: 1.7rem; line-height: 1; cursor: pointer; padding: 0.25rem 0.5rem; }

  /* PAGES (each URL renders exactly one) */
  .page { display: block; }

  /* HERO */
  .hero { position: relative; height: 90vh; min-height: 560px; overflow: hidden; }
  .hero-bg { position: absolute; inset: 0; background: url('img_full_garden.jpeg') center/cover no-repeat; }
  .hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(30,45,30,0.82) 0%, rgba(30,45,30,0.5) 60%, rgba(30,45,30,0.2) 100%); }
  .hero-content { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 0 5rem; max-width: 680px; }
  .hero-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber-light); margin-bottom: 1rem; }
  .hero-title { font-family: 'Playfair Display', serif; font-size: 3.8rem; line-height: 1.1; color: var(--white); margin-bottom: 1.25rem; }
  .hero-title em { color: var(--amber-light); font-style: italic; }
  .hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.85); max-width: 480px; line-height: 1.8; margin-bottom: 2.5rem; }
  .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary { background: var(--amber); color: var(--white); border: none; padding: 0.85rem 2rem; font-family: 'Lato', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; border-radius: 2px; transition: background 0.2s, transform 0.15s; }
  .btn-primary:hover { background: #B8701A; transform: translateY(-1px); }
  .btn-ghost { background: transparent; color: rgba(255,255,255,0.85); border: 1.5px solid rgba(255,255,255,0.5); padding: 0.85rem 2rem; font-family: 'Lato', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; border-radius: 2px; transition: all 0.2s; }
  .btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: white; }

  /* PHOTO STRIP */
  .photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); height: 220px; overflow: hidden; }
  .photo-strip-item { overflow: hidden; position: relative; }
  .photo-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
  .photo-strip-item:hover img { transform: scale(1.06); }

  /* SECTIONS */
  .section { padding: 5rem 5rem; }
  .section-alt { background: var(--white); }
  .section-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 0.75rem; }
  .section-title { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--green-deep); margin-bottom: 1rem; line-height: 1.2; }
  .section-body { font-size: 1rem; color: var(--text-mid); max-width: 640px; line-height: 1.85; }

  /* HIGHLIGHT CARDS */
  .highlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
  .highlight-card { background: var(--cream); border: 1px solid var(--border); border-radius: 6px; padding: 1.75rem; border-top: 4px solid var(--green-mid); transition: transform 0.2s; }
  .highlight-card:hover { transform: translateY(-3px); }
  .highlight-card.amber-top { border-top-color: var(--amber); }
  .highlight-card.coral-top { border-top-color: var(--coral); }
  .highlight-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--green-mid); line-height: 1; margin-bottom: 0.5rem; }
  .highlight-card.amber-top .highlight-num { color: var(--amber); }
  .highlight-card.coral-top .highlight-num { color: var(--coral); }
  .highlight-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.5rem; }
  .highlight-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }

  /* QUOTE BAND */
  .quote-band { background: var(--green-deep); padding: 4rem 5rem; text-align: center; }
  .quote-text { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--white); font-style: italic; line-height: 1.5; max-width: 760px; margin: 0 auto 1rem; }
  .quote-attr { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber-light); }

  /* PAGE HEADER */
  .page-header { background: var(--green-deep); padding: 4rem 5rem 3rem; position: relative; overflow: hidden; }
  .page-header::after { content: ''; position: absolute; right: -50px; top: -50px; width: 300px; height: 300px; border-radius: 50%; background: rgba(168,197,160,0.08); }
  .page-header-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber-light); margin-bottom: 0.75rem; }
  .page-header-title { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--white); margin-bottom: 1rem; line-height: 1.15; max-width: 600px; }
  .page-header-body { color: var(--green-light); max-width: 560px; line-height: 1.8; }

  /* FILTER BAR */
  .filter-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem 5rem; display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; }
  .filter-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-right: 0.5rem; }
  .filter-btn { background: var(--cream); border: 1px solid var(--border); border-radius: 20px; padding: 0.35rem 0.9rem; font-size: 0.78rem; font-weight: 700; cursor: pointer; color: var(--text-mid); transition: all 0.15s; }
  .filter-btn:hover, .filter-btn.active { background: var(--green-mid); border-color: var(--green-mid); color: var(--white); }

  /* PLANT GRID */
  .plant-grid { padding: 3rem 5rem; display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
  .plant-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
  .plant-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(45,74,45,0.12); }
  .plant-card-img { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative; }
  .plant-tag { position: absolute; top: 10px; right: 10px; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: 20px; }
  .tag-native { background: var(--green-light); color: var(--green-deep); }
  .tag-tree { background: var(--amber-light); color: #7A4800; }
  .tag-perennial { background: #F0D0E8; color: #6B2559; }
  .tag-shrub { background: #D0E8F0; color: #1A5870; }
  .tag-grass { background: #E8F0D0; color: #3A5810; }
  .tag-ground { background: #F0E8D0; color: #6B4A1A; }
  .plant-card-body { padding: 1.25rem; }
  .plant-card-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--green-deep); margin-bottom: 0.2rem; }
  .plant-card-latin { font-size: 0.78rem; color: var(--text-light); font-style: italic; margin-bottom: 0.75rem; }
  .plant-card-desc { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1rem; }
  .plant-season-bar { display: flex; gap: 0.25rem; flex-wrap: wrap; }
  .season-pill { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; padding: 0.2rem 0.55rem; border-radius: 20px; background: var(--green-pale); color: var(--green-mid); }

  /* FOOD GARDEN */
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .photo-tall { border-radius: 8px; overflow: hidden; height: 480px; }
  .photo-tall img { width: 100%; height: 100%; object-fit: cover; }
  .food-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .food-stat { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 1.25rem; text-align: center; }
  .food-stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--green-deep); display: block; line-height: 1; margin-bottom: 0.4rem; }
  .food-stat-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); }

  /* PHOTO MOSAIC */
  .mosaic { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 240px 240px; gap: 6px; }
  .mosaic-item { overflow: hidden; border-radius: 4px; }
  .mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
  .mosaic-item:hover img { transform: scale(1.05); }
  .mosaic-item.tall { grid-row: span 2; }

  /* TIPS */
  .tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
  .tip-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 1.75rem; position: relative; transition: transform 0.2s; }
  .tip-card:hover { transform: translateY(-3px); }
  .tip-number { position: absolute; top: 1.25rem; right: 1.25rem; font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--green-pale); line-height: 1; font-weight: 600; }
  .tip-icon { font-size: 1.75rem; margin-bottom: 1rem; }
  .tip-card-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--green-deep); margin-bottom: 0.5rem; }
  .tip-card-body { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

  /* WHAT WE GROW */
  .what-we-grow { background: var(--green-deep); padding: 4rem 5rem; }
  .grow-title { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--white); margin-bottom: 0.75rem; }
  .grow-intro { color: var(--green-light); margin-bottom: 2.5rem; max-width: 560px; line-height: 1.8; }
  .grow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .grow-category { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 1.5rem; }
  .grow-cat-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
  .grow-cat-icon { font-size: 1.5rem; }
  .grow-cat-title { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber-light); }
  .grow-list { list-style: none; }
  .grow-list li { font-size: 0.9rem; color: var(--green-light); padding: 0.3rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 0.5rem; }
  .grow-list li::before { content: '→'; color: var(--amber-light); font-size: 0.75rem; flex-shrink: 0; }
  .grow-list li:last-child { border-bottom: none; }

  /* ABOUT */
  .about-hero { background: var(--green-deep); padding: 5rem 5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .about-hero-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber-light); margin-bottom: 0.75rem; }
  .about-hero-title { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: var(--white); line-height: 1.1; margin-bottom: 1.5rem; }
  .about-hero-body { color: var(--green-light); line-height: 1.9; font-size: 1rem; }
  .about-hero-body + .about-hero-body { margin-top: 1.15rem; }
  .about-photo-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .about-photo { border-radius: 8px; overflow: hidden; }
  .about-photo.tall { grid-column: span 2; height: 280px; }
  .about-photo.half { height: 200px; }
  .about-photo img { width: 100%; height: 100%; object-fit: cover; }
  /* A lone photo shows at its true (portrait) proportions instead of a wide crop */
  .about-photo-stack .about-photo:only-child { grid-column: 1 / -1; height: auto; max-width: 440px; margin-left: auto; }
  .about-photo-stack .about-photo:only-child img { height: auto; }

  .about-body-section { padding: 5rem 5rem; display: grid; grid-template-columns: 2fr 1fr; gap: 5rem; align-items: start; }
  .about-story-title { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--green-deep); margin-bottom: 1.5rem; }
  .about-story p { font-size: 1rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 1.25rem; }
  .about-pull-quote { background: var(--green-pale); border-left: 4px solid var(--green-mid); border-radius: 0 6px 6px 0; padding: 1.75rem; margin-top: 1rem; }
  .about-pull-quote p { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--green-deep); font-style: italic; line-height: 1.6; }

  .about-sidebar { padding-top: 0.5rem; }
  .sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; margin-bottom: 1.5rem; }
  .sidebar-card img { width: 100%; height: 200px; object-fit: cover; }
  .sidebar-card-body { padding: 1.25rem; }
  .sidebar-card-title { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--green-deep); margin-bottom: 0.4rem; }
  .sidebar-card-text { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }

  .values-section { background: var(--white); padding: 4rem 5rem; }
  .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
  .value-card { padding: 1.5rem; border-left: 3px solid var(--green-mid); }
  .value-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
  .value-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--green-deep); margin-bottom: 0.5rem; }
  .value-body { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

  .visit-box { background: var(--amber); padding: 3rem 5rem; display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
  .visit-text h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--white); margin-bottom: 0.5rem; }
  .visit-text p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
  .visit-details { display: flex; gap: 2rem; flex-wrap: wrap; }
  .visit-detail { text-align: center; }
  .visit-detail-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 0.25rem; }
  .visit-detail-val { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white); }

  footer { background: var(--text-dark); padding: 2.5rem 5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
  .footer-logo { display: flex; align-items: center; gap: 0.6rem; }
  .footer-logo img { height: 36px; width: 36px; border-radius: 50%; object-fit: cover; }
  .footer-logo span { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--amber-light); }
  .footer-copy { font-size: 0.8rem; color: #6A7A6A; }
  .footer-address { font-size: 0.8rem; color: #6A7A6A; text-align: right; }

  /* Plant card image backgrounds by type (server-rendered) */
  .plant-card-img.type-tree { background: #F5D99A; }
  .plant-card-img.type-shrub { background: #D0E8F0; }
  .plant-card-img.type-perennial { background: #F0D0E8; }
  .plant-card-img.type-grass { background: #E8F0D0; }
  .plant-card-img.type-ground { background: #F0E8D0; }
  .plant-card-img { background: #EEF5EC; }
  .plant-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .plant-card.is-hidden { display: none; }
  .photo-credit-line { padding: 0 5rem 3rem; font-size: 0.78rem; color: var(--text-light); }
  .photo-credit-line a { color: var(--green-mid); }

  /* RESPONSIVE */
  @media (max-width: 860px) {
    nav { padding: 0 1.25rem; height: 60px; }
    .nav-logo img { height: 40px; width: 40px; }
    .nav-logo-text { font-size: 1.15rem; }
    .nav-toggle { display: block; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--green-deep); box-shadow: 0 12px 24px rgba(0,0,0,0.25); border-top: 1px solid rgba(255,255,255,0.08); }
    .nav-links.open { display: flex; }
    .nav-links a { height: auto; width: 100%; padding: 1rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.07); border-left: 4px solid transparent; }
    .nav-links a:hover, .nav-links a.active { border-bottom-color: rgba(255,255,255,0.07); border-left-color: var(--amber); }
    .hero { height: auto; min-height: 0; padding: 4rem 0; }
    .hero-content { padding: 0 1.5rem; }
    .hero-title { font-size: 2.4rem; }
    .photo-strip { grid-template-columns: 1fr 1fr; height: auto; }
    .photo-strip-item { height: 160px; }
    .section, .quote-band, .page-header, .what-we-grow, .about-hero, .about-body-section, .values-section, .visit-box, footer { padding-left: 1.5rem; padding-right: 1.5rem; }
    .filter-bar, .plant-grid { padding-left: 1.5rem; padding-right: 1.5rem; }
    .two-col, .about-hero, .about-body-section { grid-template-columns: 1fr; gap: 2rem; }
    .highlight-grid, .tips-grid, .grow-grid, .values-grid { grid-template-columns: 1fr; }
    .mosaic { grid-template-columns: 1fr 1fr; }
    .photo-tall { height: 320px; }
    footer, .visit-box { flex-direction: column; align-items: flex-start; }
    .footer-address { text-align: left; }
  }

  /* CLICK-TO-ZOOM LIGHTBOX (for the hover-zoom photos) */
  .photo-strip-item img, .mosaic-item img { cursor: zoom-in; }
  .lightbox { position: fixed; inset: 0; background: rgba(20,30,20,0.93); display: none; align-items: center; justify-content: center; z-index: 1000; padding: 2.5rem; cursor: zoom-out; opacity: 0; transition: opacity 0.2s; }
  .lightbox.open { display: flex; opacity: 1; }
  .lightbox img { max-width: 94vw; max-height: 90vh; border-radius: 6px; box-shadow: 0 24px 70px rgba(0,0,0,0.55); cursor: default; }
  .lightbox-close { position: absolute; top: 1rem; right: 1.5rem; background: none; border: none; color: #fff; font-size: 2.75rem; line-height: 1; cursor: pointer; opacity: 0.75; transition: opacity 0.15s; }
  .lightbox-close:hover { opacity: 1; }
  .lightbox-caption { position: absolute; bottom: 1.25rem; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.85); font-size: 0.85rem; letter-spacing: 0.02em; padding: 0 2.5rem; pointer-events: none; }

  /* PLANT CREDITS TABLE */
  .credits-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
  .credits-table th { text-align: left; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); padding: 0.6rem 0.75rem; border-bottom: 2px solid var(--border); }
  .credits-table td { padding: 0.7rem 0.75rem; border-bottom: 1px solid var(--border); color: var(--text-mid); vertical-align: top; }
  .credits-table tr:hover td { background: var(--green-pale); }
  .credits-table strong { color: var(--green-deep); }
  .credits-latin { font-style: italic; font-size: 0.78rem; color: var(--text-light); }
  .credits-table a { color: var(--green-mid); }
  @media (max-width: 860px) { .credits-table { font-size: 0.82rem; } .credits-table th, .credits-table td { padding: 0.55rem 0.4rem; } }

  /* Auto-linked "Evanston Garden Walk" — match surrounding text, just underline */
  .gw-link { color: inherit; text-decoration: underline; text-underline-offset: 0.15em; text-decoration-thickness: 1px; transition: opacity 0.15s; }
  .gw-link:hover { opacity: 0.75; }

  /* FOOD GARDEN CONSULT — CTA + modal form */
  .consult-cta { margin-top: 1.75rem; display: inline-block; text-decoration: none; text-align: left; }
  .consult-modal { position: fixed; inset: 0; background: rgba(20,30,20,0.6); display: none; align-items: center; justify-content: center; z-index: 1000; padding: 1.5rem; }
  .consult-modal.open { display: flex; }
  .consult-card { background: var(--white); border-radius: 10px; max-width: 460px; width: 100%; padding: 2rem; position: relative; box-shadow: 0 24px 60px rgba(0,0,0,0.3); max-height: 90vh; overflow: auto; }
  .consult-close { position: absolute; top: 0.6rem; right: 1rem; background: none; border: none; font-size: 1.9rem; line-height: 1; color: var(--text-light); cursor: pointer; }
  .consult-close:hover { color: var(--text-dark); }
  .consult-heading { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--green-deep); margin-bottom: 0.5rem; padding-right: 1.5rem; }
  .consult-intro { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 1.25rem; line-height: 1.6; }
  .consult-form label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.02em; color: var(--green-deep); margin-bottom: 1rem; text-transform: none; }
  .consult-form label span { font-weight: 400; color: var(--text-light); }
  .consult-form input, .consult-form textarea { width: 100%; margin-top: 0.35rem; padding: 0.6rem 0.7rem; border: 1px solid var(--border); border-radius: 6px; font-family: 'Lato', sans-serif; font-size: 0.95rem; color: var(--text-dark); background: var(--cream); }
  .consult-form textarea { resize: vertical; }
  .consult-form input:focus, .consult-form textarea:focus { outline: none; border-color: var(--green-mid); box-shadow: 0 0 0 2px rgba(74,124,89,0.15); }
  .consult-form .btn-primary { width: 100%; margin-top: 0.25rem; cursor: pointer; }
  .consult-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
  .consult-thanks { font-size: 1.05rem; color: var(--green-deep); padding: 1.5rem 0 0.5rem; line-height: 1.5; }
