/* ═══════════════════════════════════════════════
   CANNAMO — Lab Protocol in Gold Frame
   Eleventy Production Build
   ═══════════════════════════════════════════════ */

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

/* --- PALETTE (7-Rollen-System) --- */

/* ═══ PROFIL A: GOLD/ROT (Dark) — Default ═══ */
:root,
:root[data-profile="gold"] {
  --color-bg: #0c0a08;
  --color-primary: #1a1510;
  --color-secondary: #3d3428;
  --color-accent: #c8922c;
  --color-teal: #6b8f71;
  --color-warm: #8b2d1a;
  --color-light: #f0ead6;

  --surface: #1a1510;
  --card: #211c14;
  --border: #3d3428;
  --text: #f0ead6;
  --text-muted: #b8a98a;
  --text-dim: #7a6e5a;

  --indica: #5a3d6b;
  --sativa: #8b7730;
  --hybrid: #4a6b50;

  --selection: rgba(200,146,44,0.2);
  color-scheme: dark;
}

/* ═══ PROFIL A: GOLD/ROT (Light) ═══ */
:root.light,
:root[data-profile="gold"].light {
  --color-bg: #f5f0e8;
  --color-primary: #ffffff;
  --color-secondary: #c8bda8;
  --color-accent: #a07020;
  --color-teal: #4a6b50;
  --color-warm: #8b2d1a;
  --color-light: #1a1510;

  --surface: #ffffff;
  --card: #ede7db;
  --border: #c8bda8;
  --text: #1a1510;
  --text-muted: #5a4e3a;
  --text-dim: #8a7e6a;

  --indica: #7a5d8b;
  --sativa: #a09040;
  --hybrid: #5a8060;

  --selection: rgba(160,112,32,0.15);
  color-scheme: light;
}

/* ═══ PROFIL B: GRÜN (Dark) ═══ */
:root[data-profile="green"] {
  --color-bg: #0a120c;
  --color-primary: #142018;
  --color-secondary: #2d4a32;
  --color-accent: #5a9c4a;
  --color-teal: #8fb87a;
  --color-warm: #c8a840;
  --color-light: #e8f0e4;

  --surface: #142018;
  --card: #1a2d1e;
  --border: #2d4a32;
  --text: #e8f0e4;
  --text-muted: #a0c090;
  --text-dim: #5a7a5a;

  --indica: #5a3d6b;
  --sativa: #8b9030;
  --hybrid: #4a7b50;

  --selection: rgba(90,156,74,0.2);
  color-scheme: dark;
}

/* ═══ PROFIL B: GRÜN (Light) ═══ */
:root[data-profile="green"].light {
  --color-bg: #f0f5ee;
  --color-primary: #ffffff;
  --color-secondary: #b8ccb0;
  --color-accent: #3a7a2a;
  --color-teal: #5a8a4a;
  --color-warm: #a08830;
  --color-light: #142018;

  --surface: #ffffff;
  --card: #e8f0e4;
  --border: #b8ccb0;
  --text: #142018;
  --text-muted: #3a5a3a;
  --text-dim: #6a8a6a;

  --indica: #7a5d8b;
  --sativa: #8a9030;
  --hybrid: #4a7b50;

  --selection: rgba(58,122,42,0.15);
  color-scheme: light;
}

::selection { background: var(--selection); }

/* --- BASE --- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  font-family: -apple-system, 'Helvetica Neue', 'Segoe UI', sans-serif;
  font-size: var(--font-body-size, 17px);
  line-height: var(--font-body-lh, 1.75);
  color: var(--text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 { font-weight: 600; line-height: 1.2; color: var(--text); }
h1 { font-size: var(--h1-size, 2.4rem); }
h2 { font-size: var(--h2-size, 1.8rem); }
h3 { font-size: var(--h3-size, 1.3rem); }
a { color: var(--color-accent); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--text); }

/* --- LAYOUT --- */
.container {
  max-width: var(--container-max, 960px);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-padding, 5rem) 0;
}

/* Erste Section auf Unterseiten: Platz für fixierte Utility Bar + Nav */
.section:first-child {
  padding-top: 8rem;
}

/* Hero überschreibt das (hat eigenes Padding) */
.page-home .section:first-child {
  padding-top: 5rem;
}

.section--accent {
  background: var(--surface);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-text {
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 2rem;
}

.section-subtitle {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* --- UTILITY BAR --- */
.utility-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: var(--card);
  font-size: 0.75rem;
}

.utility-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.utility-left {
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.utility-right {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.utility-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  font-size: 0.8rem;
  padding: 0.2rem 0.4rem;
  transition: color 0.3s;
  font-family: inherit;
}

.utility-btn:hover {
  color: var(--color-accent);
}

.utility-lang {
  font-weight: 700;
  letter-spacing: 0.06em;
}

.utility-sep {
  color: var(--border);
  font-size: 0.7rem;
}

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 2rem;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--surface);
  transition: background 0.3s;
}

.nav-inner {
  max-width: var(--container-max, 960px);
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-height, 3.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo-img {
  height: var(--nav-logo-height, 2rem);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: var(--nav-font-size, 0.85rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color 0.3s, border-color 0.3s;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover { color: var(--text); }
.nav-links a.active {
  color: var(--text);
  border-bottom-color: var(--color-accent);
  border-bottom-width: 3px;
}

/* --- THEME DOTS (Klarsite-Pattern) --- */
.theme-switcher {
  display: flex;
  gap: 10px;
  align-items: center;
}

.theme-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  padding: 0;
  outline: none;
}

.theme-dot:hover { transform: scale(1.2); }

.theme-dot--gold {
  background: linear-gradient(135deg, #0c0a08, #5a3c16, #c8922c);
}

.theme-dot--green {
  background: linear-gradient(135deg, #0a120c, #1a4012, #5a9c4a);
}

.theme-dot.active {
  border-color: var(--text);
  box-shadow: 0 0 0 2px var(--color-bg), 0 0 0 4px var(--text-dim);
  transform: scale(1.1);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-links.nav-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 3.5rem;
  left: 0;
  right: 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  gap: 0.8rem;
}

.map-credit {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-dim);
}

.map-credit a { color: var(--text-dim); }
.map-credit a:hover { color: var(--color-accent); }

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center 45%,
    rgba(12,10,8,0.75) 0%,
    rgba(12,10,8,0.5) 60%,
    rgba(12,10,8,0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-logo {
  max-width: var(--hero-logo-width, 500px);
  width: 80%;
  margin-bottom: var(--hero-logo-mb, -0.7rem);
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.5));
}

:root.light .hero-logo {
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.3));
}

.hero-claim {
  font-size: var(--hero-claim-size, 1.25rem);
  letter-spacing: var(--hero-claim-spacing, 0.12em);
  text-transform: uppercase;
  color: #f0ead6;
  margin-bottom: var(--hero-claim-mb, 0.6rem);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.hero-license {
  display: inline-block;
  font-size: var(--hero-license-size, 0.7rem);
  letter-spacing: 0.08em;
  color: var(--color-accent);
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(200,146,44,0.6);
  border-radius: 4px;
  background: rgba(12,10,8,0.5);
  backdrop-filter: blur(8px);
}

.hero-age {
  position: absolute;
  bottom: 2rem;
  font-size: 0.75rem;
  color: rgba(240,234,214,0.5);
  letter-spacing: 0.08em;
  z-index: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* --- STATS --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-block {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn--outlined {
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
  background: transparent;
}

.btn--outlined:hover {
  background: var(--color-accent);
  color: var(--color-bg);
}

/* --- STRAIN CARDS --- */
.strains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--strain-card-min, 280px), 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.strain-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius, 6px);
  padding: var(--card-padding, 1.4rem);
  transition: border-color 0.3s;
  overflow: hidden;
}

.strain-card:hover {
  border-color: var(--color-accent);
}

.strain-card--sold-out {
  opacity: 0.5;
}

.strain-sold-out-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-warm);
  color: var(--color-light);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  z-index: 2;
}

.strain-card { position: relative; }

.strain-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
  min-height: 2.6rem;
}

.strain-name {
  font-size: var(--strain-name-size, 1.05rem);
  line-height: 1.3;
}

.strain-name {
  font-size: 1.1rem;
  font-weight: 600;
}

.strain-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  flex-shrink: 0;
  white-space: nowrap;
}

.strain-badge.indica { background: var(--indica); color: #e0d0f0; }
.strain-badge.sativa { background: var(--sativa); color: #f0e8d0; }
.strain-badge.hybrid { background: var(--hybrid); color: #d0f0d8; }

.strain-data {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1.2rem;
  margin-bottom: 1rem;
}

.datum-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  display: block;
}

.datum-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-accent);
  white-space: nowrap;
}

.strain-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
  word-break: break-word;
  overflow-wrap: break-word;
}

.thc-bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.thc-fill {
  height: 100%;
  background: var(--color-accent);
  border-radius: 2px;
  transition: width 1s ease;
}

.strains-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* --- STEPS --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.step {
  text-align: center;
  padding: 2rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.step-number {
  width: 48px;
  height: 48px;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 auto 1rem;
}

.step h3 { margin-bottom: 0.8rem; }
.step p { font-size: 0.9rem; color: var(--text-muted); }

/* --- INFO GRID --- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.6rem;
  transition: border-color 0.3s, transform 0.3s;
}

.info-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.info-card h4 {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-card h4::before {
  font-size: 1.2rem;
}

.info-card:nth-child(1) h4::before { content: '◉'; color: var(--color-accent); }
.info-card:nth-child(2) h4::before { content: '⬡'; color: var(--color-teal); }
.info-card:nth-child(3) h4::before { content: '▣'; color: var(--color-accent); }
.info-card:nth-child(4) h4::before { content: '◈'; color: var(--color-warm); }

.info-card p { font-size: 0.9rem; color: var(--text-muted); }

.info-highlight {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

/* --- FACTS --- */
.about-lead {
  max-width: 640px;
  margin-bottom: 3rem;
}

.about-lead p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.fact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.4rem;
}

.fact-icon {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.fact-card h4 { margin-bottom: 0.5rem; }
.fact-card p { font-size: 0.9rem; color: var(--text-muted); }

/* --- BOARD --- */
.board { margin-top: 3rem; }
.board h3 { margin-bottom: 1.5rem; }

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

.board-member {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.board-name { font-weight: 600; margin-bottom: 0.3rem; }
.board-role { font-size: 0.85rem; color: var(--text-dim); }

/* --- DIRECTIONS --- */
.directions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.directions-info h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}

.directions-info h3:first-child { margin-top: 0; }
.directions-info p { font-size: 0.95rem; color: var(--text-muted); }
.text-muted { color: var(--text-dim); font-size: 0.85rem; }

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.map-placeholder {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* --- FAQ --- */
.faq-list {
  max-width: 640px;
  margin-top: 2rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 1.2rem 0;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--text-dim);
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  content: '−';
  color: var(--color-accent);
}

.faq-item p {
  padding: 0 0 1.2rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- CONTENT (Markdown pages) --- */
.content {
  max-width: 640px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
}

.content h2 { margin: 2rem 0 1rem; }
.content p { margin-bottom: 1rem; color: var(--text-muted); }

/* --- FOOTER --- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}

.footer-logo-img { height: 2rem; margin-bottom: 0.8rem; }
.footer-org { font-weight: 600; margin-bottom: 0.3rem; }
.footer-reg { font-size: 0.8rem; color: var(--text-dim); }

.footer-contact p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.footer-bottom {
  max-width: 960px;
  margin: 2rem auto 0;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* --- ANBAU PAGE --- */
.anbau-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.anbau-block--reverse {
  direction: rtl;
}

.anbau-block--reverse > * {
  direction: ltr;
}

.anbau-img img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.anbau-text h2 { margin-bottom: 1rem; }
.anbau-text p { color: var(--text-muted); font-size: 0.95rem; }

/* --- FOUNDER --- */
.founder-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2rem;
}

.founder-img img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.founder-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.founder-facts {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

.founder-fact {
  text-align: center;
}

.founder-fact-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-accent);
}

.founder-fact-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- STRAIN IMAGES --- */
.strain-img {
  display: block;
  width: calc(100% + 2 * var(--card-padding, 1.4rem));
  height: var(--strain-img-height, 160px);
  object-fit: cover;
  border-radius: var(--card-radius, 6px) var(--card-radius, 6px) 0 0;
  margin: calc(-1 * var(--card-padding, 1.4rem)) calc(-1 * var(--card-padding, 1.4rem)) 1rem calc(-1 * var(--card-padding, 1.4rem));
  max-width: none;
}

/* --- HERO LIGHT MODE --- */
:root.light .hero-overlay {
  background: radial-gradient(
    ellipse at center 45%,
    rgba(245,240,232,0.78) 0%,
    rgba(245,240,232,0.55) 60%,
    rgba(245,240,232,0.8) 100%
  );
}

:root.light .hero-claim {
  color: rgba(26,21,16,0.85);
  text-shadow: none;
}

:root.light .hero-age {
  color: rgba(26,21,16,0.5);
  text-shadow: none;
}

:root.light .hero-license {
  background: rgba(255,255,255,0.6);
  border-color: rgba(160,112,32,0.5);
}

/* --- NAV GREEN PROFILE --- */
:root[data-profile="green"] .nav {
  background: rgba(10,18,12,0.9);
}

:root[data-profile="green"].light .nav {
  background: rgba(240,245,238,0.9);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .utility-info { display: none; }
  .utility-inner { justify-content: flex-end; }
  .theme-switcher { gap: 8px; }
  .theme-dot { width: 15px; height: 15px; }

  .stats-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 1.3rem; }
  .info-grid { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: 1fr; }
  .directions-grid { grid-template-columns: 1fr; }
  .anbau-block, .anbau-block--reverse { grid-template-columns: 1fr; direction: ltr; }
  .founder-block { grid-template-columns: 1fr; }
  .founder-facts { flex-wrap: wrap; gap: 1.3rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  .section { padding: 3rem 0; }
  .hero { padding: 5rem 2rem 3rem; min-height: 80vh; }
  .hero-logo { max-width: 260px; }

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

  .strain-card { overflow: hidden; }

  .nav-links.nav-open {
    background: var(--surface);
    padding: 1.5rem 2rem;
    gap: 1.3rem;
  }

  .directions-map iframe { height: 250px; }

  .anbau-block { gap: 2rem; }

  .founder-img img { max-width: 280px; }

  .container { padding: 0 1.5rem; }
}

@media (max-width: 480px) {
  .hero { padding: 4rem 1.2rem 2rem; min-height: 70vh; }
  .hero-claim { font-size: 0.9rem; }
  .hero-license { font-size: 0.7rem; padding: 0.4rem 0.8rem; }
  .container { padding: 0 1.2rem; }
  h1 { font-size: 1.5rem; }

  .stat-block { padding: 1.2rem; }

  .top-controls { gap: 0.3rem; }
  .top-btn { width: 38px; height: 38px; font-size: 1rem; }
}
