*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root {
  --ink: #181d26;
  --body-text: #333840;
  --muted: #41454d;
  --canvas: #ffffff;
  --surface-soft: #f8fafc;
  --surface-strong: #e0e2e6;
  --surface-dark: #181d26;
  --surface-dark-elevated: #1d1f25;
  --hairline: #dddddd;
  --link: #1b61c9;
  --coral: #aa2d00;
  --forest: #0a2e0e;
  --cream: #f5e9d4;
  --peach: #fcab79;
  --mint: #a8d8c4;
  --yellow: #f4d35e;
  --mustard: #d9a441;
  --on-primary: #ffffff;
  --primary-active: #0d1218;

  --r-xs: 2px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 12px;

  --sp-xxs: 4px;
  --sp-xs: 8px;
  --sp-sm: 12px;
  --sp-md: 16px;
  --sp-lg: 24px;
  --sp-xl: 32px;
  --sp-xxl: 48px;
  --sp-section: 96px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  --max-w: 1280px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--body-text);
  background: var(--canvas);
}

a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }

img { display: block; max-width: 100%; height: auto; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-xxl);
}

@media (max-width: 767px) {
  .container { padding: 0 var(--sp-md); }
}

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  height: 64px;
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-xxl);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-xl);
}

.nav-logo {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo:hover { text-decoration: none; }

.nav-menu {
  display: flex;
  gap: var(--sp-lg);
  align-items: center;
  flex-wrap: wrap;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 400;
  color: var(--body-text);
  white-space: nowrap;
}

.nav-menu a:hover { color: var(--ink); text-decoration: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-xs);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

@media (max-width: 767px) {
  .nav-inner { padding: 0 var(--sp-md); }
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--canvas);
    border-bottom: 1px solid var(--hairline);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--sp-md) var(--sp-md) var(--sp-lg);
    gap: var(--sp-md);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { font-size: 16px; }
}

/* ── HERO BAND ── */
.hero-band {
  padding: var(--sp-section) 0;
  background: var(--canvas);
}

.hero-band .container { max-width: 760px; margin: 0 auto; }

.hero-band h1 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: var(--sp-lg);
}

.hero-band p {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: var(--sp-xl);
}

@media (max-width: 767px) {
  .hero-band h1 { font-size: 28px; }
  .hero-band { padding: var(--sp-xxl) 0; }
}

/* ── SECTION TITLES ── */
.section-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.12px;
  color: var(--ink);
  margin-bottom: var(--sp-lg);
}

.section-sub {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: var(--sp-xl);
}

/* ── SIGNATURE CARDS ── */
.sig-coral {
  background: var(--coral);
  color: var(--on-primary);
  border-radius: var(--r-lg);
  padding: var(--sp-xxl);
}

.sig-forest {
  background: var(--forest);
  color: var(--on-primary);
  border-radius: var(--r-lg);
  padding: var(--sp-xxl);
}

.sig-dark {
  background: var(--surface-dark);
  color: var(--on-primary);
  border-radius: var(--r-lg);
  padding: var(--sp-xxl);
}

.sig-cream {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: var(--sp-lg);
}

.sig-coral h2,
.sig-forest h2,
.sig-dark h2 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--on-primary);
  margin-bottom: var(--sp-md);
}

.sig-coral p,
.sig-forest p,
.sig-dark p {
  font-size: 14px;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  max-width: 520px;
}

.sig-cream h2 {
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: var(--sp-sm);
}

.sig-cream p {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.6;
}

/* ── SECTIONS ── */
.section-band {
  padding: var(--sp-section) 0;
}

.section-band--soft {
  background: var(--surface-soft);
}

.section-band--strong {
  background: var(--surface-strong);
}

/* ── ARTICLE CARD GRID ── */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

@media (max-width: 1024px) {
  .article-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .article-grid { grid-template-columns: 1fr; }
}

.article-card {
  background: var(--canvas);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
}

.article-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.article-card-body {
  padding: var(--sp-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sp-xs);
}

.article-card h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: var(--sp-xs);
}

.article-card p {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.6;
  margin-bottom: var(--sp-md);
  flex: 1;
}

.article-card-meta {
  font-size: 13px;
  color: var(--muted);
}

.article-card a.card-link {
  color: inherit;
}

.article-card a.card-link:hover { text-decoration: none; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--ink);
  color: var(--on-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  padding: 16px 24px;
  border-radius: var(--r-lg);
  border: none;
  cursor: pointer;
}

.btn-primary:hover { background: var(--primary-active); color: var(--on-primary); text-decoration: none; }

.btn-secondary {
  display: inline-block;
  background: var(--canvas);
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  padding: 16px 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline);
  cursor: pointer;
}

.btn-secondary:hover { background: var(--surface-soft); text-decoration: none; }

.btn-secondary-on-dark {
  display: inline-block;
  background: var(--canvas);
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  padding: 16px 24px;
  border-radius: var(--r-lg);
  border: none;
  cursor: pointer;
}

.btn-secondary-on-dark:hover { background: var(--surface-soft); text-decoration: none; }

/* ── DEMO GRID ── */
.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

@media (max-width: 1024px) {
  .demo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .demo-grid { grid-template-columns: 1fr; }
}

.demo-card {
  border-radius: var(--r-md);
  padding: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.demo-card--peach  { background: var(--peach); }
.demo-card--mint   { background: var(--mint); }
.demo-card--yellow { background: var(--yellow); }
.demo-card--cream  { background: var(--cream); }
.demo-card--soft   { background: var(--surface-soft); border: 1px solid var(--hairline); }

.demo-card-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}

.demo-card-text {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.6;
}

/* ── ARTICLE PAGE ── */
.article-hero {
  padding: var(--sp-section) 0 var(--sp-xxl);
  background: var(--canvas);
}

.article-hero h1 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  max-width: 720px;
  margin-bottom: var(--sp-md);
}

.article-meta {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16px;
  color: var(--muted);
  margin-bottom: var(--sp-xl);
}

.article-hero img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--r-md);
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--sp-xxl);
  align-items: start;
}

@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
}

.article-body {
  padding: var(--sp-section) 0;
}

.article-body h2 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin: var(--sp-xxl) 0 var(--sp-md);
}

.article-body h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  margin: var(--sp-xl) 0 var(--sp-sm);
}

.article-body p {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}

.article-body ul,
.article-body ol {
  margin: var(--sp-sm) 0 var(--sp-md) var(--sp-xl);
  font-size: 15px;
  line-height: 1.7;
  color: var(--body-text);
}

.article-body li { margin-bottom: var(--sp-xs); }

.article-body img {
  border-radius: var(--r-md);
  margin: var(--sp-xl) 0;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.article-body a { color: var(--link); }

.article-sidebar {
  padding: var(--sp-section) 0;
  position: sticky;
  top: 80px;
}

.sidebar-box {
  background: var(--surface-soft);
  border-radius: var(--r-md);
  padding: var(--sp-xl);
  margin-bottom: var(--sp-lg);
  border: 1px solid var(--hairline);
}

.sidebar-box h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--sp-sm);
}

.sidebar-box a {
  display: block;
  font-size: 14px;
  color: var(--body-text);
  margin-bottom: var(--sp-xs);
  line-height: 1.5;
}

.sidebar-box a:hover { color: var(--link); text-decoration: none; }

/* ── CONTACT FORM ── */
.contact-form {
  background: var(--surface-soft);
  border-radius: var(--r-lg);
  padding: var(--sp-xxl);
  max-width: 560px;
}

.contact-form h2 {
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: var(--sp-md);
}

.contact-form p {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.6;
  margin-bottom: var(--sp-xl);
}

.form-group {
  margin-bottom: var(--sp-md);
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--sp-xs);
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--ink);
  height: 44px;
  outline: none;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #458fff;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--surface-strong);
  border-radius: var(--r-lg);
  padding: var(--sp-xxl);
  text-align: center;
}

.cta-band h2 {
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: var(--sp-md);
}

.cta-band p {
  font-size: 14px;
  color: var(--body-text);
  max-width: 480px;
  margin: 0 auto var(--sp-xl);
  line-height: 1.6;
}

/* ── STAT ROW ── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-lg);
  text-align: center;
}

@media (max-width: 767px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}

.stat-item .stat-num {
  font-size: 40px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
}

.stat-item .stat-label {
  font-size: 14px;
  color: var(--muted);
  margin-top: var(--sp-xs);
}

/* ── DISCLAIMER ── */
.disclaimer {
  background: var(--surface-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  padding: var(--sp-md) var(--sp-lg);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: var(--sp-xl) 0;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: var(--sp-section) 0 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-xxl);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-xl);
  padding-bottom: var(--sp-xxl);
}

@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .footer-inner { grid-template-columns: 1fr; padding: 0 var(--sp-md) var(--sp-xl); }
}

.footer-brand {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--sp-xs);
}

.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: var(--sp-md);
}

.footer-contact {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

.footer-contact a { color: var(--muted); }
.footer-contact a:hover { color: var(--ink); }

.footer-heading {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--sp-sm);
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: var(--sp-xs);
  line-height: 1.5;
}

.footer-col a:hover { color: var(--ink); text-decoration: none; }

.footer-legal {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-lg) var(--sp-xxl);
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

.footer-legal p {
  font-size: 13px;
  color: var(--muted);
}

.footer-legal-links {
  display: flex;
  gap: var(--sp-md);
}

.footer-legal-links a {
  font-size: 13px;
  color: var(--muted);
}

.footer-legal-links a:hover { color: var(--ink); text-decoration: none; }

@media (max-width: 767px) {
  .footer-legal { padding: var(--sp-lg) var(--sp-md); flex-direction: column; align-items: flex-start; }
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: var(--sp-lg);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface-dark);
  color: var(--on-primary);
  border-radius: var(--r-lg);
  padding: var(--sp-md) var(--sp-xl);
  max-width: 640px;
  width: calc(100% - 32px);
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
  z-index: 999;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}

.cookie-banner.hidden { display: none !important; }

.cookie-banner p {
  flex: 1;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
}

.cookie-banner a { color: #fff; text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: var(--sp-xs);
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: var(--link);
  color: #fff;
  border: none;
  border-radius: var(--r-xs);
  font-size: 13.12px;
  font-weight: 600;
  padding: 12px 10px;
  cursor: pointer;
}

.btn-cookie-reject {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--r-xs);
  font-size: 13.12px;
  font-weight: 600;
  padding: 12px 10px;
  cursor: pointer;
}

/* ── PAGE HEADER ── */
.page-hero {
  padding: var(--sp-section) 0 var(--sp-xxl);
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
}

.page-hero h1 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: var(--sp-md);
}

.page-hero p {
  font-size: 16px;
  color: var(--body-text);
  max-width: 580px;
  line-height: 1.6;
}

/* ── PROSE CONTENT ── */
.prose {
  padding: var(--sp-section) 0;
  max-width: 760px;
}

.prose h2 {
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  margin: var(--sp-xxl) 0 var(--sp-md);
}

.prose h3 {
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin: var(--sp-xl) 0 var(--sp-sm);
}

.prose p {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}

.prose ul,
.prose ol {
  margin: var(--sp-sm) 0 var(--sp-md) var(--sp-xl);
  font-size: 15px;
  line-height: 1.7;
  color: var(--body-text);
}

.prose li { margin-bottom: var(--sp-xs); }

.prose a { color: var(--link); }

/* ── ZONE TABLE ── */
.zone-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: var(--sp-xl) 0;
}

.zone-table th {
  background: var(--surface-soft);
  color: var(--ink);
  font-weight: 500;
  padding: 12px var(--sp-md);
  text-align: left;
  border-bottom: 2px solid var(--hairline);
}

.zone-table td {
  padding: 10px var(--sp-md);
  border-bottom: 1px solid var(--hairline);
  color: var(--body-text);
  vertical-align: top;
}

.zone-table tr:last-child td { border-bottom: none; }

/* ── PLANT GRID ── */
.plant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
  margin: var(--sp-xl) 0;
}

@media (max-width: 767px) {
  .plant-grid { grid-template-columns: 1fr; }
}

.plant-card {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--canvas);
}

.plant-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.plant-card-body {
  padding: var(--sp-md);
}

.plant-card-body h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--sp-xxs);
}

.plant-card-body em {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  display: block;
  margin-bottom: var(--sp-xs);
}

.plant-card-body p {
  font-size: 13px;
  color: var(--body-text);
  line-height: 1.6;
  margin: 0;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: var(--sp-md);
  display: flex;
  gap: var(--sp-xs);
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--ink); text-decoration: none; }
.breadcrumb span { color: var(--muted); }

/* ── UTILITIES ── */
.mt-section { margin-top: var(--sp-section); }
.mb-section { margin-bottom: var(--sp-section); }
.mt-xl { margin-top: var(--sp-xl); }
.mb-xl { margin-bottom: var(--sp-xl); }
.text-center { text-align: center; }
