@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@500;600;700;800&family=Red+Hat+Text:wght@400;500;600;700&display=swap');

:root {
  --color-bg: #f7f5f0;
  --color-bg-alt: #eeeae0;
  --color-bg-dark: #1a1c14;
  --color-bg-dark-2: #242718;
  --color-surface: #faf8f3;
  --color-surface-raised: #ffffff;
  --color-surface-inset: #ede9df;
  --color-primary: #2d4a1e;
  --color-primary-light: #3d6428;
  --color-secondary: #5c7a3e;
  --color-accent: #b5792a;
  --color-accent-light: #d4964d;
  --color-text-primary: #1a1c14;
  --color-text-secondary: #3d3f30;
  --color-text-muted: #6b6d5a;
  --color-text-light: #f7f5f0;
  --color-border: #d8d3c5;
  --color-border-light: #e8e4d8;

  --shadow-xs: 0 1px 2px rgba(26,28,20,0.06), 0 1px 1px rgba(26,28,20,0.04);
  --shadow-sm: 0 2px 4px rgba(26,28,20,0.08), 0 1px 2px rgba(26,28,20,0.05);
  --shadow-md: 0 4px 12px rgba(26,28,20,0.10), 0 2px 4px rgba(26,28,20,0.06);
  --shadow-lg: 0 8px 24px rgba(26,28,20,0.12), 0 4px 8px rgba(26,28,20,0.07);
  --shadow-xl: 0 16px 48px rgba(26,28,20,0.14), 0 6px 12px rgba(26,28,20,0.08);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 9rem;

  --nav-height: 72px;
  --font-display: 'Red Hat Display', sans-serif;
  --font-body: 'Red Hat Text', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color 0.25s ease, opacity 0.25s ease; }

ul { list-style: none; }

address { font-style: normal; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.space-section { padding: var(--space-xl) 0; }

.surface { background: var(--color-surface); }
.surface-raised {
  background: var(--color-surface-raised);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
}
.surface-inset {
  background: var(--color-surface-inset);
  border-radius: var(--radius-md);
}

.text-display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}

.text-body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.text-caption {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.text-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.action-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-primary);
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  box-shadow: var(--shadow-sm), 0 0 0 0 rgba(45,74,30,0);
  text-decoration: none;

  &:hover {
    background: var(--color-primary-light);
    box-shadow: var(--shadow-md), 0 0 0 3px rgba(45,74,30,0.15);
    transform: translateY(-1px);
  }

  &:active { transform: translateY(0); }
}

.action-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;

  &:hover {
    background: var(--color-primary);
    color: var(--color-text-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
  }

  &:active { transform: translateY(0); }
}

.section-eyebrow {
  display: block;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-lg);

  & .text-display {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
  }

  & .text-body { font-size: 1.05rem; color: var(--color-text-muted); }
}


.nav-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-light);
  transition: box-shadow 0.3s ease;
  height: var(--nav-height);

  & .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  & .nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }

  & .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;

    & .nav-link {
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--color-text-secondary);
      transition: color 0.2s ease;
      position: relative;
      padding-bottom: 2px;

      &::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--color-accent);
        transition: width 0.25s ease;
        border-radius: 2px;
      }

      &:hover { color: var(--color-primary); &::after { width: 100%; } }
      &.active { color: var(--color-primary); font-weight: 600; &::after { width: 100%; } }
    }
  }

  & .nav-cta { flex-shrink: 0; font-size: 0.85rem; padding: 0.6rem 1.4rem; }

  & .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;

    & span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--color-text-primary);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    &:hover { background: var(--color-surface-inset); }
  }
}


.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,28,20,0.55);
  z-index: 1099;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(2px);

  &.is-active { opacity: 1; pointer-events: all; }
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 90vw);
  height: 100vh;
  background: var(--color-surface-raised);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  box-shadow: var(--shadow-xl);

  &.is-active { transform: translateX(0); }

  & .mobile-menu-close {
    align-self: flex-end;
    background: var(--color-surface-inset);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--color-text-primary);
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;

    &:hover { background: var(--color-border); }
  }

  & .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;

    & li a {
      display: block;
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--color-text-primary);
      padding: 1rem 0;
      border-bottom: 1px solid var(--color-border-light);
      transition: color 0.2s ease, padding-left 0.2s ease;

      &:hover { color: var(--color-primary); padding-left: 0.5rem; }
    }
  }

  & .mobile-cta { margin-top: 2rem; justify-content: center; }
}


.hero {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-xl);
  background: var(--color-bg);
  min-height: 100vh;
  display: flex;
  align-items: center;

  & .container { display: none; }
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md) var(--space-xl);
}

.hero-content {
  max-width: 560px;

  & .hero-eyebrow {
    color: var(--color-accent);
    display: block;
    margin-bottom: 1.25rem;
  }

  & .hero-heading {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
  }

  & .hero-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 420px;
    margin-bottom: 2.5rem;
  }

  & .hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
}

.hero-images {
  position: relative;
  height: 560px;

  & .hero-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 82%;
    height: 78%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transform: rotate(1.5deg);
    box-shadow: var(--shadow-xl), 0 2px 4px rgba(26,28,20,0.04);
    z-index: 2;

    & img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  & .hero-img-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 58%;
    height: 50%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transform: rotate(-2deg);
    box-shadow: var(--shadow-lg);
    z-index: 3;
    border: 4px solid var(--color-surface-raised);

    & img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
}


.intro-band {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);

  & .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
  }

  & .intro-text {
    & h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1.25rem; }
    & .text-body { margin-bottom: 1rem; font-size: 1.05rem; }
  }

  & .intro-image {
    & img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
    }
  }
}


.features-section {
  background: var(--color-bg-alt);

  & .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  & .feature-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    transition: transform 0.25s ease, box-shadow 0.25s ease;

    &:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    & .feature-icon {
      width: 48px;
      height: 48px;
      background: var(--color-primary);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-text-light);
      font-size: 1.2rem;
      margin-bottom: 1.25rem;
      box-shadow: var(--shadow-sm);
    }

    & .feature-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--color-text-primary);
      margin-bottom: 0.75rem;
    }

    & .feature-link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      color: var(--color-accent);
      font-weight: 600;
      margin-top: 1rem;
      transition: gap 0.2s ease;

      &:hover { gap: 0.7rem; }
    }
  }
}


.workflow-section {
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);

  & .workflow-intro {
    color: var(--color-text-muted);
    font-size: 1.05rem;
  }

  & .workflow-steps {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
  }

  & .workflow-step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 1.5rem;
    align-items: start;
    position: relative;

    &:not(:last-child) { margin-bottom: 0; }

    & .step-number {
      font-family: var(--font-display);
      font-size: 0.75rem;
      font-weight: 800;
      color: var(--color-accent);
      background: var(--color-surface-raised);
      border: 2px solid var(--color-accent);
      border-radius: 50%;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      letter-spacing: 0.04em;
      box-shadow: var(--shadow-xs);
      position: relative;
      z-index: 2;
      flex-shrink: 0;
      margin-top: 0.25rem;
    }

    & .step-content {
      padding: 1.5rem;
      margin-bottom: 0;
      border-left: 3px solid var(--color-border-light);
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
      margin-bottom: 1rem;

      & .step-title {
        font-size: 1rem;
        font-weight: 700;
        color: var(--color-text-primary);
        margin-bottom: 0.5rem;
      }

      & .step-desc { font-size: 0.95rem; color: var(--color-text-muted); }
    }

    & .step-connector {
      display: none;
    }
  }
}


.image-break-section {
  position: relative;
  height: 480px;
  overflow: hidden;

  & .image-break-inner {
    position: relative;
    height: 100%;
    overflow: hidden;
  }

  & .image-break-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  & .image-break-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,28,20,0.72) 0%, rgba(45,74,30,0.55) 100%);
  }

  & .image-break-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
  }

  & .pull-quote {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    font-weight: 600;
    color: var(--color-text-light);
    line-height: 1.4;
    max-width: 720px;
    text-align: center;
    border-left: none;
    quotes: "\201E" "\201D";

    &::before { content: open-quote; color: var(--color-accent-light); }
    &::after { content: close-quote; color: var(--color-accent-light); }
  }
}


.topics-section {
  background: var(--color-bg);

  & .topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  & .topic-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-surface-raised);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    transition: transform 0.25s ease, box-shadow 0.25s ease;

    &:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    & .topic-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    & .topic-body {
      padding: 1.5rem;
    }

    & .topic-tag {
      color: var(--color-accent);
      display: block;
      margin-bottom: 0.5rem;
    }

    & .topic-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--color-text-primary);
      margin-bottom: 0.75rem;
    }

    & .topic-text { font-size: 0.93rem; color: var(--color-text-muted); }
  }
}


.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 60%, var(--color-secondary) 100%);

  & .cta-banner-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--space-md);

    & .cta-eyebrow {
      color: rgba(247,245,240,0.7);
      display: block;
      margin-bottom: 1rem;
    }

    & .cta-heading {
      font-size: clamp(2.2rem, 5vw, 4rem);
      color: var(--color-text-light);
      margin-bottom: 1.25rem;
    }

    & .cta-desc {
      color: rgba(247,245,240,0.82);
      font-size: 1.05rem;
      margin-bottom: 2rem;
    }

    & .cta-btn {
      background: var(--color-accent);
      border-color: var(--color-accent);

      &:hover {
        background: var(--color-accent-light);
        border-color: var(--color-accent-light);
      }
    }
  }
}


.about-strip {
  background: var(--color-bg-alt);

  & .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
  }

  & .about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-xl);
  }

  & .about-content {
    & h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1.25rem; }
    & .text-body { margin-bottom: 1rem; font-size: 1.02rem; }
  }

  & .about-highlights {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  & .about-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-text-secondary);

    & i {
      color: var(--color-accent);
      width: 20px;
      text-align: center;
      flex-shrink: 0;
    }
  }
}


.page-hero {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);

  & .page-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
  }

  & .page-hero-content {
    & .page-title {
      font-size: clamp(2.8rem, 6vw, 5rem);
      margin-bottom: 1.25rem;
    }

    & .page-hero-desc {
      font-size: 1.1rem;
      color: var(--color-text-muted);
      max-width: 480px;
    }
  }

  & .page-hero-image {
    & img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: var(--radius-xl);
    }
  }
}

.page-hero--contact .page-hero-inner,
.page-hero--plants .page-hero-inner {
  grid-template-columns: 1fr;
}


.content-narrow {
  max-width: 780px;
  margin: 0 auto;
}

.content-block {
  margin-bottom: var(--space-md);

  & .content-h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
  }

  & .text-body { margin-bottom: 1rem; }
}

.content-pull {
  margin: var(--space-md) 0;
  border-left: 4px solid var(--color-accent);
  padding: 1.5rem 2rem;
  background: var(--color-surface-inset);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;

  & .content-pullquote {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.5;
    font-style: italic;
  }
}

.content-values {
  margin-top: var(--space-md);

  & .content-h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 1.5rem;
  }

  & .values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  & .value-item {
    padding: 1.5rem;
    border-left: 3px solid var(--color-accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;

    & i {
      font-size: 1.4rem;
      color: var(--color-accent);
      margin-bottom: 0.75rem;
      display: block;
    }

    & h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--color-text-primary);
      margin-bottom: 0.5rem;
    }

    & .text-body { font-size: 0.93rem; }
  }
}


.schedule-intro {
  background: var(--color-bg);

  & .schedule-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
  }

  & .schedule-intro-text {
    & h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1.25rem; }
    & .text-body { margin-bottom: 1rem; }
  }

  & .schedule-visual {
    padding: 2rem;

    & .schedule-diagram {
      & .diagram-title {
        color: var(--color-accent);
        display: block;
        margin-bottom: 1.25rem;
      }

      & .diagram-week {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
        margin-bottom: 1rem;
      }

      & .diagram-day {
        background: var(--color-surface-raised);
        border-radius: var(--radius-sm);
        padding: 0.75rem 0.5rem;
        text-align: center;
        border: 1px solid var(--color-border-light);
        box-shadow: var(--shadow-xs);

        & .day-label {
          display: block;
          color: var(--color-primary);
          margin-bottom: 0.4rem;
          font-weight: 700;
        }

        & .day-task { color: var(--color-text-muted); }
      }

      & .diagram-note { color: var(--color-text-muted); }
    }
  }
}


.seasonal-section {
  background: var(--color-bg-alt);

  & .seasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }

  & .season-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    transition: transform 0.25s ease, box-shadow 0.25s ease;

    &:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }
  }

  & .season-header {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-light);

    & i { font-size: 1.1rem; }
    & h3 { font-weight: 700; font-size: 0.95rem; }
  }

  & .season-spring { background: linear-gradient(135deg, #3d6428, #5c7a3e); }
  & .season-summer { background: linear-gradient(135deg, #b5792a, #d4964d); }
  & .season-autumn { background: linear-gradient(135deg, #7a4e2d, #a06638); }
  & .season-winter { background: linear-gradient(135deg, #2d4a6e, #3d6490); }

  & .season-tasks {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;

    & li {
      font-size: 0.88rem;
      color: var(--color-text-muted);
      padding-left: 1rem;
      position: relative;

      &::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0.55em;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--color-accent);
      }
    }
  }
}


.tasks-section {
  background: var(--color-bg);

  & .tasks-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 860px;
    margin: 0 auto;
  }

  & .task-row {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 1.25rem;
    align-items: center;
    background: var(--color-surface-raised);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-xs);
    transition: box-shadow 0.25s ease, transform 0.25s ease;

    &:hover {
      box-shadow: var(--shadow-md);
      transform: translateX(4px);
    }
  }

  & .task-icon-wrap {
    width: 48px;
    height: 48px;
    background: var(--color-surface-inset);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  & .task-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.35rem;
  }

  & .task-desc { font-size: 0.93rem; color: var(--color-text-muted); }

  & .task-frequency {
    white-space: nowrap;
    padding: 0.4rem 0.9rem;
    border-radius: 99px;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    flex-shrink: 0;
    font-size: 0.72rem;
  }
}


.plants-intro {
  background: var(--color-bg);

  & h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1.25rem; }
  & .text-body { margin-bottom: 1rem; }
}

.plant-categories {
  background: var(--color-bg-alt);

  & .plant-category {
    margin-bottom: var(--space-lg);

    &:last-child { margin-bottom: 0; }
  }

  & .plant-cat-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-border);

    & i { font-size: 1.4rem; color: var(--color-accent); }

    & .plant-cat-title {
      font-size: clamp(1.4rem, 2.5vw, 2rem);
    }
  }

  & .plant-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
  }

  & .plant-card {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;

    &:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }
  }

  & .plant-difficulty {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    border-radius: 99px;
    margin-bottom: 0.75rem;
    font-size: 0.68rem;
  }

  & .plant-easy { background: #e8f4e8; color: #2d6a2d; }
  & .plant-medium { background: #fef3e2; color: #7a4e00; }

  & .plant-name {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.6rem;
  }

  & .plant-info { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 1rem; }

  & .plant-meta {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    color: var(--color-text-muted);
    font-size: 0.75rem;

    & span { display: flex; align-items: center; gap: 0.4rem; }
    & i { color: var(--color-accent); width: 14px; }
  }
}

.companion-section {
  background: var(--color-bg);
  & h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1.25rem; }
  & .text-body { margin-bottom: 1rem; }
}


.page-hero--contact {
  & .contact-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;

    & .page-title { font-size: clamp(2.8rem, 6vw, 5rem); margin-bottom: 1.25rem; }
    & .page-hero-desc { font-size: 1.05rem; color: var(--color-text-muted); }
  }

  & .contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  & .contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-light);
    transition: box-shadow 0.25s ease;

    &:hover { box-shadow: var(--shadow-md); }

    & i {
      font-size: 1.1rem;
      color: var(--color-accent);
      width: 24px;
      text-align: center;
      margin-top: 2px;
      flex-shrink: 0;
    }

    & .text-caption { color: var(--color-text-muted); display: block; margin-bottom: 0.2rem; }
    & .text-body { font-size: 0.95rem; margin: 0; }
    & a { color: var(--color-primary); &:hover { color: var(--color-accent); } }
  }
}

.contact-main {
  background: var(--color-bg);

  & .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
  }
}

.contact-form-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 1.5rem;
}

.chat-form-container {
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.chat-form {
  & .chat-exchange {
    margin-bottom: 1.5rem;
  }

  & .chat-bubble {
    max-width: 82%;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;

    & .text-body { margin: 0; font-size: 0.95rem; }
  }

  & .chat-bubble--company {
    background: var(--color-primary);
    color: var(--color-text-light);
    border-radius: var(--radius-md) var(--radius-md) var(--radius-md) 4px;
    align-self: flex-start;

    & .text-body { color: rgba(247,245,240,0.92); }
  }

  & .chat-bubble--user {
    background: var(--color-surface-raised);
    border: 1px solid var(--color-border);
    border-radius: 4px var(--radius-md) var(--radius-md) var(--radius-md);
    margin-left: auto;
    max-width: 95%;
    padding: 0;
    overflow: hidden;
  }

  & .chat-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-primary);
    padding: 1rem 1.25rem;
    resize: none;
    transition: background 0.2s ease;

    &::placeholder { color: var(--color-text-muted); }
    &:focus { background: rgba(45,74,30,0.04); }
  }

  & .chat-textarea { min-height: 100px; }

  & .chat-exchange--privacy {
    & .chat-privacy {
      margin-top: 0.5rem;
      & .privacy-label {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        font-size: 0.88rem;
        color: var(--color-text-muted);
        cursor: pointer;

        & a { color: var(--color-primary); text-decoration: underline; &:hover { color: var(--color-accent); } }
      }

      & .privacy-checkbox {
        width: 18px;
        height: 18px;
        min-width: 18px;
        margin-top: 2px;
        accent-color: var(--color-primary);
        cursor: pointer;
      }
    }
  }

  & .chat-submit-wrap {
    text-align: right;
    margin-top: 0.5rem;
  }

  & .chat-submit {
    gap: 0.6rem;
    font-size: 0.9rem;
  }
}

.contact-faq-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 1.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  transition: box-shadow 0.25s ease;

  &:hover { box-shadow: var(--shadow-md); }

  & .faq-q {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.6rem;
  }

  & .faq-a { font-size: 0.9rem; color: var(--color-text-muted); }
}

.map-section {
  background: var(--color-bg-alt);
  padding-bottom: var(--space-xl);

  & .map-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    padding: var(--space-md) 0 1.5rem;
  }

  & .map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border-light);
  }
}


.legal-main {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-2xl);
  background: var(--color-bg);
}

.legal-container { max-width: 820px; }

.legal-header {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-border);

  & .legal-title { font-size: clamp(2rem, 5vw, 3.5rem); margin: 0.5rem 0 0.75rem; }
  & .legal-date { color: var(--color-text-muted); }
}

.legal-body {
  & .legal-intro {
    margin-bottom: var(--space-md);
    padding: 1.5rem;
    background: var(--color-surface-inset);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
  }

  & .legal-section {
    margin-bottom: var(--space-md);

    & .legal-h2 {
      font-size: clamp(1.2rem, 2.5vw, 1.7rem);
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid var(--color-border-light);
    }

    & .text-body { margin-bottom: 0.75rem; font-size: 0.97rem; }
  }
}

.legal-body--terms {
  & .legal-lead {
    margin-bottom: var(--space-md);
    font-size: 1.05rem;
    color: var(--color-text-secondary);
  }

  & .terms-block {
    margin-bottom: 2rem;

    & .terms-h {
      font-size: clamp(1.2rem, 2.5vw, 1.7rem);
      margin-bottom: 1rem;
      color: var(--color-primary);
    }

    & .text-body { margin-bottom: 0.75rem; font-size: 0.97rem; }
  }
}

.legal-body--cookies {
  & .cookies-what {
    padding: 1.75rem;
    margin-bottom: var(--space-md);

    & .cookies-h {
      font-size: clamp(1.2rem, 2.5vw, 1.7rem);
      margin-bottom: 1rem;
    }

    & .text-body { margin-bottom: 0.75rem; font-size: 0.97rem; }
  }

  & .cookies-h {
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    margin: var(--space-md) 0 1rem;
    padding-top: var(--space-sm);
  }

  & .text-body { margin-bottom: 0.75rem; font-size: 0.97rem; }

  & .cookies-intro { font-size: 1.05rem; margin-top: 0.75rem; }
}

.cookie-category-card {
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);

  & .cookie-cat-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  & .cookie-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 99px;
    font-size: 0.68rem;
  }

  & .cookie-badge--required { background: #e8f4e8; color: #2d6a2d; }
  & .cookie-badge--optional { background: #fef3e2; color: #7a4e00; }

  & .cookie-cat-title { font-weight: 700; }

  & .text-body { margin-bottom: 0.75rem; font-size: 0.97rem; }
}

.cookies-list {
  list-style: none;
  padding: 0.75rem 0;
  margin-bottom: 0.75rem;

  & li {
    padding: 0.3rem 0 0.3rem 1.25rem;
    position: relative;
    font-size: 0.92rem;
    color: var(--color-text-muted);

    &::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.65em;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--color-accent);
    }
  }
}


.site-footer {
  background: var(--color-bg-dark);

  & .footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-lg);
    padding-top: var(--space-xl);
    padding-bottom: var(--space-lg);
  }

  & .footer-brand {
    & img { filter: brightness(10); margin-bottom: 1rem; }

    & .footer-tagline {
      color: rgba(247,245,240,0.6);
      font-size: 0.9rem;
      margin-bottom: 1.25rem;
    }

    & .footer-address {
      color: rgba(247,245,240,0.55);
      font-size: 0.82rem;
      line-height: 1.8;

      & a {
        color: rgba(247,245,240,0.55);
        &:hover { color: var(--color-accent-light); }
      }
    }
  }

  & .footer-col-title {
    color: rgba(247,245,240,0.4);
    margin-bottom: 1.25rem;
    letter-spacing: 0.12em;
  }

  & .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;

    & a {
      color: rgba(247,245,240,0.65);
      font-size: 0.88rem;
      transition: color 0.2s ease;

      &:hover { color: var(--color-accent-light); }
    }
  }

  & .footer-bottom {
    border-top: 1px solid rgba(247,245,240,0.08);
    padding: 1.5rem 0;

    & .footer-copy {
      color: rgba(247,245,240,0.35);
      letter-spacing: 0.04em;
    }
  }
}


.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: var(--color-text-light);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 500;

  &.is-visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  &:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
  }
}


.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--color-bg-dark-2);
  border-top: 1px solid rgba(247,245,240,0.1);
  padding: 1rem var(--space-md);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  &.is-visible { transform: translateY(0); }

  & .cookie-bar-main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  & .cookie-bar-text {
    flex: 1;
    min-width: 240px;
    font-size: 0.85rem;
    color: rgba(247,245,240,0.7);
    line-height: 1.5;

    & a { color: var(--color-accent-light); text-decoration: underline; }
  }

  & .cookie-bar-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    flex-wrap: wrap;
  }

  & .cookie-btn {
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: var(--font-body);
  }

  & .cookie-btn-accept {
    background: var(--color-accent);
    color: var(--color-text-light);
    &:hover { background: var(--color-accent-light); }
  }

  & .cookie-btn-reject {
    background: transparent;
    color: rgba(247,245,240,0.6);
    border: 1px solid rgba(247,245,240,0.2);
    &:hover { background: rgba(247,245,240,0.08); color: rgba(247,245,240,0.85); }
  }

  & .cookie-btn-customize {
    background: transparent;
    color: rgba(247,245,240,0.6);
    border: 1px solid rgba(247,245,240,0.2);
    &:hover { background: rgba(247,245,240,0.08); color: rgba(247,245,240,0.85); }
  }

  & .cookie-customize-panel {
    max-width: 1200px;
    margin: 1rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(247,245,240,0.08);
    display: none;

    &.is-open { display: block; }

    & .cookie-categories {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    & .cookie-cat-toggle {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.82rem;
      color: rgba(247,245,240,0.65);

      & input[type="checkbox"] {
        width: 16px;
        height: 16px;
        accent-color: var(--color-accent);
      }

      & span { cursor: pointer; }
    }

    & .cookie-save-btn {
      background: var(--color-primary);
      color: var(--color-text-light);
      padding: 0.55rem 1.5rem;
      border-radius: var(--radius-sm);
      font-size: 0.82rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      font-family: var(--font-body);
      transition: background 0.2s ease;
      &:hover { background: var(--color-primary-light); }
    }
  }
}


.thanks-page {
  & main.thanks-main {
    min-height: calc(100vh - var(--nav-height) - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) var(--space-md);
  }
}

.thanks-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.thanks-dot {
  width: 32px;
  height: 32px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: dotPulse 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;

  @keyframes dotPulse {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.4); }
    100% { transform: scale(1); opacity: 1; }
  }
}

.thanks-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.6s forwards;

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

.thanks-link {
  opacity: 0;
  animation: fadeInUp 0.6s ease 1.1s forwards;
  color: var(--color-accent);
  text-decoration: underline;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  &:hover { color: var(--color-primary); }
}


@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    padding-top: calc(var(--nav-height) + var(--space-lg));
    min-height: auto;
  }

  .hero-content { max-width: 100%; text-align: center; }
  .hero-content .hero-actions { justify-content: center; }
  .hero-content .hero-desc { max-width: 100%; }

  .hero-images {
    height: 380px;
    margin: 0 auto;
    width: 100%;
    max-width: 540px;
  }

  .intro-band .intro-grid { grid-template-columns: 1fr; }
  .about-strip .about-grid { grid-template-columns: 1fr; }

  .page-hero .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero--contact .contact-hero-inner { grid-template-columns: 1fr; }
  .contact-main .contact-layout { grid-template-columns: 1fr; }

  .features-section .features-grid { grid-template-columns: 1fr; }
  .topics-section .topics-grid { grid-template-columns: 1fr 1fr; }
  .seasonal-section .seasons-grid { grid-template-columns: repeat(2, 1fr); }

  .site-footer .footer-inner {
    grid-template-columns: 1fr 1fr;

    & .footer-brand { grid-column: 1 / -1; }
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 2.5rem;
  }

  .hero-images { height: 300px; }

  .hero-img-main { width: 78%; }
  .hero-img-secondary { width: 52%; }

  .features-section .features-grid { grid-template-columns: 1fr; }
  .topics-section .topics-grid { grid-template-columns: 1fr; }
  .seasonal-section .seasons-grid { grid-template-columns: 1fr 1fr; }

  .task-row {
    grid-template-columns: 48px 1fr;
    & .task-frequency { display: none; }
  }

  .schedule-intro .schedule-intro-grid { grid-template-columns: 1fr; }
  .schedule-visual .diagram-week { grid-template-columns: repeat(2, 1fr); }

  .content-values .values-grid { grid-template-columns: 1fr; }

  .image-break-section { height: 340px; }

  .site-footer .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .cookie-bar .cookie-bar-main { flex-direction: column; align-items: flex-start; }
  .cookie-bar .cookie-bar-actions { width: 100%; }

  .back-to-top { bottom: 5rem; }
}

@media (max-width: 480px) {
  :root { --space-xl: 3rem; }

  .hero-content .hero-heading { font-size: clamp(3rem, 13vw, 5rem); }
  .hero-images { height: 260px; }

  .seasonal-section .seasons-grid { grid-template-columns: 1fr; }

  .chat-form .chat-bubble--user { max-width: 100%; }

  .page-hero--contact .contact-info-cards { gap: 0.75rem; }
}