/* Pixel-perfect design: 8px base grid, vertical rhythm, Cyrillic-friendly typography */
:root {
    /* Colors */
    --primary-color: #1a5f3f;
    --primary-dark: #144a31;
    --secondary-color: #2d8659;
    --accent-color: #8b4513;
    --accent-light: #d4a574;
    --text-primary: #1e2e28;
    --text-secondary: #4a5c52;
    --text-muted: #6b7c73;
    --bg-light: #f6f8f7;
    --bg-white: #ffffff;
    --bg-dark: #1a3d2e;
    /* Typography: Literata (headings), Lora (body) – both Cyrillic */
    --font-heading: 'Literata', Georgia, serif;
    --font-body: 'Lora', Georgia, serif;
    /* 8px grid */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-6: 48px;
    --space-8: 64px;
    --space-10: 80px;
    --space-12: 96px;
    --space-15: 120px;
    /* Typography scale (1.25) */
    --text-xs: 0.8125rem;   /* 13px */
    --text-sm: 0.9375rem;   /* 15px */
    --text-base: 1.0625rem; /* 17px */
    --text-lg: 1.25rem;     /* 20px */
    --text-xl: 1.5rem;      /* 24px */
    --text-2xl: 1.875rem;   /* 30px */
    --text-3xl: 2.25rem;    /* 36px */
    --text-4xl: 3rem;       /* 48px */
    --text-5xl: 4rem;       /* 64px */
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 1.75;
    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(26, 63, 47, 0.06);
    --shadow-md: 0 4px 12px rgba(26, 63, 47, 0.08);
    --shadow-lg: 0 8px 24px rgba(26, 63, 47, 0.1);
    --shadow-xl: 0 16px 48px rgba(26, 63, 47, 0.12);
    /* Layout */
    --container-max: 1120px;
    --content-max: 720px;
    --measure: 65ch;
}

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

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

/* Web Interface Guidelines: skip link, scroll-margin, reduced motion */
.skip-link {
    position: absolute;
    top: -100px;
    left: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: var(--radius-sm);
    z-index: 1001;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: var(--space-2);
}
.skip-link:focus-visible {
    outline: 2px solid var(--accent-light);
    outline-offset: 2px;
}

[id] {
    scroll-margin-top: 5rem;
}

main > .section:first-child {
    padding-top: 6rem;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-4);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: var(--space-2) 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-4);
}

.nav-menu a {
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.2s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.2s ease;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.lang-switcher {
    display: flex;
    gap: var(--space-1);
}

.lang-btn {
    padding: var(--space-1) var(--space-2);
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 600;
    font-family: var(--font-body);
    transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--bg-white);
}

.lang-btn:focus-visible,
.nav-menu a:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

.nav-brand:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-12) var(--space-4) var(--space-8);
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
}

.hero-image-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.4;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    z-index: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 69, 19, 0.2) 0%, transparent 50%);
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 50px,
        rgba(255, 255, 255, 0.03) 50px,
        rgba(255, 255, 255, 0.03) 51px
    );
    animation: float 30s infinite linear;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-50px, -50px) rotate(360deg); }
}

.hero-content {
    max-width: var(--content-max);
    z-index: 2;
    color: var(--bg-white);
    position: relative;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 700;
    line-height: var(--leading-tight);
    margin-bottom: var(--space-2);
    letter-spacing: 0.02em;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: var(--text-2xl);
    font-weight: 400;
    line-height: var(--leading-snug);
    margin-bottom: var(--space-4);
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    max-width: 44rem;
    margin: 0 auto var(--space-6);
    opacity: 0.92;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-scroll {
    margin-top: var(--space-8);
    animation: bounce 2s infinite;
}

.hero-scroll span {
    font-size: var(--text-2xl);
    opacity: 0.85;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Sections */
.section {
    padding: var(--space-12) 0;
}

.section-alt {
    background: var(--bg-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    line-height: var(--leading-tight);
    text-align: center;
    margin-bottom: var(--space-10);
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.01em;
    max-width: 20ch;
    margin-left: auto;
    margin-right: auto;
}

/* Plant page: 4 sections */
.plant-sections {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}
.plant-section-block {
    margin-top: var(--space-4);
}
.plant-section-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    line-height: var(--leading-snug);
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: var(--space-3);
    padding-bottom: var(--space-1);
    border-bottom: 2px solid var(--secondary-color);
}
.plant-section-block .prose p {
    margin-bottom: var(--space-3);
    color: var(--text-primary);
    max-width: var(--measure);
}
.plant-section-block .prose p:last-child {
    margin-bottom: 0;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.content-card {
    background: var(--bg-white);
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-top: 4px solid var(--secondary-color);
}

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

.card-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-3);
    display: block;
    line-height: 1;
}

.content-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    line-height: var(--leading-snug);
    margin-bottom: var(--space-2);
    color: var(--primary-color);
    font-weight: 600;
}

.content-card p {
    color: var(--text-secondary);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

.link-more {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}
.link-more:hover {
    text-decoration: underline;
}
.link-more:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}
.link-more-large {
    font-size: var(--text-lg);
}

/* Practices */
.practices-list {
    max-width: var(--content-max);
    margin: 0 auto;
}

.practice-item {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    padding: var(--space-5);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-left: 4px solid var(--secondary-color);
}

.practice-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-lg);
}

.practice-number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--accent-color);
    min-width: 72px;
    opacity: 0.5;
}

.practice-content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
    color: var(--primary-color);
    font-weight: 600;
}

.practice-content p {
    color: var(--text-secondary);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

/* Quote Section */
.quote-section {
    padding: var(--space-12) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
}

.quote {
    max-width: var(--content-max);
    margin: 0 auto;
    text-align: center;
}

.quote p {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-style: italic;
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
}

.quote cite {
    font-size: var(--text-base);
    opacity: 0.9;
    font-style: normal;
    font-weight: 500;
}

/* Deep Content */
.deep-content {
    max-width: var(--content-max);
    margin: 0 auto;
    text-align: left;
}

.deep-content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--primary-color);
    margin-top: var(--space-8);
    margin-bottom: var(--space-3);
    font-weight: 600;
}

.deep-content h4 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--secondary-color);
    margin-top: var(--space-5);
    margin-bottom: var(--space-2);
    font-weight: 600;
}

.deep-content p {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
    margin-bottom: var(--space-3);
    max-width: var(--measure);
}

.deep-content h3:first-child {
    margin-top: 0;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--bg-white);
    padding: var(--space-6) 0;
    text-align: center;
}

.footer p {
    font-size: var(--text-sm);
    opacity: 0.9;
}

/* Intro Content */
.intro-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-8);
    align-items: start;
    margin-top: var(--space-6);
}

/* Только текст без картинки — текст на всю ширину контейнера */
.intro-content--text-only {
    grid-template-columns: 1fr;
}

/* Картинка сверху, текст снизу — без обрезки изображения */
.intro-content--image-top {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
}

.intro-content--image-top .intro-image {
    grid-column: 1;
    margin-bottom: var(--space-4);
}

.intro-content--image-top .intro-image .content-image--no-crop,
.content-image--no-crop {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
}

.intro-image {
    width: 100%;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: var(--text-base);
    text-align: center;
    padding: var(--space-4);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.05) 20px,
        rgba(255, 255, 255, 0.05) 21px
    );
}

.content-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.intro-text p {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
    margin-bottom: var(--space-3);
    max-width: var(--measure);
}

/* Preparation Section */
.preparation-section {
    margin-top: var(--space-8);
    padding: var(--space-6);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.preparation-section h3 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--primary-color);
    margin-bottom: var(--space-3);
    font-weight: 600;
}

.preparation-section > p {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
    margin-bottom: var(--space-5);
}

.restrictions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-4);
    margin: var(--space-4) 0;
}

.restriction-item {
    background: var(--bg-light);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--secondary-color);
}

.restriction-item h4 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--primary-color);
    margin-bottom: var(--space-2);
    font-weight: 600;
}

.restriction-item ul {
    list-style: none;
    padding: 0;
}

.restriction-item li {
    padding: var(--space-1) 0;
    padding-left: var(--space-3);
    position: relative;
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: var(--leading-normal);
}

.restriction-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1rem;
}

.warning-text {
    background: #fef9e7;
    border-left: 4px solid #e6b800;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-sm);
    color: #6b5a00;
    font-size: var(--text-sm);
    font-weight: 500;
    margin-top: var(--space-5);
}

/* Dieta Content */
.dieta-content {
    max-width: var(--content-max);
    margin: 0 auto;
}

.dieta-content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--primary-color);
    margin-top: var(--space-8);
    margin-bottom: var(--space-3);
    font-weight: 600;
}

.dieta-content p {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
    margin-bottom: var(--space-3);
    max-width: var(--measure);
}

.dieta-image {
    margin: var(--space-5) 0;
    width: 100%;
}

.dieta-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-4);
    margin: var(--space-5) 0;
}

.detail-card {
    background: var(--bg-white);
    padding: var(--space-5);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--accent-color);
}

.detail-card h4 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--primary-color);
    margin-bottom: var(--space-2);
    font-weight: 600;
}

.detail-card p {
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
    margin: 0;
}

.warning-box {
    background: #fdf2f2;
    border-left: 4px solid #c53030;
    padding: var(--space-4);
    border-radius: var(--radius-sm);
    margin: var(--space-5) 0;
}

.warning-box p {
    color: #742a2a;
    font-size: var(--text-sm);
    font-weight: 500;
    margin: 0;
}

.dieta-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-4);
    margin: var(--space-5) 0;
}

.type-card {
    background: var(--bg-white);
    padding: var(--space-5);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--secondary-color);
}

.type-card h4 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--primary-color);
    margin-bottom: var(--space-2);
    font-weight: 600;
}

.type-card p {
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
    margin: 0;
}

/* Icaros Content */
.icaros-content {
    max-width: var(--content-max);
    margin: 0 auto;
}

.icaros-content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--primary-color);
    margin-top: var(--space-8);
    margin-bottom: var(--space-3);
    font-weight: 600;
}

.icaros-content p {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
    margin-bottom: var(--space-3);
    max-width: var(--measure);
}

.icaros-image {
    margin: var(--space-5) 0;
    width: 100%;
}

/* Kene Content */
.kene-content {
    max-width: var(--content-max);
    margin: 0 auto;
}

.kene-content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--primary-color);
    margin-top: var(--space-8);
    margin-bottom: var(--space-3);
    font-weight: 600;
}

.kene-content p {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
    margin-bottom: var(--space-3);
    max-width: var(--measure);
}

.kene-image {
    margin: var(--space-5) 0;
    width: 100%;
}

/* Plants Grid */
.plants-intro {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--space-8);
    max-width: var(--content-max);
    margin-left: auto;
    margin-right: auto;
}

.plants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-4);
    margin: var(--space-8) 0;
}

.plant-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.plant-card-link:hover .plant-card,
.plant-card-link:focus .plant-card {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.plant-card-link:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.plant-card {
    background: var(--bg-white);
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-top: 4px solid var(--accent-color);
}

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

.plant-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-2);
    display: block;
    line-height: 1;
}

.plant-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-3);
    box-shadow: var(--shadow-sm);
}

.plant-card h3,
.plant-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    line-height: var(--leading-snug);
    margin-bottom: var(--space-2);
    color: var(--primary-color);
    font-weight: 600;
}

.plant-card-excerpt {
    margin-bottom: var(--space-3);
}

.breadcrumb {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
}

.breadcrumb a {
    color: var(--accent-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span:last-child {
    color: var(--text-primary);
    font-weight: 500;
}

.plant-card p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
}

.plants-note {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
    margin-top: var(--space-8);
    padding: var(--space-5);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--secondary-color);
}

/* Responsive: 8px grid preserved */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-3);
    }

    .hero {
        padding: var(--space-10) var(--space-3) var(--space-6);
    }

    .hero-title {
        font-size: var(--text-4xl);
    }

    .hero-subtitle {
        font-size: var(--text-xl);
    }

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

    .section-title {
        font-size: var(--text-2xl);
        margin-bottom: var(--space-8);
    }

    .nav-menu {
        gap: var(--space-2);
        font-size: var(--text-xs);
    }

    .practice-item {
        flex-direction: column;
        gap: var(--space-2);
    }

    .practice-number {
        min-width: auto;
    }

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

    .quote p {
        font-size: var(--text-lg);
    }

    .navbar .container {
        flex-wrap: wrap;
        gap: var(--space-2);
    }

    .lang-switcher {
        margin-left: auto;
    }

    .intro-content {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .preparation-section {
        padding: var(--space-4);
    }

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

    .dieta-details,
    .dieta-types {
        grid-template-columns: 1fr;
    }

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

    .deep-content h3,
    .dieta-content h3,
    .icaros-content h3,
    .kene-content h3 {
        font-size: var(--text-xl);
    }

    .plant-image {
        height: 200px;
    }
}
