1fd833df17
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
229 lines
9.0 KiB
CSS
229 lines
9.0 KiB
CSS
:root {
|
|
--ink: #21262b;
|
|
--ink-soft: #4a525a;
|
|
--paper: #faf7f2;
|
|
--panel: #ffffff;
|
|
--line: #e3ddd2;
|
|
--steel: #2c5d7c;
|
|
--steel-deep: #1e4258;
|
|
--amber: #b9742a;
|
|
--max: 1080px;
|
|
}
|
|
|
|
* { 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;
|
|
background: var(--paper);
|
|
color: var(--ink);
|
|
font-family: Georgia, 'Times New Roman', serif;
|
|
font-size: 19px;
|
|
line-height: 1.65;
|
|
}
|
|
|
|
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
|
|
.wrap.narrow { max-width: 780px; }
|
|
|
|
h1, h2, h3 { font-family: Georgia, serif; font-weight: 700; line-height: 1.2; color: var(--ink); }
|
|
h2 { font-size: 2rem; margin: 0 0 0.5em; }
|
|
h3 { font-size: 1.25rem; margin: 0 0 0.4em; }
|
|
|
|
a { color: var(--steel); }
|
|
|
|
/* Header */
|
|
.site-header {
|
|
background: rgba(250, 247, 242, 0.8);
|
|
-webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
|
|
border-bottom: 1px solid var(--line);
|
|
position: sticky; top: 0; z-index: 100;
|
|
}
|
|
.header-row { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: 16px; }
|
|
|
|
/* Mobile hamburger -> X + frosted dropdown (placed OUTSIDE the header so its glass blurs the page) */
|
|
.nav-toggle { display: none; cursor: pointer; padding: 4px; background: none; border: none; align-items: center; justify-content: center; flex-shrink: 0; }
|
|
.nav-toggle-icon { width: 30px; height: 30px; overflow: visible; }
|
|
.nav-toggle-icon .bar { stroke: var(--ink); stroke-width: 2; stroke-linecap: round; transform-origin: 16px 16px; transition: opacity 0.2s ease, transform 0.35s cubic-bezier(.4,0,.2,1); }
|
|
.nav-toggle.open .bar-top { transform: translateY(6px) rotate(45deg); }
|
|
.nav-toggle.open .bar-mid { opacity: 0; }
|
|
.nav-toggle.open .bar-bot { transform: translateY(-6px) rotate(-45deg); }
|
|
.nav-mobile-menu {
|
|
display: none; position: fixed; top: 53px; left: 0; right: 0; z-index: 90;
|
|
flex-direction: column; gap: 18px; padding: 24px 24px 28px;
|
|
background: rgba(250, 247, 242, 0.85); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
|
|
border-bottom: 1px solid var(--line); align-items: flex-end; text-align: right;
|
|
font-family: Verdana, Geneva, sans-serif;
|
|
}
|
|
.nav-mobile-menu.open { display: flex; }
|
|
.nav-mobile-menu a { color: var(--ink-soft); text-decoration: none; font-size: 0.95rem; }
|
|
.nav-mobile-menu a:hover { color: var(--steel); }
|
|
.nav-mobile-menu a.tel { color: var(--steel); font-weight: bold; }
|
|
.nav-mobile-menu .nav-cta { color: #fff !important; }
|
|
.wordmark {
|
|
font-family: Georgia, serif; font-size: 1.35rem; font-weight: 700;
|
|
color: var(--ink); text-decoration: none; letter-spacing: 0.01em;
|
|
}
|
|
.wordmark span { color: var(--amber); }
|
|
.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); }
|
|
.eyebrow {
|
|
font-family: Verdana, Geneva, sans-serif; font-size: 0.78rem;
|
|
text-transform: uppercase; letter-spacing: 0.14em; color: var(--amber);
|
|
margin: 0 0 18px;
|
|
}
|
|
.hero h1 { font-size: 2.7rem; max-width: 18em; margin: 0 0 0.4em; }
|
|
.hero-sub { font-size: 1.3rem; color: var(--ink-soft); margin: 0 0 1.6em; }
|
|
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
|
|
|
|
.btn {
|
|
display: inline-block; background: var(--steel); color: #fff;
|
|
font-family: Verdana, Geneva, sans-serif; font-size: 0.9rem;
|
|
padding: 14px 26px; border-radius: 4px; text-decoration: none;
|
|
}
|
|
.btn:hover { background: var(--steel-deep); }
|
|
.btn.ghost { background: transparent; color: var(--steel); border: 1px solid var(--steel); }
|
|
.btn.ghost:hover { background: #eef3f6; }
|
|
|
|
/* Sections */
|
|
section { padding: 70px 0; }
|
|
section:nth-of-type(even) { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
|
|
.section-intro { color: var(--ink-soft); max-width: 46em; margin-top: 0; }
|
|
|
|
.pull {
|
|
font-size: 1.35rem; font-style: italic; color: var(--steel-deep);
|
|
border-left: 4px solid var(--amber); padding-left: 20px; margin-top: 1.6em;
|
|
}
|
|
|
|
/* Principles */
|
|
.grid.four { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; }
|
|
.card {
|
|
background: var(--panel); border: 1px solid var(--line); border-radius: 6px;
|
|
padding: 24px;
|
|
}
|
|
.card h3 { font-size: 1.05rem; color: var(--steel-deep); }
|
|
.card p { font-size: 0.95rem; margin: 0; color: var(--ink-soft); }
|
|
|
|
/* Services */
|
|
.service { border-top: 1px solid var(--line); padding: 30px 0; max-width: 56em; }
|
|
.service:first-of-type { border-top: 0; }
|
|
.service h3 { font-size: 1.3rem; }
|
|
.service .tag {
|
|
font-family: Verdana, Geneva, sans-serif; font-size: 0.68rem; vertical-align: middle;
|
|
text-transform: uppercase; letter-spacing: 0.1em; color: var(--amber);
|
|
border: 1px solid var(--amber); border-radius: 3px; padding: 3px 8px; margin-left: 10px;
|
|
}
|
|
.service.flagship {
|
|
background: #f4efe6; border: 1px solid #e0d5bf; border-radius: 8px;
|
|
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 */
|
|
.case { max-width: 56em; padding: 26px 0; border-top: 1px solid var(--line); }
|
|
.case:first-of-type { border-top: 0; }
|
|
blockquote {
|
|
margin: 1.2em 0 0; padding: 18px 24px; background: var(--paper);
|
|
border-left: 4px solid var(--steel); border-radius: 0 6px 6px 0;
|
|
}
|
|
blockquote p { margin: 0; font-style: italic; color: var(--ink-soft); }
|
|
|
|
/* Process */
|
|
.steps { list-style: none; counter-reset: step; margin: 36px 0 0; padding: 0; }
|
|
.steps li {
|
|
counter-increment: step; position: relative;
|
|
padding: 0 0 34px 70px;
|
|
}
|
|
.steps li::before {
|
|
content: counter(step);
|
|
position: absolute; left: 0; top: 0;
|
|
width: 46px; height: 46px; border-radius: 50%;
|
|
background: var(--steel); color: #fff;
|
|
font-family: Verdana, Geneva, sans-serif; font-weight: bold; font-size: 1.1rem;
|
|
display: flex; align-items: center; justify-content: center;
|
|
}
|
|
.steps li:not(:last-child)::after {
|
|
content: ""; position: absolute; left: 22px; top: 50px; bottom: 6px;
|
|
width: 2px; background: var(--line);
|
|
}
|
|
.steps p { color: var(--ink-soft); margin: 0; }
|
|
|
|
/* About */
|
|
.about-name {
|
|
font-family: Verdana, Geneva, sans-serif; font-size: 0.85rem;
|
|
text-transform: uppercase; letter-spacing: 0.12em; color: var(--amber);
|
|
}
|
|
|
|
/* Fit */
|
|
.notfor { list-style: none; margin: 30px 0; padding: 0; }
|
|
.notfor li {
|
|
padding: 16px 0 16px 34px; position: relative; color: var(--ink-soft);
|
|
border-top: 1px solid var(--line);
|
|
}
|
|
.notfor li::before { content: "✕"; position: absolute; left: 4px; color: var(--amber); font-weight: bold; }
|
|
.notfor strong { color: var(--ink); }
|
|
|
|
/* Contact */
|
|
.contact { text-align: center; }
|
|
.contact .section-intro, .contact p { margin-left: auto; margin-right: auto; }
|
|
.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 */
|
|
.site-footer {
|
|
background: var(--ink); color: #b9bfc6;
|
|
padding: 50px 0; text-align: center;
|
|
font-family: Verdana, Geneva, sans-serif; font-size: 0.82rem;
|
|
}
|
|
.site-footer p { margin: 6px 0; }
|
|
.footer-brand { font-family: Georgia, serif; font-size: 1.3rem; color: #fff; margin-bottom: 14px !important; }
|
|
.footer-brand span { color: var(--amber); }
|
|
.footer-legal { margin-top: 18px !important; color: #8a929b; }
|
|
|
|
/* Responsive */
|
|
@media (max-width: 900px) {
|
|
.grid.four { grid-template-columns: repeat(2, 1fr); }
|
|
.hero h1 { font-size: 2.1rem; }
|
|
.site-nav { display: none; }
|
|
.nav-toggle { display: flex; }
|
|
}
|
|
@media (max-width: 640px) {
|
|
body { font-size: 17px; }
|
|
.grid.four { grid-template-columns: 1fr; }
|
|
.hero { padding: 56px 0 44px; }
|
|
section { padding: 48px 0; }
|
|
}
|