SW staging: homepage redesign + Continuity Audit + above/below-the-line article + SEO scaffolding + nav no-wrap

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Michael Victory
2026-06-17 07:14:19 -07:00
parent f0f313c77f
commit 83f409c022
8 changed files with 372 additions and 30 deletions
+27 -4
View File
@@ -13,6 +13,8 @@
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
:target, [id] { scroll-margin-top: 76px; }
body {
margin: 0;
@@ -44,14 +46,33 @@ a { color: var(--steel); }
color: var(--ink); text-decoration: none; letter-spacing: 0.01em;
}
.wordmark span { color: var(--amber); }
.site-nav { display: flex; gap: 22px; align-items: center; font-family: Verdana, Geneva, sans-serif; font-size: 0.82rem; }
.site-nav a { color: var(--ink-soft); text-decoration: none; }
.site-nav { display: flex; flex-wrap: nowrap; gap: 22px; align-items: center; font-family: Verdana, Geneva, sans-serif; font-size: 0.82rem; }
.site-nav a { color: var(--ink-soft); text-decoration: none; white-space: nowrap; }
.site-nav a:hover { color: var(--steel); }
.nav-cta {
background: var(--steel); color: #fff !important;
padding: 8px 16px; border-radius: 4px;
}
.nav-cta:hover { background: var(--steel-deep); }
.nav-phone {
color: var(--steel) !important; font-weight: bold;
letter-spacing: 0.02em; white-space: nowrap;
}
.nav-phone:hover { color: var(--steel-deep) !important; }
/* Click-to-call */
a.tel { text-decoration: none; }
.hero-call { font-family: Verdana, Geneva, sans-serif; font-size: 0.9rem; color: var(--ink-soft); margin: 16px 0 0; }
.hero-call a.tel { color: var(--steel); font-weight: bold; white-space: nowrap; }
.footer-call a.tel { color: #fff; font-weight: bold; white-space: nowrap; }
/* OC handoff callout */
.handoff {
background: #f4efe6; border-left: 4px solid var(--amber); border-radius: 0 6px 6px 0;
padding: 20px 24px; margin: 18px 0 28px; max-width: 56em;
}
.handoff p { margin: 0; font-size: 1rem; color: var(--ink-soft); }
.handoff a { font-weight: bold; white-space: nowrap; }
/* Hero */
.hero { padding: 90px 0 70px; background: var(--paper); }
@@ -106,6 +127,8 @@ section:nth-of-type(even) { background: var(--panel); border-top: 1px solid var(
padding: 30px; margin-top: 10px;
}
.service .note { font-size: 0.95rem; color: var(--ink-soft); font-style: italic; }
.service-cta { font-family: Verdana, Geneva, sans-serif; font-size: 0.92rem; margin-top: 1.2em; }
.service-cta a { font-weight: bold; }
.reassure { margin-top: 34px; font-style: italic; color: var(--ink-soft); }
/* Case studies */
@@ -155,7 +178,7 @@ blockquote p { margin: 0; font-style: italic; color: var(--ink-soft); }
/* Contact */
.contact { text-align: center; }
.contact .section-intro, .contact p { margin-left: auto; margin-right: auto; }
.contact-action { margin: 2em 0 0.8em; }
.contact-action { margin: 2em 0 0.8em; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.contact-promise { font-style: italic; color: var(--ink-soft); font-size: 0.95rem; }
/* Footer */
@@ -176,7 +199,7 @@ blockquote p { margin: 0; font-style: italic; color: var(--ink-soft); }
}
@media (max-width: 640px) {
body { font-size: 17px; }
.site-nav a:not(.nav-cta) { display: none; }
.site-nav a:not(.nav-cta):not(.nav-phone) { display: none; }
.grid.four { grid-template-columns: 1fr; }
.hero { padding: 56px 0 44px; }
section { padding: 48px 0; }