/* Wolken Sprint — Wellness Center Styles */
/* Palette: Forest Gold (SEED % 5 = 4) */

:root {
    --primary: #1a3c34;
    --secondary: #2d5a4a;
    --accent: #c9a962;
    --background: #f8faf8;
    --text: #0f1f1a;
    --white: #ffffff;
    --gray-light: #e8ebe8;
    --gray: #6b7b75;
}

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

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

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover { color: var(--primary); }

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

ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.btn-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--secondary);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 500;
    border: 2px solid var(--secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--white);
}

.btn-text {
    color: var(--secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-text:hover { color: var(--primary); }

/* Header */
.site-header {
    background: var(--primary);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

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

.main-nav ul {
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--background) 0%, var(--white) 100%);
    padding: 80px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 24px;
    font-size: 2.75rem;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 32px;
}

.hero-image img {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Page Hero */
.page-hero {
    background: var(--primary);
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero-small {
    padding: 40px 0;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--secondary); }
.breadcrumb span { color: var(--text); }

/* Sections */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background: var(--background);
}

.section-intro {
    text-align: center;
    color: var(--gray);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* Intro Section */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 { margin-bottom: 24px; }
.intro-text p { color: var(--gray); }
.intro-text .btn-secondary { margin-top: 16px; }

.intro-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Features */
.features-section { text-align: center; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.feature-card h3 { margin-bottom: 12px; }
.feature-card p { color: var(--gray); margin-bottom: 0; }

/* Programs */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.program-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

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

.program-content {
    padding: 24px;
}

.program-content h3 { margin-bottom: 12px; }
.program-content p { color: var(--gray); margin-bottom: 16px; }

/* Programs Full Grid */
.programs-full-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.program-full-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.program-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-full-content {
    padding: 32px 32px 32px 0;
}

.program-duration {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
}

.program-highlights {
    margin: 20px 0;
    padding-left: 20px;
}

.program-highlights li {
    list-style: disc;
    color: var(--gray);
    margin-bottom: 8px;
}

/* Program Detail */
.program-detail { padding: 60px 0; }

.program-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 48px;
}

.program-hero-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 40px;
}

.program-description h2 { margin-top: 32px; }
.program-description h3 { margin-top: 28px; color: var(--secondary); }

.program-weeks { margin-top: 48px; }

.weeks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.week-card {
    background: var(--background);
    padding: 24px;
    border-radius: 12px;
}

.week-number {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.week-card h4 { margin: 12px 0; }
.week-card p { color: var(--gray); margin-bottom: 0; font-size: 0.95rem; }

/* Program Sidebar */
.program-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.program-info-card,
.program-benefits-card,
.program-cta-card {
    background: var(--white);
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.info-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    justify-content: space-between;
}

.info-list li:last-child { border-bottom: none; }
.info-label { color: var(--gray); }

.benefits-list li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--text);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.program-cta-card { text-align: center; }
.program-cta-card p { color: var(--gray); margin-bottom: 20px; }

/* Related Programs */
.related-programs {
    background: var(--background);
    padding: 60px 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 32px;
}

.related-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-card h3,
.related-card p,
.related-card a {
    padding: 0 24px;
}

.related-card h3 { padding-top: 20px; }
.related-card p { color: var(--gray); }
.related-card a { display: block; padding-bottom: 24px; }

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.product-card:hover { transform: translateY(-4px); }

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

.product-content {
    padding: 24px;
}

.product-content h3 { margin-bottom: 12px; }
.product-content p { color: var(--gray); font-size: 0.95rem; }

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin: 16px 0;
}

/* Products Full Grid */
.products-full-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.product-full-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.product-full-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 280px;
}

.product-details {
    padding: 32px 32px 32px 0;
}

.product-description { color: var(--gray); }

.product-features {
    margin: 20px 0;
    padding-left: 20px;
}

.product-features li {
    list-style: disc;
    color: var(--gray);
    margin-bottom: 6px;
}

.product-footer {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
}

/* Delivery Info */
.delivery-info { background: var(--background); }

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.delivery-card {
    text-align: center;
    padding: 32px;
}

.delivery-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.delivery-card h3 { margin-bottom: 12px; }
.delivery-card p { color: var(--gray); margin-bottom: 0; }

/* Products Note */
.products-note { padding: 40px 0; }

.note-content {
    background: var(--gray-light);
    padding: 24px 32px;
    border-radius: 8px;
}

.note-content h3 { margin-bottom: 8px; font-size: 1rem; }
.note-content p { color: var(--gray); margin-bottom: 0; font-size: 0.9rem; }

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.testimonial-card blockquote p {
    color: var(--text);
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-card cite {
    color: var(--gray);
    font-style: normal;
    font-weight: 500;
}

/* Testimonials Full */
.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.testimonial-full-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.testimonial-full-card .testimonial-avatar {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
    margin-bottom: 0;
}

.testimonial-full-card blockquote p {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.8;
}

.testimonial-full-card cite {
    display: block;
    margin-top: 16px;
}

.testimonial-full-card cite strong {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
}

.testimonial-full-card cite span {
    color: var(--gray);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: var(--primary);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-section .btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: var(--white);
}

/* Articles */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.article-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.article-card:hover { transform: translateY(-4px); }

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

.article-content {
    padding: 24px;
}

.article-category {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.article-content h3 { margin-bottom: 12px; }
.article-content p { color: var(--gray); }

/* Article Detail */
.article-detail { padding: 40px 0 80px; }

.article-header {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.article-header h1 {
    margin: 16px 0 24px;
    font-size: 2.25rem;
}

.article-intro {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.7;
}

.article-hero-image {
    max-width: 900px;
    margin: 0 auto 48px;
    border-radius: 12px;
}

.article-body {
    max-width: 750px;
    margin: 0 auto;
}

.article-body h2 {
    margin-top: 48px;
    margin-bottom: 20px;
}

.article-body h3 {
    margin-top: 32px;
    color: var(--secondary);
}

.article-body p { color: var(--text); }

.article-cta {
    max-width: 750px;
    margin: 60px auto 0;
    background: var(--background);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.article-cta h3 { margin-bottom: 12px; }
.article-cta p { color: var(--gray); margin-bottom: 24px; }

.article-nav {
    max-width: 750px;
    margin: 40px auto 0;
    text-align: center;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details { margin: 32px 0; }

.contact-item {
    margin-bottom: 24px;
}

.contact-item h3 {
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 1rem;
}

.contact-note {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-light);
}

/* Forms */
.contact-form,
.order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group { display: flex; flex-direction: column; }

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(45,90,74,0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.checkbox-label span {
    font-size: 0.9rem;
    color: var(--gray);
}

.checkbox-label a { text-decoration: underline; }

.form-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 8px;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.faq-item {
    background: var(--white);
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: var(--secondary);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.faq-item p { color: var(--gray); margin-bottom: 0; }

/* Legal */
.legal-content { padding: 60px 0; }

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-light);
}

.legal-text h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-text h3 {
    margin-top: 28px;
    color: var(--secondary);
}

.legal-text ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-text ul li {
    list-style: disc;
    margin-bottom: 8px;
    color: var(--text);
}

.legal-text address {
    font-style: normal;
    margin: 16px 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--gray-light);
}

.cookie-table th {
    background: var(--background);
    font-weight: 600;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active { display: flex; }

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    max-width: 450px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray);
    line-height: 1;
}

.modal-close:hover { color: var(--text); }

.modal-content h3 {
    margin-bottom: 24px;
    text-align: center;
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    padding: 20px 0;
    z-index: 1500;
}

.cookie-banner.active { display: block; }

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cookie-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.cookie-buttons .btn-text { color: rgba(255,255,255,0.8); }
.cookie-buttons .btn-text:hover { color: var(--white); }

/* Footer */
.site-footer {
    background: var(--primary);
    padding: 60px 0 0;
    color: rgba(255,255,255,0.85);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col p { margin-bottom: 12px; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col a {
    color: rgba(255,255,255,0.75);
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
    margin-top: 48px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* About Page */
.story-grid,
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 { margin-bottom: 24px; }
.story-image img,
.location-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.philosophy-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.philosophy-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.philosophy-card h3 { margin-bottom: 12px; }
.philosophy-card p { color: var(--gray); margin-bottom: 0; font-size: 0.95rem; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.team-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.team-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.team-content {
    padding: 24px;
}

.team-content h3 { margin-bottom: 12px; }
.team-content p { color: var(--gray); margin-bottom: 0; }

.values-section { text-align: center; }
.values-content {
    max-width: 800px;
    margin: 0 auto;
}

.values-content p { color: var(--gray); font-size: 1.1rem; }

.location-content address {
    font-style: normal;
    margin-top: 24px;
    padding: 20px;
    background: var(--background);
    border-radius: 8px;
}

/* Consultation Section */
.consultation-section {
    background: var(--secondary);
    text-align: center;
}

.consultation-content h2 { color: var(--white); }
.consultation-content p {
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 32px;
}

.consultation-section .btn-primary {
    background: var(--accent);
    color: var(--primary);
}

/* Newsletter */
.newsletter-section {
    background: var(--secondary);
    text-align: center;
}

.newsletter-content h2 { color: var(--white); }
.newsletter-content p {
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 32px;
}

.newsletter-section .btn-primary {
    background: var(--accent);
    color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container,
    .intro-grid,
    .story-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid,
    .programs-grid,
    .products-grid,
    .articles-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .program-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .program-full-card,
    .product-full-card {
        grid-template-columns: 1fr;
    }
    
    .program-full-content,
    .product-details {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    section { padding: 60px 0; }
    
    .main-nav { display: none; }
    
    .features-grid,
    .programs-grid,
    .products-grid,
    .articles-grid,
    .testimonials-grid,
    .delivery-grid,
    .faq-grid,
    .team-grid,
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .weeks-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-full-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .testimonial-full-card .testimonial-avatar {
        margin: 0 auto;
    }
}
