/* ==========================================================
   L'ESCALE A LA FERME — identité "prairie & ferme" (pastel nature)
   Inspirée de la charte validée sur Julien Éduc'Canine :
   typographies Newsreader / Inter / Space Mono, tons doux et verdoyants.
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,500&family=Inter:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
    --paper: #f7faf1;
    --paper-2: #edf2e2;
    --ink: #263223;
    --ink-soft: #566153;
    --sage: #6d8f5f;
    --sage-dark: #4d6b41;
    --sage-deep: #33452e;
    --wheat: #d3a94f;
    --wheat-light: #e8c680;
    --card: #ffffff;
    --line: rgba(38, 50, 35, 0.13);
    --shadow: 0 12px 32px rgba(38, 50, 35, 0.10);
    --radius: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Newsreader', serif; font-weight: 500; margin: 0; line-height: 1.1; letter-spacing: -0.01em; color: var(--ink); }
p { margin: 0 0 1em; }
a { color: var(--sage-dark); }
em { font-style: italic; color: var(--sage-dark); font-weight: 500; }
img { max-width: 100%; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 600px) { .container { padding: 0 20px; } }

/* ---------- boutons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 26px; border-radius: var(--radius);
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px;
    text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
    transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn--primary { background: var(--wheat); color: var(--ink); }
.btn--primary:hover { background: var(--wheat-light); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(211,169,79,0.35); }
.btn--outline { border-color: var(--sage); color: var(--sage-dark); background: transparent; }
.btn--outline:hover { background: rgba(109,143,95,0.08); }
.btn--dark { background: var(--sage-dark); color: #fff; }
.btn--dark:hover { background: var(--sage-deep); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: rgba(38,50,35,0.06); }

/* ---------- header (sticky, façon Éduc'Canine) ---------- */
.site-header {
    position: sticky; top: 0; left: 0; right: 0; z-index: 50;
    padding: 16px 0;
    background: rgba(247,250,241,0.86);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.solid { box-shadow: 0 2px 16px rgba(38,50,35,0.08); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: 'Newsreader', serif; font-weight: 500; font-size: 20px; color: var(--ink); text-decoration: none; display: flex; align-items: center; gap: 8px; }
.logo-icon { width: 52px; height: 52px; object-fit: cover; border-radius: 50%; flex-shrink: 0; }
.logo .brand-mark { font-size: 21px; }
nav.main-nav { display: flex; gap: 26px; align-items: center; }
nav.main-nav a { color: var(--ink-soft); text-decoration: none; font-size: 14.5px; font-weight: 500; transition: color 0.2s ease; position: relative; }
nav.main-nav a:not(.btn):after { content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 1px; background: var(--wheat); transition: width 0.25s ease; }
nav.main-nav a:not(.btn):hover { color: var(--ink); }
nav.main-nav a:not(.btn):hover:after { width: 100%; }
.nav-toggle { display: none; }
.espace-pro-link { font-family: 'Space Mono', monospace; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-soft) !important; opacity: 0.6; text-decoration: none !important; }
.espace-pro-link:hover { opacity: 1; }
.espace-pro-link:after { display: none !important; }

@media (max-width: 860px) {
    nav.main-nav { position: fixed; top: 0; right: 0; transform: translateX(100%); height: 100vh; width: min(320px, 84vw); background: var(--paper); flex-direction: column; justify-content: center; align-items: flex-start; padding: 40px; gap: 22px; transition: transform 0.3s ease; box-shadow: -8px 0 30px rgba(0,0,0,0.12); }
    nav.main-nav.open { transform: translateX(0); }
    nav.main-nav a { color: var(--ink) !important; font-size: 17px; }
    .nav-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 60; }
    .nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: 0.3s; }
}

/* ---------- bandeau différenciant (marquee défilant) ---------- */
.trust-strip { background: var(--sage-deep); color: var(--paper); position: relative; z-index: 5; padding: 14px 0; overflow: hidden; }
.marquee { width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: inline-flex; width: max-content; white-space: nowrap; -webkit-animation: marqueeScroll 28s linear infinite; animation: marqueeScroll 28s linear infinite; -webkit-transform: translateZ(0); transform: translateZ(0); -webkit-backface-visibility: hidden; backface-visibility: hidden; will-change: transform; }
@media (hover: hover) and (pointer: fine) {
    .trust-strip:hover .marquee__track { -webkit-animation-play-state: paused; animation-play-state: paused; }
}
.marquee__item { flex: 0 0 auto; font-family: 'Space Mono', monospace; text-transform: uppercase; letter-spacing: 0.06em; font-size: 12.5px; font-weight: 700; color: var(--paper); white-space: nowrap; }
.marquee__sep { flex: 0 0 auto; color: var(--wheat-light); opacity: 0.85; margin: 0 20px; font-size: 11px; }
@-webkit-keyframes marqueeScroll { from { -webkit-transform: translateX(0); transform: translateX(0); } to { -webkit-transform: translateX(-50%); transform: translateX(-50%); } }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { -webkit-animation: none; animation: none; } .marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; } }

/* ---------- hero (grid clair, façon Éduc'Canine) ---------- */
.hero { padding: 64px 0 84px; position: relative; background: var(--paper); }
@media (max-width: 760px) { .hero { padding: 40px 0 52px; } }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.hero-eyebrow { font-family: 'Space Mono', monospace; text-transform: uppercase; letter-spacing: 0.14em; font-size: 12.5px; color: var(--sage-dark); margin-bottom: 20px; display: inline-block; border: 1px solid rgba(109,143,95,0.4); padding: 5px 12px; border-radius: 20px; }
.hero h1 { font-size: clamp(2.2rem, 4.8vw, 3.6rem); max-width: 640px; margin-bottom: 22px; }
.hero-sub { font-size: 17.5px; color: var(--ink-soft); max-width: 480px; margin: 0 0 30px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-bottom: 36px; }
.hero-stats { display: flex; gap: 30px; border-top: 1px solid var(--line); padding-top: 22px; flex-wrap: wrap; }
.hero-stats .stat .num { font-family: 'Newsreader', serif; font-size: 1.7rem; font-weight: 500; color: var(--sage-dark); }
.hero-stats .stat .lbl { font-size: 0.76rem; color: var(--ink-soft); margin-top: 2px; }
.hero-frame { border-radius: 10px; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 30px 60px -20px rgba(38,50,35,0.30); max-width: 380px; margin-left: auto; position: relative; }
@media (max-width: 880px) { .hero-frame { margin: 0 auto; max-width: 300px; } }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; animation: slowzoom 18s ease-in-out infinite alternate; }
@keyframes slowzoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero-badge { position: absolute; bottom: -16px; left: -16px; background: var(--sage-dark); color: var(--paper); border-radius: 50%; width: 92px; height: 92px; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 12px 26px rgba(38,50,35,0.32); text-align: center; }
.hero-badge .n { font-family: 'Newsreader', serif; font-size: 1.3rem; font-weight: 600; }
.hero-badge .s { font-family: 'Space Mono', monospace; font-size: 0.5rem; letter-spacing: 0.05em; text-transform: uppercase; margin-top: 2px; color: var(--wheat-light); }

/* ---------- section generic ---------- */
section { padding: 88px 0; }
@media (max-width: 700px) { section { padding: 56px 0; } }
.section-stone { background: var(--paper); }
.section-deep { background: var(--paper-2); }
.eyebrow { font-family: 'Space Mono', monospace; text-transform: uppercase; letter-spacing: 0.12em; font-size: 12.5px; color: var(--wheat); font-weight: 700; margin-bottom: 14px; display: block; }
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
.section-head p { font-size: 16.5px; color: var(--ink-soft); margin-top: 14px; }

/* ---------- vie en collectivité (3 cartes) ---------- */
.vie-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 10px; }
.vie-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 780px; margin-left: auto; margin-right: auto; }
.vie-card { background: var(--card); border-radius: 10px; padding: 32px 28px; box-shadow: var(--shadow); transition: transform 0.25s ease; }
.vie-card:hover { transform: translateY(-4px); }
.vie-card .vie-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.vie-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.vie-card p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
@media (max-width: 860px) { .vie-grid { grid-template-columns: 1fr; } }

/* ---------- tampons / inclus ---------- */
.stamp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 10px; }
.stamp-card { background: var(--card); border: 1.5px dashed rgba(109,143,95,0.45); border-radius: var(--radius); padding: 26px 20px; position: relative; }
.stamp-card .stamp-icon { font-size: 26px; margin-bottom: 10px; display: block; }
.stamp-card .stamp-label { font-family: 'Space Mono', monospace; text-transform: uppercase; letter-spacing: 0.06em; font-size: 12.5px; font-weight: 700; color: var(--sage-dark); display: block; margin-bottom: 8px; }
.stamp-card p { font-size: 14.5px; margin: 0; color: var(--ink-soft); }
.rare-badge { position: absolute; top: -11px; right: 16px; background: var(--wheat); color: var(--ink); font-family: 'Space Mono', monospace; text-transform: uppercase; letter-spacing: 0.06em; font-size: 10.5px; font-weight: 700; padding: 3px 10px; border-radius: 20px; box-shadow: 0 2px 6px rgba(0,0,0,0.12); }
@media (max-width: 860px) { .stamp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .stamp-grid { grid-template-columns: 1fr; } }

/* ---------- catégorie 1 & 2 ---------- */
.cat-block { background: var(--card); border-radius: 12px; padding: 40px; box-shadow: var(--shadow); border-left: 4px solid var(--wheat); }
@media (max-width: 700px) { .cat-block { padding: 28px 22px; } }
.cat-block h3 { font-size: 1.3rem; margin-bottom: 14px; }
.cat-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
@media (max-width: 700px) { .cat-list { grid-template-columns: 1fr; } }
.cat-list li { font-size: 14.5px; color: var(--ink-soft); padding-left: 26px; position: relative; }
.cat-list li::before { content: "✓"; position: absolute; left: 0; color: var(--sage-dark); font-weight: 700; }
.cat-note { margin-top: 22px; font-size: 14px; color: var(--ink-soft); font-style: italic; }

/* ---------- galerie permanente (grille statique) ---------- */
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 12px; }
.photo-item { position: relative; border-radius: 8px; overflow: hidden; margin: 0; }
.photo-item--wide { grid-column: span 2; }
.photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.photo-item:hover img { transform: scale(1.05); }
.photo-item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 12px; background: linear-gradient(0deg, rgba(38,50,35,0.72), transparent); color: #fff; font-size: 12px; font-weight: 500; }
@media (max-width: 860px) { .photo-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; } .photo-item--wide { grid-column: span 2; } }
@media (max-width: 520px) { .photo-grid { grid-template-columns: 1fr; } .photo-item--wide { grid-column: span 1; } }

/* ---------- carrousel plein format (fonctionne quel que soit le nombre de photos) ---------- */
.carousel-single { position: relative; border-radius: 10px; overflow: hidden; height: 440px; background: var(--sage-deep); }
.carousel-single .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.7s ease; }
.carousel-single .slide.active { opacity: 1; z-index: 2; }
.carousel-single .slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-single .slide figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 20px; background: linear-gradient(0deg, rgba(38,50,35,0.78), transparent); color: #fff; font-family: 'Space Mono', monospace; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.05em; }
.car-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 42px; height: 42px; border-radius: 50%; border: none; background: rgba(255,255,255,0.88); color: var(--ink); font-size: 20px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s ease, transform 0.2s ease; }
.car-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.car-arrow--prev { left: 14px; }
.car-arrow--next { right: 14px; }
.car-counter { position: absolute; top: 14px; right: 14px; z-index: 5; background: rgba(38,50,35,0.65); color: #fff; font-family: 'Space Mono', monospace; font-size: 11.5px; padding: 4px 11px; border-radius: 20px; }
@media (max-width: 780px) { .carousel-single { height: 320px; } .car-arrow { width: 36px; height: 36px; font-size: 16px; } }
@media (max-width: 520px) { .carousel-single { height: 260px; } }
@media (prefers-reduced-motion: reduce) { .carousel-single .slide { transition: none; } }

/* ---------- galerie carrousel (ancien système, conservé pour compat) ---------- */
.carousel { display: flex; gap: 10px; height: 380px; border-radius: 10px; overflow: hidden; }
.car-item { flex: 1; border-radius: 6px; overflow: hidden; transition: flex 1s cubic-bezier(.4,0,.2,1); cursor: pointer; min-width: 0; position: relative; }
.car-item.active { flex: 5; }
.car-item img { width: 100%; height: 100%; object-fit: cover; }
.car-item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px; background: linear-gradient(0deg, rgba(38,50,35,0.75), transparent); color: #fff; font-family: 'Space Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; opacity: 0; transition: opacity 0.3s ease; }
.car-item.active figcaption { opacity: 1; }
@media (max-width: 780px) { .carousel { height: 280px; gap: 6px; } .car-item.active { flex: 4; } }
@media (max-width: 520px) { .carousel { height: 220px; } }
.galerie-note { text-align: center; margin-top: 20px; font-size: 13.5px; color: var(--ink-soft); }

/* ---------- tarifs ---------- */
.tarifs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 10px; }
@media (max-width: 780px) { .tarifs-grid { grid-template-columns: 1fr; } }
.tarif-card { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 32px 28px; position: relative; transition: transform 0.25s ease, box-shadow 0.25s ease; text-align: center; }
.tarif-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tarif-card.featured { border: 2px solid var(--wheat); }
.tarif-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--wheat); color: var(--ink); font-size: 0.72rem; font-weight: 700; padding: 4px 14px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.03em; white-space: nowrap; }
.tarif-name { font-size: 1rem; font-weight: 600; margin-bottom: 14px; color: var(--ink-soft); }
.tarif-price { font-family: 'Newsreader', serif; font-size: 2.4rem; font-weight: 500; color: var(--sage-dark); margin-bottom: 6px; }
.tarif-price span { font-size: 1.1rem; color: var(--ink-soft); }
.tarif-desc { font-size: 0.88rem; color: var(--ink-soft); }
.tarif-note { margin-top: 30px; padding: 22px 26px; background: var(--sage-deep); color: var(--paper); border-radius: var(--radius); font-size: 15px; }
.tarif-note strong { color: var(--wheat-light); }

/* ---------- avis ---------- */
.rating-badge { display: flex; align-items: center; gap: 12px; background: var(--card); border: 1px solid var(--line); padding: 12px 20px; border-radius: 40px; margin: 0 auto 44px; width: fit-content; }
.rating-badge .score { font-family: 'Newsreader', serif; font-size: 22px; font-weight: 600; }
.rating-badge .stars { color: var(--wheat); letter-spacing: 2px; font-size: 15px; }
.rating-badge a { font-size: 13.5px; color: var(--sage-dark); text-decoration: underline; }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.review-card { background: var(--card); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.review-card .quote-mark { font-family: 'Newsreader', serif; font-size: 46px; color: var(--wheat); line-height: 0.5; display: block; margin-bottom: 14px; }
.review-card p.quote { font-size: 16px; font-style: italic; color: var(--ink); }
.review-card .who { margin-top: 18px; font-size: 13.5px; color: var(--sage-dark); font-weight: 600; }
.review-card .stars { color: var(--wheat); font-size: 13px; letter-spacing: 2px; }
@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ---------- infos pratiques ---------- */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 10px; }
.info-card { background: var(--card); border-radius: var(--radius); padding: 24px 26px; border-left: 3px solid var(--wheat); }
.info-card h4 { font-size: 17px; margin-bottom: 8px; }
.info-card p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
@media (max-width: 860px) { .info-grid { grid-template-columns: 1fr; } }

/* ---------- contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h3 { font-size: 20px; margin-bottom: 18px; }
.contact-info ul { list-style: none; padding: 0; margin: 0 0 26px; }
.contact-info li { margin-bottom: 12px; font-size: 15.5px; }
.contact-info li a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--wheat); }
.map-embed { margin-top: 22px; border-radius: 10px; overflow: hidden; height: 240px; background: var(--paper-2); display: flex; align-items: center; justify-content: center; text-align: center; padding: 20px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-embed p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }
.btn--small { padding: 8px 16px; font-size: 13px; margin-top: 10px; }
.contact-form label { display: block; font-size: 13px; font-weight: 600; margin: 16px 0 6px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--sage-dark); }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius); font-family: 'Inter', sans-serif; font-size: 15px; background: #fff; }
.contact-form textarea { min-height: 90px; resize: vertical; }
.contact-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form button { margin-top: 24px; width: 100%; justify-content: center; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
@media (max-width: 860px) { .contact-wrap { grid-template-columns: 1fr; gap: 36px; } .contact-form .row2 { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
footer.site-footer { background: var(--sage-deep); color: rgba(247,250,241,0.75); padding: 56px 0 26px; font-size: 14px; }
footer .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
footer h5 { font-family: 'Newsreader', serif; color: #fff; font-size: 17px; margin-bottom: 14px; }
footer a { color: rgba(247,250,241,0.75); text-decoration: none; }
footer a:hover { color: #fff; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12.5px; opacity: 0.75; }
@media (max-width: 860px) { footer .footer-grid { grid-template-columns: 1fr; } }

/* ---------- boutons flottants ---------- */
.float-actions { position: fixed; right: 22px; bottom: 22px; z-index: 150; display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.call-float { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: var(--sage-dark); color: #fff; text-decoration: none; font-weight: 600; font-size: 14.5px; box-shadow: 0 8px 24px rgba(38,50,35,0.30); transition: transform 0.2s ease, background 0.2s ease; position: relative; }
.call-float:hover { background: var(--sage-deep); transform: translateY(-2px); color: #fff; }
.call-float .ring { position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--wheat); opacity: 0; animation: callPulse 2.6s ease-out infinite; pointer-events: none; }
.call-float .phone-icon { font-size: 22px; line-height: 1; }
.call-float .label { display: none; }
.fb-float { width: 52px; height: 52px; border-radius: 50%; background: #1877F2; color: #fff; display: flex; align-items: center; justify-content: center; font-family: Georgia, 'Times New Roman', serif; font-weight: 700; font-size: 24px; text-decoration: none; box-shadow: 0 8px 20px rgba(24,119,242,0.35); transition: transform 0.2s ease, background 0.2s ease; }
.fb-float:hover { background: #125fc4; transform: translateY(-2px); color: #fff; }
.ig-float { width: 52px; height: 52px; border-radius: 50%; background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); color: #fff; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 8px 20px rgba(214,36,159,0.35); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.ig-float:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(214,36,159,0.45); color: #fff; }
@keyframes callPulse { 0% { opacity: 0.65; transform: scale(0.92); } 70% { opacity: 0; transform: scale(1.18); } 100% { opacity: 0; transform: scale(1.18); } }
@media (max-width: 560px) { .float-actions { right: 16px; bottom: 16px; gap: 12px; } .fb-float, .ig-float { width: 48px; height: 48px; font-size: 21px; } }
@media (prefers-reduced-motion: reduce) { .call-float .ring { animation: none; display: none; } }

/* ---------- cookie banner ---------- */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: var(--sage-deep); color: var(--paper); padding: 20px 24px; display: none; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; box-shadow: 0 -6px 24px rgba(0,0,0,0.2); }
.cookie-banner.show { display: flex; }
.cookie-banner__text { flex: 1 1 420px; font-size: 13.5px; }
.cookie-banner__text a { color: var(--wheat-light); }
.cookie-banner__actions { display: flex; gap: 12px; }
.cookie-banner .btn--ghost { color: var(--paper); border-color: rgba(255,255,255,0.3); }
.cookie-banner .btn--ghost:hover { background: rgba(255,255,255,0.08); }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- legal pages ---------- */
.legal-page { padding: 70px 0 100px; max-width: 820px; }
.legal-page h1 { font-size: 2.2rem; margin-bottom: 30px; }
@media (max-width: 700px) { .legal-page { padding: 50px 0 70px; } .legal-page h1 { font-size: 1.7rem; } }
.legal-page h2 { font-size: 1.3rem; margin: 34px 0 12px; color: var(--sage-dark); }
.legal-page p, .legal-page li { font-size: 15px; color: var(--ink-soft); }
.legal-page ul { padding-left: 20px; }
