/*
Theme Name: Classic Stone Driveways
Theme URI: https://classicstonedriveways.co.uk
Author: Classic Stone Driveways
Description: Custom theme for Classic Stone Driveways - resin bound, aggregates and driveway specialists in Greater Manchester.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: classic-stone-driveways
*/

/* ===== CSS Variables ===== */
:root {
    --brand-green: #2d5a27;
    --brand-green-dark: #1e3d1a;
    --brand-green-light: #3a7332;
    --slate-900: #1a1a1a;
    --slate-700: #3d3d3d;
    --slate-500: #6b6b6b;
    --slate-300: #b0b0b0;
    --slate-100: #e8e8e8;
    --cream: #f7f5f0;
    --cream-dark: #ede9e0;
    --white: #ffffff;
    --accent-warm: #c4915e;
    --accent-red: #b34040;
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Outfit', 'Segoe UI', sans-serif;
    --header-height: 90px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--slate-700);
    line-height: 1.6;
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Top bar */
.header-top-bar {
    background: var(--brand-green-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
    padding: 0.5rem 0;
}

.header-top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.header-top-bar a {
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition);
}

.header-top-bar a:hover {
    color: var(--white);
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-contact span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.top-bar-contact svg {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.top-bar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background var(--transition), transform var(--transition);
}

.top-bar-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.top-bar-social svg {
    width: 14px;
    height: 14px;
    fill: var(--white);
}

/* Main header */
.header-main {
    padding: 0 0;
}

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 2rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Logo */
.site-logo {
    flex-shrink: 0;
}

.site-logo img {
    height: 50px;
    width: auto;
    transition: opacity var(--transition);
}

.site-logo a:hover img {
    opacity: 0.85;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.6rem 1.1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--slate-700);
    letter-spacing: 0.01em;
    position: relative;
    transition: color var(--transition);
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.1rem;
    right: 1.1rem;
    height: 2px;
    background: var(--brand-green);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a {
    color: var(--brand-green);
}

.nav-menu > li > a:hover::after,
.nav-menu > li.current-menu-item > a::after {
    transform: scaleX(1);
}

/* Dropdown arrow */
.nav-menu > li.menu-item-has-children > a .dropdown-arrow {
    width: 10px;
    height: 10px;
    transition: transform var(--transition);
}

.nav-menu > li.menu-item-has-children:hover > a .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown menu */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
}

.nav-menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a {
    display: block;
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
    color: var(--slate-700);
    transition: all var(--transition);
}

.sub-menu li a:hover {
    color: var(--brand-green);
    background: var(--cream);
    padding-left: 1.5rem;
}

/* Header CTA */
.header-cta {
    flex-shrink: 0;
}

.header-cta .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    background: var(--brand-green);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.header-cta .btn-cta:hover {
    background: var(--brand-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 90, 39, 0.3);
}

.header-cta .btn-cta svg {
    width: 16px;
    height: 16px;
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: all var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--slate-900);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-main {
    padding: 4rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

/* Footer - About column */
.footer-about .footer-logo img {
    height: 44px;
    width: auto;
    margin-bottom: 1.25rem;
    border-radius: 4px;
}

.footer-about p {
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 0.625rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--brand-green);
    border-color: var(--brand-green);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    fill: rgba(255, 255, 255, 0.7);
}

.footer-social a:hover svg {
    fill: var(--white);
}

/* Footer - Headings */
.footer-heading {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--brand-green-light);
    border-radius: 1px;
}

/* Footer - Quick Links */
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition);
}

.footer-links a::before {
    content: '';
    width: 6px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    transition: all var(--transition);
    flex-shrink: 0;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-links a:hover::before {
    width: 12px;
    background: var(--brand-green-light);
}

/* Footer - Areas */
.footer-areas .area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-areas .area-tag {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    font-size: 0.8125rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.65);
    transition: all var(--transition);
}

.footer-areas .area-tag:hover {
    background: rgba(45, 90, 39, 0.3);
    border-color: rgba(45, 90, 39, 0.5);
    color: var(--white);
}

.footer-areas .area-note {
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* Footer - Contact */
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.5;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--brand-green-light);
}

.footer-contact .trading-as {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== PAGE ===== */
.page-content {
    padding: 3rem 0 4rem;
    background: var(--cream);
    min-height: 60vh;
}

.page-content article {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    max-width: 860px;
}

.page-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--slate-900);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.page-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--slate-700);
}

.page-body p {
    margin-bottom: 1.25rem;
}

.page-body h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--slate-900);
    margin: 2rem 0 1rem;
}

.page-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--slate-900);
    margin: 1.75rem 0 0.75rem;
}

.page-body img {
    border-radius: 4px;
    margin: 1.5rem 0;
}

.page-body a {
    color: var(--brand-green);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.page-body a:hover {
    color: var(--brand-green-dark);
}

/* ===== BLOG ARCHIVE ===== */
.blog-archive {
    padding: 3rem 0 4rem;
    background: var(--cream);
    min-height: 60vh;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Blog Card */
.blog-card {
    background: var(--white);
    border-radius: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition);
}

.blog-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-card__image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.03);
}

.blog-card__content {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card__title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
}

.blog-card__title a {
    color: inherit;
}

.blog-card__title a:hover {
    color: var(--brand-green);
}

.blog-card__excerpt {
    font-size: 0.8125rem;
    line-height: 1.65;
    color: var(--slate-500);
    margin-bottom: 1rem;
    flex: 1;
}

.blog-card__excerpt p {
    margin: 0;
}

.blog-card__read-more {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--brand-green);
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    transition: color var(--transition);
}

.blog-card__read-more:hover {
    color: var(--brand-green-dark);
}

.blog-card__date {
    font-size: 0.75rem;
    color: var(--slate-300);
    padding-top: 0.75rem;
    border-top: 1px solid var(--slate-100);
    margin-top: auto;
}

/* Blog Pagination */
.blog-pagination,
.navigation.pagination {
    margin-top: 3rem;
    text-align: center;
}

.navigation.pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
}

.navigation.pagination .nav-links a,
.navigation.pagination .nav-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-500);
    border-radius: 4px;
    transition: all var(--transition);
}

.navigation.pagination .nav-links a:hover {
    background: var(--brand-green);
    color: var(--white);
}

.navigation.pagination .nav-links .current {
    background: var(--brand-green);
    color: var(--white);
    font-weight: 600;
}

/* No Posts */
.blog-no-posts {
    text-align: center;
    padding: 6rem 2rem;
}

.blog-no-posts h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
}

.blog-no-posts p {
    font-size: 1.0625rem;
    color: var(--slate-500);
}

/* ===== SINGLE POST ===== */
.single-post {
    padding: 3rem 0 4rem;
    background: var(--cream);
    min-height: 60vh;
}

.single-post__layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

.single-post__content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.single-post__title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--slate-900);
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.single-post__date {
    display: block;
    font-size: 0.8125rem;
    color: var(--slate-300);
    margin-bottom: 1.5rem;
}

.single-post__featured-image {
    margin-bottom: 2rem;
    border-radius: 4px;
    overflow: hidden;
}

.single-post__featured-image img {
    width: 100%;
    height: auto;
}

.single-post__body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--slate-700);
}

.single-post__body h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--slate-900);
    margin: 2rem 0 1rem;
}

.single-post__body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--slate-900);
    margin: 1.75rem 0 0.75rem;
}

.single-post__body p {
    margin-bottom: 1.25rem;
}

.single-post__body ul,
.single-post__body ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    list-style: disc;
}

.single-post__body ol {
    list-style: decimal;
}

.single-post__body li {
    margin-bottom: 0.5rem;
}

.single-post__body img {
    border-radius: 4px;
    margin: 1.5rem 0;
}

.single-post__body a {
    color: var(--brand-green);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.single-post__body a:hover {
    color: var(--brand-green-dark);
}

/* ===== SIDEBAR ===== */
.sidebar__heading {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--slate-900);
    margin-bottom: 1.25rem;
}

.sidebar-card {
    background: var(--white);
    border-radius: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: box-shadow var(--transition);
}

.sidebar-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.sidebar-card__image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.sidebar-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.sidebar-card:hover .sidebar-card__image img {
    transform: scale(1.03);
}

.sidebar-card__content {
    padding: 1rem 1.25rem 1.25rem;
}

.sidebar-card__title {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.sidebar-card__title a {
    color: inherit;
}

.sidebar-card__title a:hover {
    color: var(--brand-green);
}

.sidebar-card__excerpt {
    font-size: 0.8125rem;
    line-height: 1.65;
    color: var(--slate-500);
    margin-bottom: 0.75rem;
}

.sidebar-card__excerpt p {
    margin: 0;
}

.sidebar-card__read-more {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--brand-green);
    letter-spacing: 0.02em;
    margin-bottom: 0.75rem;
    transition: color var(--transition);
}

.sidebar-card__read-more:hover {
    color: var(--brand-green-dark);
}

.sidebar-card__date {
    display: block;
    font-size: 0.75rem;
    color: var(--slate-300);
    padding-top: 0.625rem;
    border-top: 1px solid var(--slate-100);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .single-post__layout {
        grid-template-columns: 1fr 260px;
        gap: 2rem;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .header-top-bar {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        margin-right: 0.25rem;
        flex-shrink: 0;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform var(--transition);
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-menu > li > a {
        padding: 0.875rem 0;
        font-size: 1.0625rem;
        border-bottom: 1px solid var(--slate-100);
        width: 100%;
    }

    .nav-menu > li > a::after {
        display: none;
    }

    .sub-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0 0 0.5rem 1rem;
        display: none;
    }

    .nav-menu > li.menu-item-has-children.open > .sub-menu {
        display: block;
    }

    .header-cta {
        display: none;
    }

    .site-logo img {
        height: 40px;
    }

    .single-post__layout {
        grid-template-columns: 1fr;
    }

    .single-post__content {
        padding: 1.5rem;
    }

    .single-post__title {
        font-size: 1.5rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .blog-archive {
        padding: 2rem 0 3rem;
    }

    .single-post {
        padding: 2rem 0 3rem;
    }

    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-main {
        padding: 3rem 0 2rem;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    border-top: 2px solid #e8e8e8;
    padding: 12px 16px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
}

.sticky-cta-inner {
    display: flex;
    gap: 10px;
    width: 100%;
}

.sticky-cta-call,
.sticky-cta-quote {
    flex: 1;
    min-width: 0;
    padding: 13px 12px;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: opacity 0.3s ease;
}

.sticky-cta-call:hover,
.sticky-cta-quote:hover {
    opacity: 0.9;
}

.sticky-cta-call {
    background: #d4870a;
    color: #ffffff !important;
}

.sticky-cta-quote {
    background: #2d5a27;
    color: #ffffff !important;
}

@media (max-width: 640px) {
    .sticky-cta { display: block; }
    body { padding-bottom: 72px; }
}
