/* ============================================
   Healthy Club — style.css
   Premium, modern, minimal design system
   ============================================ */

/* ---------- Variables ---------- */
:root {
    --green: #BC3026;
    --green-dark: #8E1F17;
    --orange: #D8A657;
    --white: #FFFFFF;
    --bg: #FBFAF7;
    --cream: #D8D5C6;
    --text-dark: #2A2422;
    --text-light: #6B645E;
    --border: #ECE8DF;
    --shadow-sm: 0 2px 8px rgba(42, 36, 34, 0.06);
    --shadow-md: 0 8px 28px rgba(42, 36, 34, 0.08);
    --shadow-lg: 0 22px 60px rgba(42, 36, 34, 0.12);
    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 26px;
    --radius-xl: 36px;
    --max: 1240px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --header-h: 78px;
    --font-head: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; color: var(--text-dark); }
section { scroll-margin-top: var(--header-h); }
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 6px; }
.skip-link { position: absolute; top: -60px; left: 16px; background: var(--green); color: #fff; padding: 10px 18px; border-radius: 8px; z-index: 2000; transition: top .25s; }
.skip-link:focus { top: 16px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); margin: 14px 0 16px; }
.section-head p { color: var(--text-light); font-size: 1.06rem; }
.eyebrow {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-dark);
    background: rgba(188,48,38,0.12);
    padding: 7px 16px;
    border-radius: 999px;
}
.accent { color: var(--green); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 26px;
    border-radius: 999px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s;
    white-space: nowrap;
    cursor: pointer;
}
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 8px 22px rgba(188,48,38,0.32); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-3px); box-shadow: 0 14px 32px rgba(142,31,23,0.4); }
.btn-ghost { background: rgba(255, 255, 255, 0.14); color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.5); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.24); transform: translateY(-3px); }
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-glow { box-shadow: 0 0 0 0 rgba(188,48,38,0.6); animation: btnPulse 2.6s infinite; }

@keyframes btnPulse {
    0% { box-shadow: 0 8px 22px rgba(188,48,38,0.4), 0 0 0 0 rgba(188,48,38,0.5); }
    70% { box-shadow: 0 8px 22px rgba(188,48,38,0.4), 0 0 0 18px rgba(188,48,38,0); }
    100% { box-shadow: 0 8px 22px rgba(188,48,38,0.4), 0 0 0 0 rgba(188,48,38,0); }
}

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    box-shadow: 0 2px 20px rgba(31, 41, 55, 0.06);
}
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 1.28rem; color: var(--text-dark); }
.logo-mark { display: inline-flex; }
.logo-img { height: 44px; width: auto; transition: height .3s; }
.logo-light .logo-img { height: 48px; }
.header.scrolled .logo-img { height: 40px; }
.logo-text span { color: var(--green); }
.header.scrolled .logo { color: var(--text-dark); }
.header:not(.scrolled) .logo { color: #fff; }
.header:not(.scrolled) .logo-text span { color: var(--orange); }

.nav-list { display: flex; align-items: center; gap: 30px; }
.nav-list a {
    font-weight: 500;
    font-size: 0.94rem;
    color: var(--text-dark);
    position: relative;
    transition: color .25s;
}
.header:not(.scrolled) .nav-list a { color: #fff; }
.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 2px;
    background: var(--green);
    transition: width .3s var(--ease);
}
.nav-list a:hover::after, .nav-list a.active::after { width: 100%; }
.nav-list a:hover { color: var(--green); }
.header:not(.scrolled) .nav-list a:hover { color: var(--orange); }

.header .book-now { padding: 11px 24px; font-size: 0.9rem; }
.mobile-book { display: none; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; z-index: 1001; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--text-dark); border-radius: 4px; transition: transform .3s, opacity .3s; }
.header:not(.scrolled) .nav-toggle span { background: #fff; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.nav-close { display: none; position: absolute; top: 18px; right: 22px; font-size: 2rem; line-height: 1; color: var(--text-dark); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?w=1920&q=85&auto=format&fit=crop') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.16); } }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(20, 40, 20, 0.82) 0%, rgba(20, 45, 25, 0.55) 45%, rgba(30, 50, 30, 0.3) 100%);
}
.hero-inner { position: relative; z-index: 2; padding-top: var(--header-h); }
.hero-content { max-width: 660px; color: #fff; }
.hero-content .eyebrow { background: rgba(255, 255, 255, 0.14); color: #fff; border: 1px solid rgba(255, 255, 255, 0.25); }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); color: #fff; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 22px; }
.hero-sub { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: rgba(255, 255, 255, 0.92); margin-bottom: 34px; max-width: 560px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 42px; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 22px; }
.trust-badges li { display: flex; align-items: center; gap: 9px; font-size: 0.9rem; font-weight: 500; color: rgba(255, 255, 255, 0.95); }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 3px rgba(216,166,87,0.25); }

.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.6); border-radius: 14px; z-index: 2; }
.hero-scroll span { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: #fff; border-radius: 2px; animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 22px; } 100% { opacity: 0; } }

/* ---------- Why / Features ---------- */
.why { background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.feature-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-icon {
    width: 68px; height: 68px;
    margin: 0 auto 22px;
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    color: var(--green-dark);
    background: linear-gradient(135deg, rgba(188,48,38,0.18), rgba(188,48,38,0.05));
    transition: transform .5s var(--ease), background .4s, color .4s;
}
.feature-card:hover .feature-icon { transform: rotate(-8deg) scale(1.08); background: var(--green); color: #fff; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-light); font-size: 0.96rem; }

/* ---------- Meal Plans ---------- */
.meal-plans { background: linear-gradient(180deg, #fff 0%, var(--bg) 100%); }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.plan-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .45s var(--ease), box-shadow .45s var(--ease);
    display: flex; flex-direction: column;
}
.plan-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); }
.plan-featured { border: 2px solid var(--green); box-shadow: 0 18px 50px rgba(188,48,38,0.18); }
.plan-badge {
    position: absolute; top: 16px; right: 16px; z-index: 3;
    background: var(--orange); color: #fff;
    font-family: var(--font-head); font-weight: 600; font-size: 0.74rem;
    letter-spacing: 0.04em;
    padding: 6px 14px; border-radius: 999px;
    box-shadow: 0 6px 16px rgba(216,166,87,0.4);
}
.plan-media { aspect-ratio: 16/10; overflow: hidden; }
.plan-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.plan-card:hover .plan-media img { transform: scale(1.08); }
.plan-body { padding: 28px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.plan-tag { font-family: var(--font-head); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); }
.plan-body h3 { font-size: 1.45rem; margin: 6px 0 16px; }
.plan-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.plan-meta span {
    font-size: 0.78rem; font-weight: 500;
    color: var(--text-light);
    background: var(--bg);
    padding: 5px 12px; border-radius: 999px;
}
.plan-features { margin-bottom: 24px; flex: 1; }
.plan-features li { position: relative; padding-left: 28px; margin-bottom: 10px; font-size: 0.92rem; color: var(--text-dark); }
.plan-features li::before {
    content: ''; position: absolute; left: 0; top: 8px;
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/10px no-repeat;
}
.plan-foot { display: flex; align-items: center; justify-content: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--border); }
.plan-price { font-family: var(--font-head); font-weight: 700; color: var(--text-dark); font-size: 1.3rem; line-height: 1; }
.plan-price small { display: block; font-size: 0.68rem; font-weight: 500; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.plan-price span { font-size: 0.82rem; font-weight: 500; color: var(--text-light); }
.plan-foot .btn { padding: 11px 20px; font-size: 0.86rem; }

/* ---------- How It Works ---------- */
.how { background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; position: relative; }
.steps-grid::before {
    content: ''; position: absolute; top: 50px; left: 12%; right: 12%; height: 2px;
    background: repeating-linear-gradient(90deg, var(--green) 0 10px, transparent 10px 20px);
    opacity: 0.4; z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; padding: 0 12px; }
.step-num {
    width: 44px; height: 44px; margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--green);
    color: var(--green-dark);
    font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 2;
    transition: transform .4s var(--ease), background .4s, color .4s;
}
.step:hover .step-num { background: var(--green); color: #fff; transform: scale(1.12); }
.step-icon { color: var(--green-dark); margin-bottom: 14px; display: flex; justify-content: center; }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--text-light); font-size: 0.92rem; }

/* ---------- Gallery ---------- */
.gallery { background: var(--bg); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item {
    position: relative; overflow: hidden; border-radius: var(--radius);
    border: 0; padding: 0; cursor: pointer;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery-item::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(142,31,23,0.6) 100%);
    opacity: 0; transition: opacity .4s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::before {
    content: '+';
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 2.4rem; font-weight: 300;
    opacity: 0; transform: scale(0.6); transition: opacity .4s, transform .4s var(--ease);
    z-index: 2;
}
.gallery-item:hover::before { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 3000;
    background: rgba(15, 25, 18, 0.92);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    opacity: 0; visibility: hidden;
    transition: opacity .35s, visibility .35s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 14px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); transform: scale(0.92); transition: transform .4s var(--ease); }
.lightbox.open img { transform: scale(1); }
.lightbox-close { position: absolute; top: 24px; right: 30px; color: #fff; font-size: 2.4rem; line-height: 1; background: rgba(255,255,255,0.12); width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* ---------- Stats ---------- */
.stats {
    background: linear-gradient(125deg, var(--green-dark) 0%, #5a1410 60%, var(--green) 120%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.stats::before {
    content: ''; position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?w=1400&q=70&auto=format&fit=crop') center/cover;
    opacity: 0.12;
}
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem, 4vw, 3.4rem); color: #fff; line-height: 1; }
.stat-num::after { content: attr(data-suffix); }
.stat-label { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin-top: 8px; font-weight: 500; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--white); }
.slider { max-width: 820px; margin: 0 auto; position: relative; }
.slides { overflow: hidden; border-radius: var(--radius-lg); }
.slide {
    display: none;
    flex-direction: column; align-items: center; text-align: center;
    padding: 50px 40px;
    background: var(--bg);
    border-radius: var(--radius-lg);
}
.slide.active { display: flex; animation: slideIn .5s var(--ease); }
@keyframes slideIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
.slide img { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; border: 4px solid #fff; box-shadow: var(--shadow-md); margin-bottom: 18px; }
.stars { color: var(--orange); font-size: 1.15rem; letter-spacing: 2px; margin-bottom: 18px; }
.slide blockquote { font-size: 1.1rem; color: var(--text-dark); line-height: 1.7; max-width: 620px; margin-bottom: 20px; font-style: italic; }
.slide figcaption { font-size: 0.96rem; }
.slide figcaption strong { color: var(--text-dark); font-family: var(--font-head); display: block; }
.slide figcaption span { color: var(--text-light); font-size: 0.86rem; }
.slider-nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 28px; }
.slider-btn {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--white); border: 1px solid var(--border);
    color: var(--green-dark); font-size: 1.5rem; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    transition: background .3s, color .3s, transform .3s, box-shadow .3s;
    box-shadow: var(--shadow-sm);
}
.slider-btn:hover { background: var(--green); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.slider-dots { display: flex; gap: 10px; }
.slider-dots button { width: 10px; height: 10px; border-radius: 50%; background: var(--border); transition: background .3s, transform .3s; }
.slider-dots button.active { background: var(--green); transform: scale(1.3); }

/* ---------- FAQ ---------- */
.faq { background: var(--bg); }
.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .3s; }
.accordion-item:hover { box-shadow: var(--shadow-md); }
.accordion-head {
    width: 100%; text-align: left;
    padding: 22px 26px;
    font-family: var(--font-head); font-weight: 600; font-size: 1.04rem; color: var(--text-dark);
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.accordion-icon { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.accordion-icon::before, .accordion-icon::after { content: ''; position: absolute; background: var(--green); border-radius: 2px; transition: transform .35s var(--ease); }
.accordion-icon::before { top: 50%; left: 0; width: 22px; height: 3px; transform: translateY(-50%); }
.accordion-icon::after { left: 50%; top: 0; width: 3px; height: 22px; transform: translateX(-50%); }
.accordion-head[aria-expanded="true"] .accordion-icon::after { transform: translateX(-50%) scaleY(0); }
.accordion-head[aria-expanded="true"] { color: var(--green-dark); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.accordion-body p { padding: 0 26px 24px; color: var(--text-light); font-size: 0.97rem; }

/* ---------- Final CTA ---------- */
.final-cta { position: relative; padding: 120px 0; overflow: hidden; }
.final-cta-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?w=1920&q=85&auto=format&fit=crop') center/cover fixed;
}
.final-cta-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(142,31,23,0.92) 0%, rgba(142,31,23,0.88) 100%);
}
.final-cta-inner { position: relative; z-index: 2; text-align: center; color: #fff; max-width: 720px; margin: 0 auto; }
.final-cta-inner h2 { font-size: clamp(2rem, 4vw, 3.2rem); color: #fff; margin-bottom: 18px; }
.final-cta-inner p { font-size: 1.15rem; color: rgba(255,255,255,0.92); margin-bottom: 36px; }

/* ---------- Footer ---------- */
.footer { background: #2a1a18; color: rgba(255,255,255,0.7); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer .logo { color: #fff; margin-bottom: 18px; }
.footer .logo-text span { color: var(--green); }
.footer-about p { font-size: 0.92rem; line-height: 1.7; margin-bottom: 22px; max-width: 340px; }
.socials { display: flex; gap: 12px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: #fff; transition: background .3s, transform .3s; }
.socials a:hover { background: var(--green); transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-size: 1.02rem; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 0.92rem; color: rgba(255,255,255,0.7); transition: color .25s, padding .25s; }
.footer-col ul li a:hover { color: var(--green); padding-left: 5px; }
.footer-contact li { font-size: 0.92rem; line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.88rem; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.footer-legal a:hover { color: var(--green); }

/* ---------- Scroll to top ---------- */
.scroll-top {
    position: fixed; bottom: 26px; right: 26px; z-index: 900;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--green); color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(188,48,38,0.45);
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: opacity .35s, visibility .35s, transform .35s, background .3s;
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--green-dark); transform: translateY(-3px); }
