@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+3:wght@300;400;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #F5F5DC;
  --color-green: #005F60;
  --color-terracotta: #CC7E65;
  --color-aqua: #7FD1B9;
  --color-white: #FFFFFF;
  --color-dark: #1A1A1A;
  --color-text: #2C2C2C;
  --color-muted: #6B6B5A;
  --color-border: #D9D9C0;
  --color-bg-dark: #1C2E2E;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', sans-serif;
  --max-width: 1440px;
  --container: 1200px;
  --radius: 4px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-green);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-terracotta);
}

ul, ol {
  padding-left: 1.5rem;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.container--wide {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  line-height: 1.25;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }

.text-green { color: var(--color-green); }
.text-terracotta { color: var(--color-terracotta); }
.text-muted { color: var(--color-muted); font-size: 0.95rem; }
.text-balance { text-wrap: balance; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 16px;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--color-green);
  margin: 20px 0;
}

.divider--center {
  margin: 20px auto;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-green);
}

.btn--primary:hover {
  background: #004748;
  border-color: #004748;
  color: var(--color-white);
  box-shadow: 0 4px 18px rgba(0,95,96,0.25);
}

.btn--outline {
  background: transparent;
  color: var(--color-green);
  border-color: var(--color-green);
}

.btn--outline:hover {
  background: var(--color-green);
  color: var(--color-white);
  box-shadow: 0 4px 18px rgba(0,95,96,0.18);
}

.btn--light {
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}

.btn--light:hover {
  background: rgba(255,255,255,0.22);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.7);
}

header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(245,245,220,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

header.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-green);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.logo span {
  color: var(--color-terracotta);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: 0.04em;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-green);
  border-bottom-color: var(--color-green);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-green);
  transition: all var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  z-index: 899;
  padding: 24px 40px;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav a:hover {
  color: var(--color-green);
}

main {
  padding-top: 72px;
}

.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(28,46,46,0.82) 40%, rgba(28,46,46,0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
}

.hero-content-inner {
  max-width: 680px;
}

.hero-content h1 {
  color: var(--color-white);
  margin-bottom: 24px;
  text-wrap: balance;
}

.hero-content p {
  color: rgba(255,255,255,0.82);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-disclaimer {
  margin-top: 48px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

.hero-leaf {
  position: absolute;
  right: 5%;
  bottom: 10%;
  width: 340px;
  opacity: 0.13;
  z-index: 1;
  pointer-events: none;
}

.leaf-animate {
  animation: leafSway 6s ease-in-out infinite;
  transform-origin: bottom center;
}

@keyframes leafSway {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

section {
  padding: 100px 0;
}

.section--alt {
  background: rgba(0,95,96,0.04);
}

.section--dark {
  background: var(--color-bg-dark);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-white);
}

.section--dark p,
.section--dark li {
  color: rgba(255,255,255,0.78);
}

.section--dark .section-label {
  color: var(--color-aqua);
}

.section--dark .divider {
  background: var(--color-aqua);
}

.section-header {
  margin-bottom: 56px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .divider {
  margin: 20px auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

.two-col__image {
  position: relative;
}

.two-col__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.15);
}

.two-col__image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--color-terracotta);
  border-radius: 2px;
  z-index: -1;
}

.two-col--reverse .two-col__image::after {
  right: auto;
  left: -20px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cards-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.cards-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.card--dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}

.card--dark:hover {
  background: rgba(255,255,255,0.1);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,95,96,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--color-green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card h4 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.65;
}

.card--dark p {
  color: rgba(255,255,255,0.65);
}

.card--dark h3,
.card--dark h4 {
  color: var(--color-white);
}

.ingredient-badge {
  display: inline-block;
  background: rgba(0,95,96,0.08);
  color: var(--color-green);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(0,95,96,0.18);
}

.garden-quiz {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 56px;
  max-width: 860px;
  margin: 0 auto;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
}

.quiz-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
}

.quiz-progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  transition: background var(--transition);
}

.quiz-progress-dot.done {
  background: var(--color-green);
}

.quiz-progress-dot.current {
  background: var(--color-terracotta);
  width: 24px;
  border-radius: 4px;
}

.quiz-question {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--color-dark);
  margin-bottom: 32px;
  line-height: 1.35;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--color-bg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  text-align: left;
}

.quiz-option:hover {
  border-color: var(--color-green);
  background: rgba(0,95,96,0.04);
}

.quiz-option.selected {
  border-color: var(--color-green);
  background: rgba(0,95,96,0.07);
  color: var(--color-green);
}

.quiz-option-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 36px;
  align-items: center;
}

.quiz-result {
  display: none;
}

.quiz-result.active {
  display: block;
}

.garden-result {
  text-align: center;
  padding: 16px 0;
}

.garden-result h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.plants-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.plant-card {
  text-align: center;
  padding: 28px 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}

.plant-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.plant-visual {
  font-size: 2.6rem;
  margin-bottom: 12px;
  display: block;
  animation: growIn 0.5s ease-out forwards;
}

@keyframes growIn {
  from { opacity: 0; transform: scale(0.6) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.plant-card h4 {
  font-size: 0.95rem;
  color: var(--color-green);
  margin-bottom: 8px;
}

.plant-card p {
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.full-width-image-section {
  position: relative;
  height: 540px;
  overflow: hidden;
}

.full-width-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-width-image-section .overlay-content {
  position: absolute;
  inset: 0;
  background: rgba(28,46,46,0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.full-width-image-section h2 {
  color: var(--color-white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  max-width: 720px;
}

.full-width-image-section p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 20px auto 0;
}

.care-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

@media (max-width: 1100px) {
  .care-cards { grid-template-columns: repeat(3, 1fr); }
}

.care-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-green);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.care-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}

.care-card-emoji {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 14px;
}

.care-card h4 {
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.care-card p {
  font-size: 0.87rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.perspectives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.perspective-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  transition: transform var(--transition), box-shadow var(--transition);
}

.perspective-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.perspective-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.perspective-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(28,46,46,0.9) 60%, transparent);
}

.perspective-card-body p {
  color: var(--color-white);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-dark);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--color-green);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border: 2px solid var(--color-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-green);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-green);
  color: var(--color-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 0.97rem;
  color: var(--color-muted);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.chat-widget {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 800;
}

.chat-toggle {
  width: 62px;
  height: 62px;
  background: var(--color-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,95,96,0.4);
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
  font-size: 1.6rem;
}

.chat-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(0,95,96,0.5);
}

.chat-box {
  position: absolute;
  bottom: 78px;
  right: 0;
  width: 320px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.15);
  overflow: hidden;
  display: none;
  flex-direction: column;
}

.chat-box.open {
  display: flex;
}

.chat-header {
  background: var(--color-green);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.chat-header-info {
  flex: 1;
}

.chat-header-info strong {
  display: block;
  color: var(--color-white);
  font-size: 0.92rem;
}

.chat-header-info span {
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
}

.chat-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0;
  transition: color var(--transition);
}

.chat-close:hover {
  color: var(--color-white);
}

.chat-messages {
  flex: 1;
  padding: 20px;
  min-height: 220px;
  max-height: 320px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--color-bg);
}

.chat-msg {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 2px 12px 12px 12px;
  padding: 12px 14px;
  font-size: 0.88rem;
  color: var(--color-text);
  line-height: 1.55;
  max-width: 90%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.chat-suggestions {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--color-border);
}

.chat-suggestion-btn {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 0.82rem;
  color: var(--color-green);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
}

.chat-suggestion-btn:hover {
  background: rgba(0,95,96,0.08);
  border-color: var(--color-green);
}

.info-note {
  background: rgba(127,209,185,0.15);
  border-left: 4px solid var(--color-aqua);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 32px 0;
}

.info-note p {
  font-size: 0.92rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.65;
}

.info-note strong {
  color: var(--color-green);
}

.context-note {
  background: rgba(245,245,220,0.6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-top: 64px;
}

.context-note h4 {
  color: var(--color-green);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
}

.context-note p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.educational-banner {
  background: var(--color-green);
  color: var(--color-white);
  text-align: center;
  padding: 14px 40px;
  font-size: 0.87rem;
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.04em;
}

footer.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.footer-brand .logo {
  font-size: 1.5rem;
  display: inline-block;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-aqua);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--color-white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--color-aqua);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item p,
.footer-contact-item a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
  line-height: 1.5;
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: var(--color-white);
}

.footer-hours {
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-hours strong {
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-aqua);
}

.footer-disclaimer {
  max-width: var(--max-width);
  margin: 56px auto 0;
  padding: 32px 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-disclaimer-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 24px;
}

.footer-disclaimer-box p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin: 0;
}

.footer-disclaimer-box strong {
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-terracotta);
}

.footer-educational-msg {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  margin-bottom: 20px;
}

.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 20px 40px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-bg-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}

.cookie-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

.cookie-banner a {
  color: var(--color-aqua);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: all var(--transition);
}

.cookie-btn--accept {
  background: var(--color-green);
  color: var(--color-white);
}

.cookie-btn--accept:hover {
  background: #004748;
}

.cookie-btn--reject {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.25);
}

.cookie-btn--reject:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--color-white);
}

.cookie-btn--more {
  background: transparent;
  color: var(--color-aqua);
  text-decoration: underline;
  padding: 10px 8px;
}

.page-hero {
  background: var(--color-bg-dark);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(135deg, rgba(0,95,96,0.3), rgba(0,95,96,0.05));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  max-width: 560px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a {
  color: var(--color-aqua);
}

.breadcrumb-sep {
  color: rgba(255,255,255,0.3);
}

.policy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 32px;
}

.policy-content h2 {
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--color-green);
}

.policy-content h3 {
  font-size: 1.15rem;
  margin-top: 28px;
  margin-bottom: 12px;
}

.policy-content p,
.policy-content li {
  font-size: 0.97rem;
  color: var(--color-muted);
  line-height: 1.8;
}

.policy-content ul, .policy-content ol {
  margin-bottom: 1.2rem;
}

.policy-content li {
  margin-bottom: 6px;
}

.policy-meta {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.policy-copyright {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  font-size: 0.85rem;
  color: var(--color-muted);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--color-green);
  text-align: center;
}

.stat-strip-item {
  padding: 48px 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.stat-strip-item:last-child {
  border-right: none;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.06em;
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-green);
  border: 3px solid var(--color-bg);
  box-shadow: 0 0 0 2px var(--color-green);
}

.timeline-year {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 6px;
}

.timeline-item h4 {
  font-size: 1.1rem;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.about-mission {
  background: var(--color-green);
  padding: 72px;
  border-radius: var(--radius);
  margin: 56px 0;
}

.about-mission h2 {
  color: var(--color-white);
  margin-bottom: 20px;
}

.about-mission p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.8;
}

.principles-list {
  list-style: none;
  padding: 0;
}

.principles-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.principles-list li:last-child {
  border-bottom: none;
}

.principle-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-terracotta);
  flex-shrink: 0;
  margin-top: 6px;
}

.principles-list li p {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0;
}

.principles-list li strong {
  color: var(--color-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: flex-start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,95,96,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--color-green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-item h4 {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 600;
}

.contact-info-item p,
.contact-info-item a {
  color: var(--color-text);
  font-size: 0.97rem;
  text-decoration: none;
  margin: 0;
}

.contact-info-item a:hover {
  color: var(--color-green);
}

.contact-form-wrap {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 48px 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(0,95,96,0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-disclaimer {
  background: rgba(127,209,185,0.12);
  border: 1px solid rgba(127,209,185,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
}

.form-disclaimer p {
  font-size: 0.84rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.65;
}

.thankyou-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
}

.thankyou-box {
  max-width: 560px;
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 64px 56px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  background: rgba(0,95,96,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.thankyou-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--color-green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thankyou-box h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.thankyou-box p {
  font-size: 0.97rem;
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.tag-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tag {
  display: inline-block;
  background: rgba(0,95,96,0.08);
  color: var(--color-green);
  border: 1px solid rgba(0,95,96,0.18);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 600;
}

.deep-dive-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.deep-dive-img {
  position: sticky;
  top: 100px;
}

.deep-dive-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 12px 48px rgba(0,0,0,0.15);
}

.ingredient-block {
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
}

.ingredient-block:last-child {
  border-bottom: none;
}

.ingredient-block h4 {
  font-size: 1.1rem;
  color: var(--color-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ingredient-block h4 .ingredient-badge {
  margin: 0;
  font-size: 0.72rem;
}

.ingredient-block p {
  font-size: 0.93rem;
  color: var(--color-muted);
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .cards-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .plants-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-strip-item:nth-child(2) {
    border-right: none;
  }

  .stat-strip-item {
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .deep-dive-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .deep-dive-img {
    position: static;
  }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col--reverse {
    direction: ltr;
  }

  .two-col__image img { height: 320px; }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .perspectives-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .garden-quiz {
    padding: 32px 24px;
  }

  .quiz-options {
    grid-template-columns: 1fr;
  }

  .about-mission {
    padding: 40px 28px;
  }

  section {
    padding: 72px 0;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 24px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .container--wide {
    padding: 0 20px;
  }

  .header-inner {
    padding: 0 20px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid--2 {
    grid-template-columns: 1fr;
  }

  .care-cards {
    grid-template-columns: 1fr 1fr;
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .plants-grid {
    grid-template-columns: 1fr 1fr;
  }

  section {
    padding: 56px 0;
  }

  .hero-section {
    min-height: 100vh;
  }

  .hero-content {
    padding: 60px 20px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-disclaimer {
    padding: 32px 20px;
  }

  .footer-bottom {
    padding: 20px;
  }

  .chat-widget {
    bottom: 20px;
    right: 20px;
  }

  .thankyou-box {
    padding: 40px 24px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .cookie-actions {
    flex-wrap: wrap;
  }

  .mobile-nav {
    padding: 24px 20px;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.page-hero--light {
  background: var(--color-bg);
  padding: 72px 0 56px;
}

.page-hero--light::before {
  display: none;
}

.page-hero--light h1 {
  color: var(--color-dark);
}

.page-hero--light p {
  color: var(--color-muted);
}

.page-hero--light .breadcrumb {
  color: var(--color-muted);
}

.page-hero--light .breadcrumb a {
  color: var(--color-green);
}

.page-hero--light .breadcrumb-sep {
  color: var(--color-border);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 10px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--color-green);
  width: 50%;
}
