/* ═══════════════════════════════════════════════════════════
   FULL SERVICE — LawnHosting Template
   Premium, sophisticated design for established companies.
   Rich imagery, layered sections, confidence-building layout.
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;0,6..12,800;1,6..12,400&display=swap');

:root {
    --primary: #16a34a;
    --primary-dark: #1f5a3e;
    --primary-deeper: #174430;
    --primary-light: #eef6f1;
    --secondary: #0f172a;
    --secondary-mid: #2a2f35;
    --accent: #f59e0b;
    --accent-light: #fdf5e8;
    --text: #2a2f35;
    --text-light: #5d6570;
    --text-muted: #9ca3ab;
    --bg: #ffffff;
    --bg-warm: #faf9f7;
    --bg-stone: #f4f2ee;
    --bg-dark: #1b1f23;
    --border: #e4e2dd;
    --border-light: #efeee9;
    --shadow-sm: 0 2px 6px rgba(27,31,35,0.05);
    --shadow-md: 0 6px 20px rgba(27,31,35,0.07);
    --shadow-lg: 0 12px 36px rgba(27,31,35,0.09);
    --shadow-xl: 0 24px 56px rgba(27,31,35,0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 14px;
    --radius-xl: 22px;
    --font-heading: 'Libre Baskerville', Georgia, serif;
    --font-body: 'Nunito Sans', -apple-system, sans-serif;
    --max-width: 1200px;
    --nav-height: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--text); line-height: 1.75; font-size: 15px; background: var(--bg); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.3; color: var(--secondary); }
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 700; }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 30px; border-radius: var(--radius-sm); font-family: var(--font-body);
    font-weight: 700; font-size: 13px; border: 2px solid transparent;
    cursor: pointer; transition: all 0.3s ease; text-decoration: none;
    text-transform: uppercase; letter-spacing: 1.2px;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(43,110,79,0.25); }
.btn-secondary { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-secondary:hover { background: var(--primary); color: #fff; }
.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { background: #c0852e; border-color: #c0852e; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--secondary); border-color: #fff; }
.btn-white:hover { background: var(--primary-light); border-color: var(--primary-light); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: #fff; color: var(--secondary); border-color: #fff; }
.btn-lg { padding: 16px 38px; font-size: 14px; }

/* ── Top Strip ── */
.fs-strip {
    background: var(--primary-deeper); color: rgba(255,255,255,0.8);
    padding: 10px 0; font-size: 12px; font-weight: 600; letter-spacing: 0.3px;
}
.fs-strip-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.fs-strip-left { display: flex; gap: 28px; align-items: center; }
.fs-strip-left a { color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.fs-strip-left a:hover { color: #fff; }
.fs-strip-right { display: flex; gap: 10px; }
.fs-strip-right a { color: rgba(255,255,255,0.5); font-size: 13px; transition: color 0.2s; }
.fs-strip-right a:hover { color: #fff; }

/* ── Navigation ── */
.fs-nav {
    background: #fff; position: sticky; top: 0; z-index: 1000;
    height: var(--nav-height); display: flex; align-items: center;
    transition: box-shadow 0.3s; border-bottom: 1px solid transparent;
}
.fs-nav.scrolled { box-shadow: var(--shadow-md); border-bottom-color: var(--border-light); }
.fs-nav-inner {
    max-width: var(--max-width); margin: 0 auto; padding: 0 28px;
    width: 100%; display: flex; justify-content: space-between; align-items: center;
}
.fs-logo { display: flex; align-items: center; gap: 12px; color: var(--secondary); flex-shrink: 0; }
.fs-logo img { height: 48px; width: auto; object-fit: contain; }
.fs-logo-text { font-family: var(--font-heading); font-size: 20px; font-weight: 700; }
.fs-nav-links { display: flex; gap: 4px; align-items: center; }
.fs-nav-links a {
    color: var(--text-light); font-weight: 700; font-size: 12px; padding: 8px 14px;
    border-radius: var(--radius-sm); transition: all 0.2s;
    text-transform: uppercase; letter-spacing: 0.8px;
}
.fs-nav-links a:hover { color: var(--primary); background: var(--primary-light); }
.fs-nav-links a.active { color: var(--primary); }
.fs-nav-cta {
    background: var(--accent) !important; color: #fff !important;
    padding: 10px 24px !important; border-radius: var(--radius-sm) !important;
    text-transform: uppercase !important; letter-spacing: 1px !important; margin-left: 10px; font-weight: 800 !important;
}
.fs-nav-cta:hover { background: #c0852e !important; }

.fs-nav-login {
    border: 1.5px solid var(--border, #e5e4e0);
    padding: 8px 18px !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    color: var(--text, #333) !important;
    background: transparent !important;
    transition: all 0.3s ease;
}
.fs-nav-login:hover {
    border-color: var(--primary, #16a34a);
    color: var(--primary, #16a34a) !important;
    background: transparent !important;
}

.fs-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.fs-nav-toggle span { display: block; width: 22px; height: 2px; background: var(--secondary); margin: 5px 0; transition: all 0.3s; }
.fs-nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.fs-nav-toggle.active span:nth-child(2) { opacity: 0; }
.fs-nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Sections ── */
.section { padding: 96px 0; }
.section-warm { background: var(--bg-warm); }
.section-stone { background: var(--bg-stone); }
.section-dark { background: var(--bg-dark); color: rgba(255,255,255,0.8); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-green { background: var(--primary); color: #fff; }
.section-green h2, .section-green h3 { color: #fff; }
.section-green p { color: rgba(255,255,255,0.85); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-header .subtitle { color: var(--text-light); font-size: 16px; max-width: 560px; margin: 0 auto; line-height: 1.8; }
.section-header .overline {
    display: inline-block; color: var(--accent); font-weight: 800;
    font-size: 11px; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 10px;
}
.section-header .divider { width: 48px; height: 3px; background: var(--accent); margin: 16px auto 0; border-radius: 2px; }

/* ── Hero ── */
.fs-hero {
    background: var(--secondary); color: #fff; padding: 0; position: relative;
    min-height: 540px; display: flex; align-items: center; overflow: hidden;
}
.fs-hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.fs-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.fs-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(27,31,35,0.85) 0%, rgba(43,110,79,0.6) 100%); z-index: 1; }
.fs-hero-content { position: relative; z-index: 2; padding: 80px 0; max-width: 640px; }
.fs-hero h1 { color: #fff; margin-bottom: 18px; }
.fs-hero-subtitle { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 32px; line-height: 1.9; }
.fs-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.fs-hero-badges { display: flex; gap: 20px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.15); }
.fs-hero-badge { display: flex; align-items: center; gap: 10px; }
.fs-hero-badge-icon { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 14px; }
.fs-hero-badge-text { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.7); }

/* ── Service Cards ── */
.fs-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); gap: 22px; }
.fs-service-card {
    background: #fff; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: all 0.35s; border: 1px solid var(--border-light);
}
.fs-service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.fs-service-card-image { height: 200px; overflow: hidden; position: relative; }
.fs-service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.fs-service-card:hover .fs-service-card-image img { transform: scale(1.05); }
.fs-service-card-badge { position: absolute; bottom: 14px; left: 14px; background: var(--primary); color: #fff; padding: 5px 14px; border-radius: var(--radius-sm); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; }
.fs-service-card-body { padding: 24px; }
.fs-service-card h3 { margin-bottom: 6px; }
.fs-service-card p { color: var(--text-light); font-size: 13px; margin-bottom: 14px; }
.fs-service-card-footer { display: flex; justify-content: space-between; align-items: center; }
.fs-service-card-price { color: var(--primary); font-weight: 800; font-size: 14px; }
.fs-service-card-link { color: var(--accent); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.fs-service-card-link:hover { gap: 9px; }

/* ── Content Split ── */
.fs-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.fs-split-image { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.fs-split-image img { width: 100%; height: 460px; object-fit: cover; }
.fs-split-image-accent { position: absolute; bottom: -16px; right: -16px; width: 140px; height: 140px; background: var(--accent); border-radius: var(--radius-lg); z-index: -1; }
.fs-split-body .overline { text-align: left; display: block; margin-bottom: 10px; color: var(--accent); font-weight: 800; font-size: 11px; text-transform: uppercase; letter-spacing: 3px; }
.fs-split-body h2 { text-align: left; margin-bottom: 16px; }
.fs-split-body p { color: var(--text-light); margin-bottom: 12px; line-height: 1.9; }

.fs-checklist { margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fs-checklist li { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text-light); }
.fs-checklist i { color: var(--primary); font-size: 12px; }

/* ── Stats Bar ── */
.fs-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.fs-stat { text-align: center; padding: 36px 16px; border-right: 1px solid rgba(255,255,255,0.1); }
.fs-stat:last-child { border-right: none; }
.fs-stat-num { font-family: var(--font-heading); font-size: 36px; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.fs-stat-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.5); }

/* ── Testimonials ── */
.fs-testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 24px; }
.fs-testimonial {
    background: #fff; border-radius: var(--radius-lg); padding: 32px;
    box-shadow: var(--shadow-sm); border: 1px solid var(--border-light);
    transition: box-shadow 0.3s; position: relative;
}
.fs-testimonial:hover { box-shadow: var(--shadow-md); }
.fs-testimonial-quote { position: absolute; top: 20px; right: 24px; font-size: 56px; line-height: 1; font-family: var(--font-heading); color: var(--primary-light); }
.fs-testimonial-stars { color: var(--accent); font-size: 13px; margin-bottom: 14px; display: flex; gap: 2px; }
.fs-testimonial-text { font-size: 15px; line-height: 1.85; color: var(--text-light); margin-bottom: 20px; font-style: italic; }
.fs-testimonial-author { font-weight: 800; font-size: 14px; color: var(--secondary); }
.fs-testimonial-location { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ── FAQ ── */
.fs-faq-list { max-width: 740px; margin: 0 auto; }
.fs-faq-item { border-bottom: 1px solid var(--border); }
.fs-faq-question { padding: 22px 0; font-family: var(--font-heading); font-weight: 700; font-size: 15px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--secondary); transition: color 0.2s; }
.fs-faq-question:hover { color: var(--primary); }
.fs-faq-toggle { flex-shrink: 0; transition: transform 0.3s; color: var(--accent); font-size: 12px; }
.fs-faq-item.active .fs-faq-toggle { transform: rotate(180deg); }
.fs-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s; }
.fs-faq-item.active .fs-faq-answer { max-height: 500px; padding-bottom: 22px; }
.fs-faq-answer p { color: var(--text-light); font-size: 14px; line-height: 1.9; }

/* ── Contact ── */
.fs-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.fs-contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.fs-contact-icon { width: 48px; height: 48px; background: var(--primary-light); color: var(--primary); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }

/* ── Forms ── */
.fs-form { display: flex; flex-direction: column; gap: 16px; }
.fs-form label { display: block; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-muted); margin-bottom: 4px; }
.fs-form input, .fs-form textarea, .fs-form select {
    width: 100%; padding: 14px 16px; border: 1px solid var(--border);
    border-radius: var(--radius-sm); font-size: 14px; font-family: var(--font-body);
    color: var(--text); background: #fff; transition: all 0.25s; outline: none;
}
.fs-form input:focus, .fs-form textarea:focus, .fs-form select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(43,110,79,0.06); }
.fs-form textarea { height: 130px; resize: vertical; }
.form-success { background: var(--primary-light); color: var(--primary-dark); padding: 14px; border-radius: var(--radius-sm); font-weight: 700; text-align: center; display: none; }
.form-success.show { display: block; }

/* ── Gallery ── */
.fs-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr)); gap: 18px; }
.fs-gallery-item { border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; position: relative; box-shadow: var(--shadow-sm); }
.fs-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.fs-gallery-item:hover img { transform: scale(1.05); }
.fs-gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,31,35,0.6) 0%, transparent 50%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 18px; color: #fff; font-weight: 700; font-size: 14px; }
.fs-gallery-item:hover .fs-gallery-overlay { opacity: 1; }

/* ── Blog ── */
.fs-blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 24px; }
.fs-blog-card { border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); transition: all 0.3s; }
.fs-blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.fs-blog-card-image { height: 210px; overflow: hidden; }
.fs-blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.fs-blog-card:hover .fs-blog-card-image img { transform: scale(1.05); }
.fs-blog-card-body { padding: 24px; }
.fs-blog-card-date { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); font-weight: 800; margin-bottom: 8px; }
.fs-blog-card h3 { margin-bottom: 8px; }
.fs-blog-card p { color: var(--text-light); font-size: 14px; }

/* ── Areas ── */
.fs-areas-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.fs-area-tag { background: #fff; padding: 10px 24px; border-radius: var(--radius-sm); font-weight: 700; font-size: 13px; color: var(--text); border: 1px solid var(--border); text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.25s; }
.fs-area-tag:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── Page Header ── */
.fs-page-header {
    background: var(--secondary); color: #fff; padding: 64px 0 56px;
    position: relative; overflow: hidden;
}
.fs-page-header::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(43,110,79,0.15) 0%, transparent 100%); pointer-events: none; }
.fs-page-header .container { position: relative; z-index: 1; }
.fs-page-header h1 { color: #fff; margin-bottom: 10px; font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.fs-page-header p { color: rgba(255,255,255,0.6); font-size: 16px; max-width: 540px; }
.fs-breadcrumbs { margin-bottom: 16px; font-size: 11px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 1.5px; }
.fs-breadcrumbs a { color: rgba(255,255,255,0.5); }
.fs-breadcrumbs a:hover { color: var(--accent); }

/* ── CTA ── */
.fs-cta { background: var(--primary); color: #fff; padding: 64px 0; text-align: center; position: relative; overflow: hidden; }
.fs-cta::before { content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%; background: radial-gradient(ellipse, rgba(255,255,255,0.06) 0%, transparent 70%); pointer-events: none; }
.fs-cta .container { position: relative; z-index: 1; }
.fs-cta h2 { color: #fff; margin-bottom: 12px; }
.fs-cta p { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 17px; }

/* ── Footer ── */
.fs-footer { background: var(--bg-dark); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.fs-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.fs-footer h4 { color: #fff; font-family: var(--font-body); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; }
.fs-footer p { font-size: 14px; line-height: 1.85; }
.fs-footer-links a { display: block; color: rgba(255,255,255,0.5); font-size: 14px; padding: 4px 0; transition: color 0.2s; }
.fs-footer-links a:hover { color: #fff; }
.fs-footer-contact p { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 14px; }
.fs-footer-contact i { color: var(--accent); width: 14px; text-align: center; }
.fs-social { display: flex; gap: 10px; margin-top: 20px; }
.fs-social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 14px; transition: all 0.25s; }
.fs-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.fs-footer-bottom { margin-top: 48px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 8px; }
.fs-footer-bottom a { color: rgba(255,255,255,0.4); }
.fs-footer-bottom a:hover { color: var(--accent); }

/* ── Animations ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.6s, transform 0.6s; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(28px); transition: opacity 0.6s, transform 0.6s; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .fs-split { grid-template-columns: 1fr; gap: 40px; }
    .fs-contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .fs-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .fs-stats { grid-template-columns: repeat(2, 1fr); }
    .fs-stat { border-bottom: 1px solid rgba(255,255,255,0.1); }
    .fs-checklist { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    :root { --nav-height: 64px; }
    .section { padding: 64px 0; }
    .fs-strip { display: none; }
    .fs-nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); flex-direction: column; justify-content: center; align-items: center; gap: 8px; z-index: 999; }
    .fs-nav-links.open { display: flex; }
    .fs-nav-links a { font-size: 16px; padding: 10px 24px; }
    .fs-nav-toggle { display: block; }
    .fs-hero { min-height: 420px; }
    .fs-hero-badges { flex-direction: column; gap: 12px; }
    .fs-services, .fs-testimonials, .fs-blog-grid { grid-template-columns: 1fr; }
    .fs-footer-grid { grid-template-columns: 1fr; }
    .fs-footer-bottom { justify-content: center; text-align: center; }
    .fs-stats { grid-template-columns: 1fr 1fr; }
}
