/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #2D5A27; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== BRAND COLORS ===== */
:root {
    --green: #2D5A27;
    --green-dark: #1e3d1b;
    --amber: #E8912D;
    --amber-dark: #c97820;
    --white: #ffffff;
    --off-white: #f8f7f4;
    --text: #1a1a1a;
    --text-light: #555;
    --border: #e0e0e0;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.section {
    padding: 4rem 0;
}
main { flex: 1; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
    text-decoration: none;
    border: none;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary {
    background: var(--green);
    color: var(--white);
}
.btn-primary:hover { background: var(--green-dark); color: var(--white); }
.btn-secondary {
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
}
.btn-secondary:hover { background: var(--green); color: var(--white); }
.btn-cta {
    background: var(--amber);
    color: var(--white);
}
.btn-cta:hover { background: var(--amber-dark); color: var(--white); }
.btn-amber {
    background: var(--amber);
    color: var(--white);
}

/* ===== HEADER ===== */
.site-header {
    background: var(--white);
    border-bottom: 2px solid var(--green);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.site-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green);
    letter-spacing: -0.5px;
}
.site-logo span { color: var(--amber); }
.site-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.site-nav a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.site-nav a:hover { color: var(--green); text-decoration: none; }
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.lang-switcher {
    font-size: 0.85rem;
    color: var(--text-light);
}
.lang-switcher a {
    color: var(--text-light);
    font-weight: 500;
}
.lang-switcher a:hover { color: var(--green); }
.lang-switcher a.active { color: var(--green); font-weight: 700; }

/* ===== HERO BANNER ===== */
.hero-banner {
    min-height: 70vh;
    display: flex;
    background: var(--green);
    position: relative;
}
.hero-overlay {
    flex: 1;
    display: flex;
    align-items: center;
    width: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 100%);
    padding: 5rem 0;
}
.hero-banner .container { position: relative; }
.hero-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-subline {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin-bottom: 2rem;
}

/* ===== FEATURE LIST ===== */
.feature-list__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.feature-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 8px;
    background: var(--off-white);
}
.feature-item__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.feature-item__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 0.5rem;
}
.feature-item__description { color: var(--text-light); }

/* ===== TEASER / OFFER CARDS ===== */
.teaser-cards__grid, .offer-cards__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.teaser-card, .offer-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    background: var(--white);
    transition: transform 0.2s, box-shadow 0.2s;
}
.teaser-card:hover, .offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.teaser-card__image img, .offer-card__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.teaser-card__body, .offer-card__body {
    padding: 1.25rem;
}
.teaser-card__title, .offer-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--green);
}
.teaser-card__excerpt, .offer-card__price {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.offer-card__price {
    font-weight: 600;
    color: var(--amber);
    font-size: 1rem;
}

/* ===== IMAGE + TEXT ===== */
.image-text__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.image-text__inner--reversed { direction: rtl; }
.image-text__inner--reversed > * { direction: ltr; }
.image-text__image img {
    border-radius: 8px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.image-text__content h2 {
    font-size: 1.75rem;
    color: var(--green);
    margin-bottom: 1rem;
}
@media (max-width: 768px) {
    .image-text__inner { grid-template-columns: 1fr; }
}

/* ===== ACCORDION ===== */
.accordion__item {
    border-bottom: 1px solid var(--border);
}
.accordion__question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 0;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion__question:hover { color: var(--green); }
.accordion__answer {
    display: none;
    padding: 0 0 1.25rem;
    color: var(--text-light);
}
.accordion__answer.is-open { display: block; }

/* ===== CTA BANNER ===== */
.cta-banner {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
}
.cta-banner__overlay {
    width: 100%;
    background: rgba(0,0,0,0.45);
    padding: 4rem 0;
}
.cta-banner__content {
    text-align: center;
    color: var(--white);
}
.cta-banner__headline {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}
.cta-banner__subline {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* ===== GALLERY ===== */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}
.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}
.gallery__item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__caption {
    font-size: 0.8rem;
    color: var(--text-light);
    padding: 0.5rem 0;
}

/* ===== CONTACT CARD ===== */
.contact-card__inner {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: var(--off-white);
    border-radius: 8px;
    padding: 2rem;
    max-width: 600px;
}
.contact-card__photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}
.contact-card__name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.contact-card__role {
    color: var(--green);
    font-weight: 500;
    margin-bottom: 0.75rem;
}
.contact-card__details { list-style: none; }
.contact-card__details li { margin-bottom: 0.25rem; }

/* ===== NEWS LISTING ===== */
.news-listing__title {
    font-size: 2rem;
    color: var(--green);
    margin-bottom: 2rem;
}
.news-listing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.news-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    background: var(--white);
}
.news-card__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.news-card__body { padding: 1.25rem; }
.news-card__date {
    font-size: 0.8rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 0.5rem;
}
.news-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 0.5rem;
}
.news-card__intro { color: var(--text-light); font-size: 0.9rem; }

/* ===== VIDEO EMBED ===== */
.video-embed__headline {
    font-size: 1.75rem;
    color: var(--green);
    margin-bottom: 0.5rem;
}
.video-embed__subline {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}
.video-embed__wrapper {
    aspect-ratio: 16 / 9;
    border-radius: 8px;
}
.video-embed__wrapper iframe {
    width: 100%;
    display: block;
}

/* ===== CONTACT FORM ===== */
.contact-form { max-width: 640px; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
}
.form-submit { margin-top: 1.5rem; }
.form-success {
    background: #d4edda;
    color: #155724;
    padding: 1.25rem;
    border-radius: 6px;
    font-weight: 500;
}

/* ===== RICH TEXT ===== */
.rich-text h2 { font-size: 1.75rem; color: var(--green); margin-bottom: 1rem; }
.rich-text h3 { font-size: 1.3rem; color: var(--text); margin-bottom: 0.75rem; }
.rich-text p { margin-bottom: 1rem; color: var(--text-light); }
.rich-text ul { margin: 0.75rem 0 1rem 1.5rem; }
.rich-text li { margin-bottom: 0.4rem; color: var(--text-light); }
.rich-text strong { color: var(--text); }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--green);
    color: rgba(255,255,255,0.85);
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}
.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.site-footer__brand .site-logo { color: var(--white); margin-bottom: 0.5rem; }
.site-footer__brand .site-logo span { color: var(--amber); }
.site-footer__tagline { font-size: 0.9rem; opacity: 0.8; }
.site-footer h4 {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}
.site-footer address { font-style: normal; line-height: 1.8; font-size: 0.9rem; }
.site-footer a { color: rgba(255,255,255,0.8); }
.site-footer a:hover { color: var(--white); text-decoration: none; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; font-size: 0.9rem; }
.site-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-legal { display: flex; gap: 1rem; }
