Files
abigail-site/v1/styles.css

358 lines
8.2 KiB
CSS

:root {
/* Paprika brand */
--paprika: #C0392B;
--paprika-2: #E8472B;
--paprika-light: #FEF5F5;
--warm: #FEF9E7;
--green: #E8F8F5;
/* Neutrals */
--ink: #2C3E50;
--body: #333333;
--mute: #888888;
--rule: #E8E8E8;
--paper: #FFFFFF;
--paper-2: #FAFAFA;
}
* { box-sizing: border-box; }
html, body {
margin: 0; padding: 0;
background: var(--paper);
color: var(--body);
font-family: "Inter", -apple-system, "PingFang SC", sans-serif;
font-size: 16px;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
/* Editorial serif for headlines */
h1, h2, h3 {
font-family: "Fraunces", "Source Serif Pro", Georgia, serif;
font-weight: 600;
color: var(--ink);
letter-spacing: -0.015em;
}
h1 { font-weight: 700; }
/* NAV */
nav {
position: sticky; top: 0; z-index: 50;
background: rgba(255,255,255,0.96);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--rule);
}
nav .container {
display: flex; align-items: center; justify-content: space-between;
height: 72px;
gap: 16px;
}
.brand {
display: flex; flex-direction: column;
text-decoration: none;
}
.brand-name {
font-family: "Fraunces", Georgia, serif;
font-weight: 700;
font-size: 22px;
color: var(--paprika);
letter-spacing: -0.01em;
line-height: 1;
}
.brand-tagline {
font-size: 11px;
color: var(--mute);
font-weight: 400;
letter-spacing: 0.02em;
margin-top: 3px;
}
.nav-links {
display: flex; gap: 28px;
font-size: 14px;
align-items: center;
font-weight: 500;
}
.nav-links a { color: var(--ink); transition: color 0.15s; }
.nav-links a:hover { color: var(--paprika); }
.nav-links a.active { color: var(--paprika); }
.nav-cta {
background: var(--paprika);
color: white !important;
padding: 10px 22px;
border-radius: 999px;
font-size: 14px;
font-weight: 600;
transition: background 0.15s, transform 0.08s;
}
.nav-cta:hover { background: #A8311F; color: white !important; }
.nav-cta:active { transform: scale(0.97); }
/* HERO */
.hero { padding: 88px 0 64px; }
.hero.centered { text-align: center; }
.eyebrow {
font-size: 12px;
font-weight: 600;
color: var(--paprika);
letter-spacing: 0.14em;
text-transform: uppercase;
margin-bottom: 20px;
}
.hero h1 {
font-size: 64px;
line-height: 1.05;
margin: 0 0 24px;
letter-spacing: -0.025em;
}
.hero p.lead {
font-size: 19px;
color: var(--mute);
margin: 0 0 32px;
max-width: 680px;
line-height: 1.55;
}
.hero.centered p.lead { margin-left: auto; margin-right: auto; }
.hero-ctas {
display: inline-flex; gap: 12px;
margin-bottom: 14px;
flex-wrap: wrap;
}
.hero.centered .hero-ctas { justify-content: center; }
.support-text {
font-size: 13px; color: var(--mute);
max-width: 540px;
line-height: 1.55;
}
.hero.centered .support-text { margin: 0 auto; }
/* Buttons */
.btn {
display: inline-block;
padding: 13px 26px;
border-radius: 999px;
font-weight: 600;
font-size: 15px;
transition: all 0.15s;
border: 1px solid transparent;
cursor: pointer;
font-family: inherit;
}
.btn-primary { background: var(--paprika); color: white; }
.btn-primary:hover { background: #A8311F; color: white; }
.btn-secondary {
background: var(--paper);
color: var(--ink);
border-color: var(--rule);
}
.btn-secondary:hover {
border-color: var(--ink);
}
/* Section */
.section { padding: 88px 0; }
.section.alt { background: var(--paper-2); }
.section.warm { background: var(--paprika-light); }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 {
font-size: 40px;
line-height: 1.15;
margin: 0 0 16px;
max-width: 760px;
margin-left: auto; margin-right: auto;
}
.section-head p {
font-size: 17px;
color: var(--mute);
max-width: 620px;
margin: 0 auto;
line-height: 1.6;
}
/* Card */
.card {
background: var(--paper);
border: 1px solid var(--rule);
border-radius: 14px;
padding: 32px;
transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.card.hover:hover {
border-color: var(--paprika);
transform: translateY(-3px);
box-shadow: 0 12px 32px rgba(192,57,43,0.08);
}
.card h3 {
font-size: 22px;
margin: 0 0 10px;
}
.card p {
font-size: 15px;
color: var(--mute);
margin: 0;
line-height: 1.6;
}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
/* Pill */
.pill {
display: inline-block;
padding: 4px 12px;
border-radius: 999px;
font-size: 11px;
font-weight: 600;
letter-spacing: 0.06em;
text-transform: uppercase;
background: var(--paprika-light);
color: var(--paprika);
}
.pill.warm { background: var(--warm); color: #9A6A0A; }
.pill.green { background: var(--green); color: #1B7A60; }
.pill.mute { background: #F0F0EE; color: var(--mute); }
/* Callout */
.callout {
background: var(--paprika-light);
border-left: 3px solid var(--paprika);
padding: 20px 24px;
border-radius: 8px;
font-size: 15px;
line-height: 1.6;
}
.callout.warm { background: var(--warm); border-color: #D4A53A; }
.callout.green { background: var(--green); border-color: #1B7A60; }
.callout .lbl {
display: block;
font-size: 11px;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
margin-bottom: 8px;
color: var(--paprika);
}
.callout.warm .lbl { color: #9A6A0A; }
.callout.green .lbl { color: #1B7A60; }
/* CTA Band */
.cta-band {
background: var(--paper);
border: 1px solid var(--rule);
border-radius: 18px;
padding: 72px 48px;
text-align: center;
position: relative;
overflow: hidden;
}
.cta-band::before {
content: "";
position: absolute;
top: -200px; left: 50%;
transform: translateX(-50%);
width: 800px; height: 400px;
background: radial-gradient(ellipse at center, rgba(192,57,43,0.08) 0%, transparent 60%);
pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 {
font-size: 40px;
margin: 0 0 16px;
line-height: 1.1;
}
.cta-band p {
color: var(--mute);
font-size: 17px;
max-width: 600px;
margin: 0 auto 28px;
line-height: 1.6;
}
.cta-band-dark {
background: var(--ink);
color: var(--paper);
border-radius: 18px;
padding: 64px 48px;
text-align: center;
}
.cta-band-dark h2 { color: var(--paper); }
.cta-band-dark p { color: #C9CDD3; max-width: 600px; margin: 0 auto 28px; }
/* Form */
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field label {
font-size: 13px;
font-weight: 600;
color: var(--ink);
letter-spacing: 0.02em;
margin-bottom: 6px;
}
.field label .req { color: var(--paprika); }
.field input, .field select, .field textarea {
background: var(--paper);
border: 1px solid var(--rule);
border-radius: 10px;
padding: 12px 14px;
font: inherit;
font-size: 15px;
color: var(--ink);
transition: border-color 0.15s, background 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
outline: none;
border-color: var(--paprika);
background: var(--paprika-light);
}
.field textarea { resize: vertical; min-height: 90px; }
.field-hint {
font-size: 12px;
color: var(--mute);
margin-top: 4px;
}
/* Footer */
footer {
border-top: 1px solid var(--rule);
padding: 64px 0 48px;
color: var(--mute);
font-size: 13px;
background: var(--paper-2);
}
footer .container {
display: grid;
grid-template-columns: 1.5fr repeat(3, 1fr);
gap: 48px;
align-items: flex-start;
}
.footer-col h4 {
font-family: "Inter", sans-serif;
font-size: 12px;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--ink);
margin: 0 0 12px;
}
.footer-col a { display: block; padding: 4px 0; }
.footer-col a:hover { color: var(--paprika); }
.disclaimer {
border-top: 1px solid var(--rule);
margin-top: 32px;
padding-top: 24px;
font-size: 12px;
line-height: 1.6;
max-width: 820px;
color: var(--mute);
}
/* Responsive */
@media (max-width: 880px) {
.hero h1 { font-size: 44px; }
.section-head h2 { font-size: 32px; }
.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
.nav-links { display: none; }
.cta-band, .cta-band-dark { padding: 48px 28px; }
.section { padding: 56px 0; }
footer .container { grid-template-columns: 1fr; gap: 32px; }
}