*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --terra:       #A45E2A;
    --terra-light: #D4723A;
    --terra-pale:  #F2E0D0;
    --green:       #6A9E85;
    --green-pale:  #C8DABD;
    --green-dark:  #537e6a;
    --cream:       #F7F4F0;
    --white:       #FFFFFF;
    --text:        #2C2425;
    --text-soft:   #6B5C57;
    --container:   1200px;
    --topbar-h:    14px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* anchored sections clear the fixed nav */
[id] { scroll-margin-top: 120px; }

/* ===== LAYOUT: 12-column centered grid ===== */
.grid-12 {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 28px;
}
.container { width: 100%; max-width: var(--container); margin: 0 auto; }

/* ===== BUTTON ===== */
.button {
    display: inline-block;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s, transform 0.15s, border-color 0.2s;
}
.button--primary { background: var(--white); color: var(--terra); padding: 13px 28px; font-size: 0.88rem; font-weight: 600; }
.button--primary:hover { background: var(--terra-pale); transform: translateY(-1px); }
.button--outline { border: 1.5px solid rgba(255,255,255,0.4); color: var(--white); padding: 12px 26px; font-size: 0.88rem; font-weight: 400; }
.button--outline:hover { border-color: var(--green-pale); background: rgba(106,158,133,0.15); }
.button--green { background: var(--green); color: var(--white); padding: 12px 26px; font-size: 0.86rem; font-weight: 600; }
.button--green:hover { background: var(--green-dark); }
.button--white { background: var(--white); color: var(--green); padding: 14px 32px; font-size: 0.9rem; font-weight: 600; }
.button--white:hover { background: var(--terra); color: var(--white); transform: translateY(-1px); }
.button--submit { background: var(--terra); color: var(--white); padding: 13px 30px; font-size: 0.88rem; font-weight: 600; }
.button--submit:hover { background: var(--terra-light); }

/* ===== TOPBAR ===== */
.topbar {
    top: 0; left: 0; right: 0;
    height: var(--topbar-h);
    background: var(--cream);
    z-index: 210;
    height: 70px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 10px;
    left: 0; right: 0;
    z-index: 200;
    background: transparent;
    padding: 0 24px;
}
.navbar__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.navbar__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px; height: 52px;
    background: var(--terra);
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(44,36,37,0.18);
}
.navbar__logo svg { width: 44px; height: 44px; }
.navbar__pill {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 100px;
    padding: 8px 12px;
    box-shadow: 0 8px 32px rgba(44,36,37,0.14);
}
.navbar__item { display: flex; }
.navbar__link {
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--text);
    padding: 8px 16px;
    border-radius: 100px;
    transition: background 0.2s, color 0.2s;
}
.navbar__link:hover { background: rgba(106,158,133,0.18); color: var(--green-dark); }
.navbar__cta {
    background: var(--terra);
    color: var(--white);
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 600;
    padding: 11px 22px;
    border-radius: 100px;
    transition: background 0.2s;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(44,36,37,0.18);
}
.navbar__cta:hover { background: var(--terra-light); }

/* ===== HERO ===== */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--terra);
    color: var(--white);
    padding: 140px 24px 96px;
}
/* texture "terre" fondue dans le fond, même teinte */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 240px 240px;
    opacity: 0.22;
    mix-blend-mode: overlay;
}
/* nuances de terre, très diffuses */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
    radial-gradient(120% 80% at 10% 12%, rgba(122,69,32,0.55) 0%, rgba(122,69,32,0) 55%),
    radial-gradient(100% 75% at 92% 96%, rgba(74,42,18,0.45) 0%, rgba(74,42,18,0) 60%),
    radial-gradient(70% 60% at 70% 30%, rgba(210,114,58,0.25) 0%, rgba(210,114,58,0) 60%);
    mix-blend-mode: soft-light;
}
.hero > * { position: relative; z-index: 1; }
.hero__inner { align-items: center; gap: 72px; }
.hero__content { grid-column: span 6; }

/* bloc image (portrait vertical) à la place des anciennes cartes */
.hero__portrait { grid-column: span 6; display: flex; justify-content: center; align-items: center; }
.hero__portrait img {
    width: 100%;
    max-width: 460px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    box-shadow: 0 24px 60px rgba(44,36,37,0.30);
    border: 1px solid rgba(255,255,255,0.18);
}

.hero__eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-pale); margin-bottom: 20px; }
.hero__title { font-size: clamp(2.2rem, 3.8vw, 3.4rem); font-weight: 700; line-height: 1.2; color: var(--white); margin-bottom: 24px; }
.hero__highlight { color: var(--green-pale); }
.hero__description { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.78); max-width: 460px; margin-bottom: 40px; line-height: 1.8; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== HERO-CARD (réutilisées dans story__visual) ===== */
.hero-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; padding: 24px 28px; display: flex; align-items: flex-start; gap: 18px; cursor: pointer; transition: background 0.28s ease, transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease; }
.hero-card:hover { background: rgba(255,255,255,0.2); transform: translateY(-5px) translateX(4px); border-color: rgba(255,255,255,0.4); box-shadow: 0 16px 34px rgba(44,36,37,0.22); }
.hero-card__icon { width: 44px; height: 44px; border-radius: 8px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.28s ease, background 0.28s ease; }
.hero-card:hover .hero-card__icon { transform: scale(1.1) rotate(-4deg); background: var(--white); }
.hero-card__icon img { width: 34px; height: 34px; }
.hero-card__title { font-size: 0.88rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.hero-card__text { font-size: 0.8rem; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.55; }

/* cartes déplacées sous la citation, dans le bloc vert */
.story__cards { width: 100%; display: flex; flex-direction: column; gap: 14px; margin-top: 6px; position: relative; z-index: 1; }

/* ===== ICON ===== */
.icon--green { background: var(--green-pale); }
.icon--green img { fill: var(--green); stroke: none; }

/* ===== SECTION ===== */
.section { padding: 92px 24px; }
.section__header { margin-bottom: 56px; }
.section__tag { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terra-light); margin-bottom: 12px; }
.section__title { font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 600; color: var(--text); line-height: 1.25; margin-bottom: 16px; max-width: 540px; }
.section__subtitle { font-size: 0.95rem; font-weight: 300; color: var(--text-soft); max-width: 520px; line-height: 1.8; }

/* ===== STORY ===== */
.story { position: relative; overflow: hidden; background: var(--cream); padding: 92px 24px; }
.story__inner { position: relative; z-index: 1; gap: 0; border-radius: 16px; overflow: hidden; box-shadow: 0 28px 70px rgba(44,36,37,0.18), 0 6px 18px rgba(44,36,37,0.08); }
.story__visual { position: relative; overflow: hidden; grid-column: span 6; background: var(--green); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 64px 56px; gap: 32px; }
/* texture "terre" verte, fondue dans le vert (comme le hero mais en vert) */
.story__visual::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='ng'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23ng)'/%3E%3C/svg%3E");
    background-size: 240px 240px;
    opacity: 0.20;
    mix-blend-mode: overlay;
}
.story__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
    radial-gradient(120% 80% at 12% 14%, rgba(56,90,72,0.55) 0%, rgba(56,90,72,0) 55%),
    radial-gradient(100% 75% at 90% 94%, rgba(47,75,60,0.5) 0%, rgba(47,75,60,0) 60%),
    radial-gradient(70% 60% at 72% 28%, rgba(200,218,189,0.3) 0%, rgba(200,218,189,0) 60%);
    mix-blend-mode: soft-light;
}
.story__visual > * { position: relative; z-index: 1; }
.story__logo { width: 100px; height: 100px; background: rgba(255,255,255,0.18); border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.story__logo svg { width: 80px; height: 80px; }
.story__quote { font-size: 1.1rem; font-weight: 300; font-style: italic; color: rgba(255,255,255,0.9); line-height: 1.7; border-left: 3px solid var(--white); padding-left: 20px; }
.story__quote cite { display: block; margin-top: 14px; font-style: normal; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.story__content { grid-column: span 6; background: var(--white); padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }
.story__tag { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.story__title { font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 600; color: var(--text); line-height: 1.25; margin-bottom: 16px; }
.story__lead { font-size: 0.95rem; font-weight: 300; color: var(--text-soft); line-height: 1.8; margin-bottom: 28px; }
.story__paragraph { font-size: 0.9rem; font-weight: 300; color: var(--text-soft); line-height: 1.85; margin-bottom: 20px; }
.story__paragraph--last { margin-bottom: 32px; }

/* ===== SERVICES ===== */
.service-card {
    grid-column: span 6;
    align-self: start;
    background: var(--white);
    border-radius: 12px;
    padding: 36px 34px;
    border: 1px solid rgba(164,94,42,0.08);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.25s;
    position: relative;
    overflow: hidden;
}
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: var(--green); transition: background 0.25s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(106,158,133,0.18); background: var(--green-pale); }
.service-card:hover::after { background: var(--green); }

.service-card__head { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.service-card__icon { width: 54px; height: 54px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service-card__icon img { width: 40px; height: 40px; }
.service-card__title { font-size: 1.45rem; font-weight: 600; color: var(--text); line-height: 1.15; letter-spacing: -0.01em; }
.service-card__text { font-size: 0.88rem; font-weight: 300; color: var(--text-soft); line-height: 1.8; margin-bottom: 18px; }

.service-card__details { border-top: 1px solid rgba(44,36,37,0.08); padding-top: 16px; }
.service-card__toggle {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--green-dark);
    user-select: none;
}
.service-card__toggle::-webkit-details-marker { display: none; }
.service-card__chevron {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.25s;
}
.service-card__chevron svg { width: 15px; height: 15px; stroke: var(--white); }
.service-card__details[open] .service-card__chevron { transform: rotate(180deg); }
.service-card__toggle:hover .service-card__chevron { background: var(--green-dark); }
.service-card__panel { margin-top: 16px; font-size: 0.86rem; font-weight: 300; color: var(--text-soft); line-height: 1.85; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--cream); }
.testimonial { grid-column: span 4; display: flex; flex-direction: column; height: 100%; background: var(--white); border-radius: 10px; padding: 34px 30px; border: 1px solid rgba(164,94,42,0.08); cursor: pointer; transition: background 0.25s, box-shadow 0.2s, transform 0.2s; }
.testimonial:hover { background: var(--green-pale); transform: translateY(-4px); box-shadow: 0 14px 36px rgba(106,158,133,0.18); }
.testimonial__stars { color: var(--terra-light); font-size: 1.4rem; margin-bottom: 16px; letter-spacing: 3px; }
.testimonial__quote { font-style: italic; font-size: 0.88rem; font-weight: 300; color: var(--text); line-height: 1.8; margin-bottom: 24px; }
.testimonial__author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testimonial__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; font-weight: 600; color: var(--white); font-size: 0.82rem; flex-shrink: 0; }
.testimonial__name { font-size: 0.86rem; font-weight: 600; color: var(--text); }
.testimonial__role { font-size: 0.76rem; font-weight: 300; color: var(--text-soft); }

/* ===== CTA ===== */
.cta { background: var(--green); padding: 80px 24px; }
.cta__inner { text-align: center; }
.cta__title { font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 600; color: var(--white); margin-bottom: 14px; }
.cta__text { color: rgba(255,255,255,0.84); font-size: 0.96rem; font-weight: 300; margin: 0 auto 36px; max-width: 500px; line-height: 1.75; }

/* ===== CONTACT ===== */
.contact { background: var(--cream); padding: 92px 24px; }
.contact__inner { gap: 0; border-radius: 16px; overflow: hidden; box-shadow: 0 16px 48px rgba(44,36,37,0.08); }
.contact__info { grid-column: span 6; background: var(--terra); padding: 64px 56px; color: var(--white); }
.contact__tag { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green-pale); margin-bottom: 12px; }
.contact__title { font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 600; color: var(--white); line-height: 1.25; margin-bottom: 36px; }
.contact__detail { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.contact__icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,0.14); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact__icon svg { width: 20px; height: 20px; }
.contact__icon svg path { fill: var(--green-pale); }
.contact__label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-pale); margin-bottom: 4px; }
.contact__value { font-size: 0.9rem; font-weight: 300; color: rgba(255,255,255,0.85); text-decoration: none; }
a.contact__value:hover { color: var(--white); }
.contact__form { grid-column: span 6; background: var(--white); padding: 64px 56px; }
.contact__form-tag { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terra); margin-bottom: 12px; }
.contact__form-title { font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 600; color: var(--text); line-height: 1.25; margin-bottom: 32px; }

/* ===== FORM-GROUP ===== */
.form-group { margin-bottom: 20px; }
.form-group__label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 8px; }
.form-group__input, .form-group__textarea { width: 100%; padding: 11px 15px; border: 1.5px solid rgba(164,94,42,0.15); border-radius: 6px; font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 300; color: var(--text); background: var(--cream); transition: border-color 0.2s; outline: none; }
.form-group__input:focus, .form-group__textarea:focus { border-color: var(--green); }
.form-group__textarea { resize: vertical; min-height: 100px; }

/* ===== FOOTER ===== */
.footer { background: var(--text); color: rgba(255,255,255,0.55); padding: 64px 24px 32px; }
.footer__grid { grid-template-columns: repeat(12, 1fr); gap: 48px; margin-bottom: 52px; }
.footer__brand { grid-column: span 5; }
.footer__column { grid-column: span 2; }
.footer__column--contact { grid-column: span 3; }
.footer__name { font-size: 1.3rem; font-weight: 700; color: var(--white); letter-spacing: 0.12em; margin-bottom: 14px; display: block; }
.footer__text { font-size: 0.82rem; font-weight: 300; line-height: 1.75; max-width: 260px; margin-bottom: 24px; }
.footer__heading { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer__list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__link { text-decoration: none; font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer__link:hover { color: var(--green-pale); }

.footer__contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer__contact-item { display: flex; align-items: center; gap: 12px; }
.footer__contact-icon { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer__contact-icon svg { width: 16px; height: 16px; }
.footer__contact-icon svg path { fill: var(--green-pale); }
.footer__contact-link { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.82rem; font-weight: 300; transition: color 0.2s; }
.footer__contact-link:hover { color: var(--green-pale); }
.footer__contact-text { color: rgba(255,255,255,0.7); font-size: 0.82rem; font-weight: 300; }

.footer__bottom { max-width: var(--container); margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; font-size: 0.76rem; }
.footer__bottom-link { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer__bottom-link:hover { color: var(--green-pale); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .navbar__pill { display: none; }
    .grid-12 { grid-template-columns: 1fr; gap: 24px; }
    .hero__content, .hero__portrait,
    .story__visual, .story__content,
    .contact__info, .contact__form,
    .service-card, .testimonial,
    .footer__brand, .footer__column, .footer__column--contact { grid-column: 1 / -1; }
    .hero { padding: 120px 24px 64px; }
    .hero__portrait img { max-width: 360px; }
    .story__visual, .story__content, .contact__info, .contact__form { padding: 52px 32px; }
    .section { padding: 64px 24px; }
    .footer__grid { gap: 32px; }
}
/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1);
    will-change: opacity, transform;
}
.reveal--left  { transform: translateX(-70px); }
.reveal--right { transform: translateX(70px); }
.reveal.is-visible { opacity: 1; transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ===== SERVICES CLOUD DECORATION ===== */
.services { position: relative; overflow: hidden; }
.services__sun {
    position: absolute;
    top: 90px;
    right: max(-40px, calc((100% - 1180px) / 2 - 30px));
    width: 460px;
    max-width: 55vw;
    color: var(--green);
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}
.services__sun svg { width: 100%; height: auto; display: block; }
.services__sun svg path { fill: currentColor; stroke: currentColor; stroke-width: 4; }
.services__sun img { width: 100%; height: auto; display: block; }
.services .container, .services .grid-12 { position: relative; z-index: 1; }

/* ===== NATURE PARALLAX MOTIFS (légers, comme le nuage) ===== */
.botany { position: absolute; color: var(--green); opacity: 0.09; z-index: 0; pointer-events: none; will-change: transform; }
.botany svg { width: 100%; height: auto; display: block; }
.botany svg path { fill: currentColor; }
.story__botany { width: 280px; max-width: 40vw; left: -70px; bottom: -70px; }
.story__botany svg { transform: rotate(-12deg); }
.story__botany--tr { width: 250px; max-width: 34vw; top: -55px; right: max(-50px, calc((100% - 1180px) / 2 - 40px)); bottom: auto; left: auto; }
.story__botany--tr svg { transform: rotate(135deg); }

/* ===== TESTIMONIALS CAROUSEL ===== */
.carousel { position: relative; max-width: var(--container); margin: 0 auto; padding: 0 8px; }
.carousel__viewport { overflow: hidden; }
.carousel__track { display: flex; gap: 24px; align-items: stretch; will-change: transform; }
.carousel__track.is-animating { transition: transform 0.55s cubic-bezier(0.33,1,0.68,1); }
.carousel .testimonial {
    flex: 0 0 380px;
    width: 380px;
    max-width: 80vw;
    grid-column: auto;
    height: auto;
}
.carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--green);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 8px 24px rgba(44,36,37,0.18);
    transition: background 0.2s, transform 0.15s;
}
.carousel__arrow:hover { background: var(--green-dark); }
.carousel__arrow:active { transform: translateY(-50%) scale(0.94); }
.carousel__arrow svg { width: 20px; height: 20px; stroke: var(--white); }
.carousel__arrow--prev { left: -16px; }
.carousel__arrow--next { right: -16px; }
@media (max-width: 960px) {
    .carousel__arrow--prev { left: 2px; }
    .carousel__arrow--next { right: 2px; }
}