/* E3 Home Solutions - static rebuild static rebuild */
:root {
  --blue: #3469bb;
  --blue-2: #5c87c9;
  --blue-dark: #27509a;
  --text: #4a4a4a;
  --muted: #7a7a7a;
  --light: #f4f6f9;
  --line: #e3e7ee;
  --dark: #2b2f36;
  --darker: #22252b;
  --white: #fff;
  --radius: 4px;
  --shadow: 0 2px 10px rgba(0, 0, 0, .08);
  --font-head: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Source Sans 3", "Source Sans Pro", system-ui, -apple-system, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); font-size: 17px; line-height: 1.65; color: var(--text); background: var(--white); }
img { max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); text-decoration: underline; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); color: var(--blue); line-height: 1.25; margin: 0 0 .6em; font-weight: 500; }
h1 { font-size: 2.1rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1.1em; }
ul, ol { padding-left: 1.3em; }
.container { width: 100%; max-width: 1170px; margin: 0 auto; padding: 0 20px; }
.btn { display: inline-block; background: var(--blue); color: #fff; border: 1px solid var(--blue-dark); padding: .65em 1.4em; border-radius: var(--radius); font-family: var(--font-head); font-weight: 500; letter-spacing: .02em; cursor: pointer; transition: background .2s; }
.btn:hover { background: var(--blue-dark); color: #fff; text-decoration: none; }
.btn-lg { font-size: 1.15rem; padding: .8em 1.8em; }
.btn-sm { font-size: .95rem; padding: .5em 1.1em; }
.sep { text-align: center; margin: 0 0 12px; }
.sep img { width: 70px; height: auto; }
.section-title { text-align: center; font-size: 2rem; margin-bottom: 1.4em; }

/* ---------- header ---------- */
.topbar { background: #fff; border-bottom: 1px solid var(--line); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 8px; padding-bottom: 8px; }
.logo img { display: block; width: 180px; height: auto; }
.top-contact { text-align: right; line-height: 1.3; }
.top-contact p { margin: 0; }
.top-cta { font-family: var(--font-head); font-weight: 700; color: var(--blue); font-size: 1.05rem; letter-spacing: .03em; }
.top-phones { margin: 4px 0 2px !important; }
.top-phones .phone { font-family: var(--font-head); font-size: 1.55rem; font-weight: 700; color: var(--blue); margin-left: 16px; }
.top-phones .phone:first-child { margin-left: 0; }
.top-note { color: var(--muted); font-size: .92rem; }

.mainnav { background: var(--blue); position: sticky; top: 0; z-index: 50; box-shadow: 0 2px 6px rgba(0, 0, 0, .15); }
.mainnav-inner { display: flex; align-items: center; justify-content: center; }
.mainnav .menu { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; }
.mainnav .menu > li { position: relative; }
.mainnav .menu a { display: block; color: #fff; padding: 16px 20px; font-family: var(--font-head); font-weight: 500; font-size: 1rem; text-transform: uppercase; letter-spacing: .04em; }
.mainnav .menu a:hover, .mainnav .menu > li.current > a { background: var(--blue-dark); text-decoration: none; }
.mainnav .menu li.has-sub > a { padding-right: 30px; }
.mainnav .menu li.has-sub > a::after { content: ""; position: absolute; right: 14px; top: 50%; width: 6px; height: 6px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: translateY(-70%) rotate(45deg); }
.mainnav .menu ul { list-style: none; margin: 0; padding: 0; position: absolute; left: 0; top: 100%; min-width: 220px; background: #fff; box-shadow: var(--shadow); border-top: 3px solid var(--blue-dark); opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .18s; z-index: 60; }
.mainnav .menu li:hover > ul, .mainnav .menu li:focus-within > ul, .mainnav .menu li.open > ul { opacity: 1; visibility: visible; transform: none; }
.mainnav .menu ul a { color: var(--text); text-transform: none; padding: 11px 18px; font-weight: 400; letter-spacing: 0; border-bottom: 1px solid var(--line); }
.mainnav .menu ul a:hover, .mainnav .menu ul li.current > a { background: var(--light); color: var(--blue); }
.sub-toggle { display: none; }
.menu-toggle { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; height: 62vh; min-height: 380px; max-height: 700px; overflow: hidden; background: #333; }
.hero .slides, .hero .slide { position: absolute; inset: 0; }
.hero .slide { background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease; }
.hero .slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; display: flex; align-items: center; background: linear-gradient(90deg, rgba(20, 35, 70, .72) 0%, rgba(20, 35, 70, .35) 60%, rgba(20, 35, 70, .1) 100%); color: #fff; }
.hero-overlay h1 { color: #fff; font-size: clamp(1.8rem, 4.2vw, 3.2rem); font-weight: 700; margin-bottom: .3em; text-shadow: 0 2px 8px rgba(0, 0, 0, .4); }
.hero-overlay p { font-size: clamp(1.05rem, 1.8vw, 1.4rem); margin-bottom: 1.4em; text-shadow: 0 1px 4px rgba(0, 0, 0, .5); }
.hero-prev, .hero-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0, 0, 0, .35); color: #fff; border: 0; width: 46px; height: 60px; font-size: 2.2rem; line-height: 1; cursor: pointer; border-radius: var(--radius); }
.hero-prev { left: 14px; } .hero-next { right: 14px; }
.hero-prev:hover, .hero-next:hover { background: rgba(0, 0, 0, .6); }
.dots { position: absolute; bottom: 16px; left: 0; right: 0; text-align: center; }
.dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid #fff; background: transparent; margin: 0 4px; cursor: pointer; padding: 0; }
.dot.active { background: #fff; }

/* ---------- services ---------- */
.services { padding: 56px 20px 40px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.service-card:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(0, 0, 0, .12); }
.service-img { display: block; aspect-ratio: 767 / 381; background: var(--light); overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-card h3 { font-size: 1.25rem; margin: 18px 20px 8px; }
.service-card p { margin: 0 20px 14px; color: var(--muted); flex: 1; }
.service-card .more { margin: 0 20px 20px; font-family: var(--font-head); font-weight: 500; }

/* ---------- about / service area ---------- */
.about-area { background: var(--light); padding: 56px 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.about-text h2, .area-map h2 { font-size: 1.7rem; }
.area-map img { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }

/* ---------- testimonials ---------- */
.testimonials { padding: 56px 0; background: #fff; }
.tst-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.tst { margin: 0; background: var(--light); border-left: 4px solid var(--blue-2); padding: 26px 28px 20px; border-radius: var(--radius); position: relative; }
.tst::before { content: "\201C"; position: absolute; top: 6px; left: 16px; font-family: Georgia, serif; font-size: 4rem; color: var(--blue-2); opacity: .35; line-height: 1; }
.tst p { margin: 0 0 12px; font-style: italic; }
.tst cite { font-style: normal; font-family: var(--font-head); font-weight: 500; color: var(--blue); }

/* ---------- suppliers ---------- */
.suppliers { padding: 40px 20px 60px; }
.supplier-logos { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 36px 56px; }
.supplier-logos img { max-height: 70px; width: auto; filter: grayscale(.2); }

/* ---------- inner pages ---------- */
.breadcrumb { background: var(--light); border-bottom: 1px solid var(--line); font-size: .95rem; padding: 10px 0; }
.breadcrumb a { color: var(--muted); }
.breadcrumb .current { color: var(--blue); }
.sep-arrow { color: #b0b6c2; }
.page-layout { display: grid; grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr); gap: 48px; padding-top: 40px; padding-bottom: 60px; }
.entry-title { font-size: 2.2rem; margin-bottom: .5em; padding-bottom: .35em; border-bottom: 2px dotted var(--line); }
.entry-content img { border-radius: var(--radius); }
.entry-content figure { margin: 1.2em auto; text-align: center; }
.entry-content figcaption { font-size: .9rem; color: var(--muted); margin-top: 6px; }
.entry-content .aligncenter { display: block; margin-left: auto; margin-right: auto; }
.entry-content .alignleft { float: left; margin: 0 20px 12px 0; max-width: 45%; }
.entry-content .alignright { float: right; margin: 0 0 12px 20px; max-width: 45%; }
.entry-content h2 { font-size: 1.55rem; margin-top: 1.4em; }
.entry-content h3 { font-size: 1.3rem; margin-top: 1.3em; }
.entry-content h4 { margin-top: 1.2em; }
.entry-content table { border-collapse: collapse; width: 100%; margin: 1em 0; }
.entry-content td, .entry-content th { border: 1px solid var(--line); padding: 8px 10px; }
.post-meta { color: var(--muted); font-size: .92rem; margin-top: -.4em; }
.post-thumb { width: 100%; border-radius: var(--radius); margin-bottom: 1.2em; }

/* gallery (WP gallery shortcode markup) */
.gallery ul.thumbnail, .entry-content ul.thumbnail { list-style: none; margin: 0 -8px; padding: 0; display: flex; flex-wrap: wrap; }
.gallery ul.thumbnail > div, .entry-content ul.thumbnail > div { width: 33.333%; padding: 8px; }
.gallery ul.thumbnail img { width: 100%; aspect-ratio: 7 / 5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); transition: transform .2s; }
.gallery ul.thumbnail a:hover img { transform: scale(1.03); }

/* accordion */
.accordion details { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 10px; background: #fff; }
.accordion summary { cursor: pointer; padding: 12px 16px; font-family: var(--font-head); font-weight: 500; color: #fff; background: var(--blue); border-radius: var(--radius); list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; float: right; font-weight: 700; }
.accordion details[open] summary::after { content: "\2212"; }
.accordion details > div { padding: 14px 18px 4px; }

/* sidebar */
.sidebar .widget, .sidebar aside { margin-bottom: 28px; }
.sidebar .widget-title { font-size: 1.15rem; border-bottom: 2px solid var(--blue-2); padding-bottom: 6px; margin-bottom: 12px; }
.sidebar .center { text-align: center; }
.sidebar-box { padding: 22px 16px; text-align: center; border-radius: var(--radius); margin-bottom: 16px; }
.sidebar-box.bluebg { background: var(--blue-2); }
.sidebar-box.wht-text h2, .sidebar-box.wht-text h3, .sidebar-box.wht-text h4, .sidebar-box.wht-text p, .sidebar-box.wht-text a { color: #fff !important; }
.sidebar-box h3 { font-size: 1.5rem; margin-bottom: .2em; }
.sidebar-box h4 { margin: 0; font-weight: 400; }
.sidebar ul { list-style: none; padding: 0; }
.sidebar ul li { padding: 6px 0; border-bottom: 1px dotted var(--line); }
.sidebar img { display: block; margin: 0 auto; }
.sidebar .textwidget p { margin-bottom: .8em; }
a.blue-link { font-weight: 600; }

/* blog list */
.post-list { display: grid; gap: 34px; }
.post-card { border-bottom: 1px dotted var(--line); padding-bottom: 30px; }
.post-card img { width: 100%; border-radius: var(--radius); margin-bottom: 14px; }
.post-card h2 { font-size: 1.5rem; margin-bottom: .2em; }

/* forms */
.estimate-form label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .92rem; margin-bottom: 10px; }
.estimate-form input, .estimate-form select, .estimate-form textarea { display: block; width: 100%; margin-top: 4px; padding: 9px 10px; border: 1px solid #cfd5df; border-radius: var(--radius); font: inherit; font-size: .95rem; color: var(--text); background: #fff; }
.estimate-form input:focus, .estimate-form select:focus, .estimate-form textarea:focus { outline: 2px solid var(--blue-2); border-color: var(--blue-2); }
.estimate-form .btn { margin-top: 4px; }
.entry-content .estimate-form { max-width: 560px; }

/* ---------- footer ---------- */
.site-footer { background: var(--dark); color: #cfd3da; margin-top: 20px; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--blue-2); }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 40px; padding-top: 50px; padding-bottom: 40px; }
.site-footer .widget-title { color: #fff; font-size: 1.15rem; text-transform: uppercase; letter-spacing: .05em; border-bottom: 2px solid var(--blue-2); display: inline-block; padding-bottom: 6px; margin-bottom: 16px; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { padding: 5px 0; border-bottom: 1px solid rgba(255, 255, 255, .06); }
.site-footer .estimate-form label { color: #cfd3da; }
.site-footer .estimate-form input, .site-footer .estimate-form select, .site-footer .estimate-form textarea { background: #fff; border-color: transparent; }
.copyright { background: var(--darker); font-size: .9rem; }
.copyright-inner { padding-top: 8px; padding-bottom: 8px; }
.copyright p { margin: 0; }

/* ---------- responsive ---------- */
@media (max-width: 992px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .page-layout { grid-template-columns: 1fr; gap: 32px; }
  .gallery ul.thumbnail > div, .entry-content ul.thumbnail > div { width: 50%; }
}
@media (max-width: 768px) {
  body { font-size: 16px; }
  .topbar-inner { flex-direction: column; text-align: center; }
  .top-contact { text-align: center; }
  .top-phones .phone { display: inline-block; margin: 2px 8px; font-size: 1.35rem; }
  .logo img { width: 160px; }
  .mainnav-inner { justify-content: flex-start; padding: 0; flex-wrap: wrap; }
  .menu-toggle { width: 100%; }
  .hero-prev, .hero-next { display: none; }
  .menu-toggle { display: flex; align-items: center; gap: 4px; background: none; border: 0; color: #fff; font-family: var(--font-head); font-size: 1rem; text-transform: uppercase; letter-spacing: .05em; padding: 14px 20px; cursor: pointer; }
  .menu-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 0; }
  .menu-toggle span + span { margin-top: 5px; }
  .menu-toggle span:first-child { margin-right: 8px; }
  .menu-toggle span:nth-child(2), .menu-toggle span:nth-child(3) { display: none; }
  .mainnav .menu { display: none; width: 100%; flex-direction: column; background: var(--blue-dark); }
  .mainnav .menu.open { display: flex; }
  .mainnav .menu a { padding: 13px 20px; border-top: 1px solid rgba(255, 255, 255, .1); }
  .mainnav .menu li.has-sub > a::after { display: none; }
  .mainnav .menu li.has-sub { display: flex; flex-wrap: wrap; }
  .mainnav .menu li.has-sub > a { flex: 1; }
  .sub-toggle { display: block; background: none; border: 0; border-left: 1px solid rgba(255, 255, 255, .15); color: #fff; width: 52px; font-size: 1.1rem; cursor: pointer; }
  .mainnav .menu ul { position: static; width: 100%; opacity: 1; visibility: visible; transform: none; display: none; box-shadow: none; border-top: 0; background: var(--blue); }
  .mainnav .menu li.open > ul { display: block; }
  .mainnav .menu ul a { color: #fff; border-bottom: 0; padding-left: 36px; }
  .mainnav .menu ul a:hover { background: var(--blue-dark); color: #fff; }
  .hero { height: 52vh; min-height: 300px; }
  .hero-prev, .hero-next { width: 36px; height: 48px; font-size: 1.8rem; }
  .service-grid, .two-col, .tst-grid, .footer-cols { grid-template-columns: 1fr; }
  .section-title { font-size: 1.6rem; }
  .entry-title { font-size: 1.8rem; }
  .gallery ul.thumbnail > div, .entry-content ul.thumbnail > div { width: 50%; }
  .entry-content .alignleft, .entry-content .alignright { float: none; max-width: 100%; margin: 0 0 12px; }
}
@media (max-width: 480px) {
  .gallery ul.thumbnail > div, .entry-content ul.thumbnail > div { width: 100%; }
  .supplier-logos { gap: 24px 32px; }
}

/* ---------- post images ---------- */
.post-hero { display: block; width: 100%; aspect-ratio: 16 / 8; object-fit: cover; border-radius: 8px; margin: .2em 0 1.6em; box-shadow: var(--shadow); }
.entry-content .post-figure { margin: 1.8em 0; }
.entry-content .post-figure img { display: block; width: 100%; border-radius: 8px; box-shadow: var(--shadow); }
.entry-content .post-figure figcaption { text-align: left; font-style: italic; padding-left: 12px; border-left: 3px solid var(--blue-2); margin-top: 10px; }

/* ---------- guides (blog index) ---------- */
.guides { padding-bottom: 70px; }
.eyebrow { font-family: var(--font-head); font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-2); margin: 0 0 .5em; }
.guides-hero { background: linear-gradient(135deg, var(--blue-dark), var(--blue) 60%, var(--blue-2)); color: #fff; padding: 56px 0 96px; }
.guides-hero .eyebrow { color: rgba(255, 255, 255, .75); }
.guides-hero h1 { color: #fff; font-size: 2.6rem; margin: 0 0 .25em; }
.guides-hero .lead { max-width: 620px; font-size: 1.15rem; margin: 0; color: rgba(255, 255, 255, .92); }

.guide-feature, .guide-card { position: relative; background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 6px 24px rgba(20, 40, 80, .10); transition: transform .2s, box-shadow .2s; }
.guide-feature:hover, .guide-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(20, 40, 80, .16); }
.guide-feature h2 a::after, .guide-card h2 a::after { content: ""; position: absolute; inset: 0; }
.guide-feature h2 a, .guide-card h2 a { color: var(--dark); text-decoration: none; }
.guide-feature:hover h2 a, .guide-card:hover h2 a { color: var(--blue); }
.guide-img { position: relative; overflow: hidden; background: var(--light); }
.guide-img img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.guide-feature:hover .guide-img img, .guide-card:hover .guide-img img { transform: scale(1.05); }
.chip { position: absolute; top: 14px; left: 14px; background: #fff; color: var(--blue); font-family: var(--font-head); font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; box-shadow: 0 2px 8px rgba(0, 0, 0, .15); }
.guide-meta { color: var(--muted); font-size: .9rem; margin: 0 0 .6em; }
.guide-excerpt { margin: 0 0 1em; }
.read-more { font-family: var(--font-head); font-weight: 600; color: var(--blue); }
.read-more span { display: inline-block; transition: transform .2s; }
.guide-feature:hover .read-more span, .guide-card:hover .read-more span { transform: translateX(5px); }

.guide-feature { display: grid; grid-template-columns: 1.25fr 1fr; margin-top: -64px; }
.guide-feature .guide-img { min-height: 340px; }
.guide-feature .guide-body { padding: 36px 38px; align-self: center; }
.guide-feature h2 { font-size: 1.9rem; line-height: 1.2; margin: 0 0 .35em; }

.guides-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; margin: 56px 0 22px; }
.guides-bar h2 { margin: 0; font-size: 1.6rem; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter { font: 600 .9rem var(--font-head); color: var(--blue); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 7px 16px; cursor: pointer; transition: all .15s; }
.filter:hover { border-color: var(--blue-2); }
.filter.on { background: var(--blue); border-color: var(--blue); color: #fff; }

.guide-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.guide-card { display: flex; flex-direction: column; }
.guide-card[hidden] { display: none; }
.guide-card .guide-img { aspect-ratio: 16 / 10; }
.guide-card .guide-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.guide-card h2 { font-size: 1.2rem; line-height: 1.3; margin: 0 0 .35em; }
.guide-card .guide-excerpt { font-size: .96rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.guide-card .read-more { margin-top: auto; }

.guides-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; margin-top: 64px; padding: 36px 40px; border-radius: 10px; background: var(--light); border-left: 6px solid var(--blue); }
.guides-cta h2 { margin: 0 0 .2em; font-size: 1.5rem; }
.guides-cta p { margin: 0; }

@media (max-width: 900px) {
  .guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .guide-feature { grid-template-columns: 1fr; }
  .guide-feature .guide-img { min-height: 0; aspect-ratio: 16 / 9; }
  .guide-feature .guide-body { padding: 24px; }
}
@media (max-width: 600px) {
  .guides-hero { padding: 40px 0 84px; }
  .guides-hero h1 { font-size: 2rem; }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-feature h2 { font-size: 1.5rem; }
  .guides-cta { padding: 26px 22px; }
  .post-hero { aspect-ratio: 16 / 10; }
}
@media (prefers-reduced-motion: reduce) {
  .guide-feature, .guide-card, .guide-img img, .read-more span { transition: none; }
}
.guide-cta-tile { display: flex; flex-direction: column; justify-content: center; padding: 32px 28px; border-radius: 10px; color: #fff; background: linear-gradient(150deg, var(--blue-dark), var(--blue-2)); box-shadow: 0 6px 24px rgba(20, 40, 80, .10); }
.guide-cta-tile .eyebrow { color: rgba(255, 255, 255, .75); }
.guide-cta-tile h2 { color: #fff; font-size: 1.5rem; line-height: 1.25; margin: 0 0 .4em; }
.guide-cta-tile p { color: rgba(255, 255, 255, .92); }
.guide-cta-tile .btn { align-self: flex-start; background: #fff; color: var(--blue); border-color: #fff; }
.guide-cta-tile .btn:hover { background: var(--light); color: var(--blue-dark); }
