/* === Westside Greenhouse — Arthur, IL === */

:root {
  --sage: #5a7a5a;
  --sage-dark: #3d5c3d;
  --sage-deep: #2c4a2c;
  --forest: #1e3a1e;
  --leaf: #6b9e3e;
  --leaf-light: #7db44f;
  --terracotta: #c67a4a;
  --terracotta-light: #d98e60;
  --cream: #faf8f4;
  --cream-warm: #f3efe7;
  --linen: #eae4d8;
  --soil: #4a3728;
  --soil-light: #5e4838;
  --petal: #e8a0b4;
  --petal-light: #f0c0d0;
  --sun: #e8c84a;
  --white: #ffffff;
  --gray-100: #f5f5f4;
  --gray-200: #e7e5e4;
  --gray-400: #a8a29e;
  --gray-600: #57534e;
  --gray-800: #292524;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-warm: 0 4px 20px rgba(90,122,90,0.15);
}

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

body {
  font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
  background: var(--cream);
  color: var(--gray-800);
  min-height: 100vh;
  line-height: 1.65;
}

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

/* ══════════════════════════════
   NAVIGATION
   ══════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,248,244,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(90,122,90,0.1);
  transition: all 0.3s;
}

.nav.scrolled {
  background: rgba(250,248,244,0.96);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--forest);
}

.nav-brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--sage) 0%, var(--leaf) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(90,122,90,0.25);
}

.nav-brand-text {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--forest);
}

.nav-brand-sub {
  font-weight: 400;
  color: var(--sage);
}

.nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}

.nav-link:hover, .nav-link.active {
  color: var(--sage-dark);
  background: rgba(90,122,90,0.08);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: var(--sage);
  padding: 9px 20px;
  border-radius: 50px;
  text-decoration: none;
  margin-left: 10px;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(90,122,90,0.25);
}

.nav-cta:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(90,122,90,0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ══════════════════════════════
   HERO
   ══════════════════════════════ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=1600&q=80') center/cover no-repeat;
  padding-top: 72px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(30,58,30,0.7) 0%, rgba(90,122,90,0.35) 60%, rgba(250,248,244,0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 80px 24px 80px 48px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sun);
  background: rgba(232,200,74,0.12);
  border: 1px solid rgba(232,200,74,0.25);
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 22px;
}

.hero-title em {
  font-style: normal;
  color: var(--petal-light);
}

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-season {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  max-width: fit-content;
}

.hero-season-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--leaf-light);
  box-shadow: 0 0 8px rgba(125,180,79,0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-season-text {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

/* ══════════════════════════════
   BUTTONS
   ══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-primary {
  background: var(--white);
  color: var(--forest);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-sage {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(90,122,90,0.3);
}

.btn-sage:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(90,122,90,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline {
  background: transparent;
  color: var(--sage-dark);
  border: 1.5px solid var(--sage);
}

.btn-outline:hover {
  background: var(--sage);
  color: var(--white);
}

.btn-full { width: 100%; }

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ══════════════════════════════
   SEASON BANNER
   ══════════════════════════════ */
.season-bar {
  background: var(--forest);
  padding: 16px 0;
}

.season-items {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.season-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
}

.season-item svg {
  color: var(--leaf-light);
  flex-shrink: 0;
}

/* ══════════════════════════════
   SECTIONS
   ══════════════════════════════ */
.section {
  padding: 96px 0;
}

.section-white {
  background: var(--white);
}

.section-cream {
  background: var(--cream);
}

.section-warm {
  background: var(--cream-warm);
}

.section-green {
  background: linear-gradient(150deg, var(--forest) 0%, var(--sage-deep) 100%);
  color: var(--white);
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--sage);
  margin-bottom: 10px;
}

.section-label.center,
.section-heading.center,
.section-desc.center {
  text-align: center;
}

.section-heading {
  font-size: 40px;
  font-weight: 800;
  color: var(--forest);
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  line-height: 1.12;
}

.section-heading em {
  font-style: normal;
  color: var(--terracotta);
}

.section-desc {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.75;
}

.section-desc.center {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════
   PRODUCT CARDS
   ══════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-warm);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.product-card-body {
  padding: 24px;
}

.product-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 8px;
}

.product-card-body p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

.product-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 12px;
}

.tag-spring { background: #e8f5e9; color: #2e7d32; }
.tag-popular { background: #fff3e0; color: #e65100; }
.tag-seasonal { background: #fce4ec; color: #c62828; }

/* ══════════════════════════════
   FEATURE CARDS (Why Visit)
   ══════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.feature-card:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-warm);
  transform: translateY(-4px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  background: linear-gradient(135deg, rgba(90,122,90,0.08) 0%, rgba(107,158,62,0.1) 100%);
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ══════════════════════════════
   GALLERY
   ══════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:first-child img {
  height: 100%;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
  padding: 24px 14px 10px;
  font-size: 13px;
  font-weight: 600;
}

/* ══════════════════════════════
   SEASON TIMELINE
   ══════════════════════════════ */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.timeline-month {
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
}

.timeline-month:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--leaf-light);
}

.timeline-month h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.timeline-month p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.timeline-month .month-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

/* ══════════════════════════════
   SPLIT
   ══════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

/* ══════════════════════════════
   INFO CARDS (visit info)
   ══════════════════════════════ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
}

.info-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage) 0%, var(--leaf) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--white);
}

.info-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 8px;
}

.info-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ══════════════════════════════
   CTA
   ══════════════════════════════ */
.section-cta {
  background: linear-gradient(135deg, var(--sage-deep) 0%, var(--forest) 100%);
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(107,158,62,0.15), transparent 70%);
  border-radius: 50%;
}

/* ══════════════════════════════
   CONTACT FORM
   ══════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(90,122,90,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
}

.contact-info-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 2px;
}

.contact-info-item p {
  font-size: 14px;
  color: var(--gray-600);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 16px;
  font-size: 15px;
  font-family: inherit;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  outline: none;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(90,122,90,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-status {
  font-size: 14px;
  margin-top: 12px;
  text-align: center;
}

/* ══════════════════════════════
   MAP / DIRECTIONS
   ══════════════════════════════ */
.map-placeholder {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  background: var(--cream-warm);
  border: 2px dashed var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--gray-600);
  margin-top: 32px;
}

.map-placeholder svg {
  color: var(--sage);
}

/* ══════════════════════════════
   FOOTER
   ══════════════════════════════ */
.footer {
  background: var(--forest);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 36px;
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--sage) 0%, var(--leaf) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.footer-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 28px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--leaf-light);
}

.footer-hours {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 6px;
}

.footer-concept {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

.footer-concept a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
}

.footer-concept a:hover {
  color: var(--leaf-light);
}

/* ══════════════════════════════
   PAGE HEADER (sub-pages)
   ══════════════════════════════ */
.page-header {
  background: linear-gradient(150deg, var(--forest) 0%, var(--sage-deep) 100%);
  color: #fff;
  padding: 130px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(107,158,62,0.12), transparent 70%);
}

.page-title {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.page-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--gray-200);
    flex-direction: column;
    padding: 12px 24px 20px;
    gap: 4px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-content {
    padding: 60px 24px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .products-grid,
  .features-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item:first-child img {
    height: 220px;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split-image {
    order: -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section-heading {
    font-size: 32px;
  }

  .section {
    padding: 64px 0;
  }

  .season-items {
    gap: 16px;
  }

  .page-title {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:first-child {
    grid-column: span 1;
  }
}
