v4
This commit is contained in:
+442
-229
@@ -17,8 +17,8 @@
|
||||
}
|
||||
|
||||
#hero {
|
||||
background: var(--gw-green);
|
||||
color: #fff;
|
||||
background: var(--surface-brand);
|
||||
color: var(--text-inverse);
|
||||
padding: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@@ -36,10 +36,8 @@
|
||||
height: auto;
|
||||
background: linear-gradient(
|
||||
to bottom,
|
||||
transparent 18%,
|
||||
rgba(33, 48, 33, 0.26) 48%,
|
||||
rgba(33, 48, 33, 0.78) 72%,
|
||||
#213021 86%
|
||||
transparent 30%,
|
||||
var(--surface-brand) 95%
|
||||
);
|
||||
pointer-events: none;
|
||||
z-index: 1;
|
||||
@@ -71,8 +69,8 @@
|
||||
margin: 0 0 14px;
|
||||
padding: 7px 12px;
|
||||
border-radius: 999px;
|
||||
background: rgba(255, 209, 0, 0.12);
|
||||
box-shadow: inset 0 0 0 1px rgba(255, 209, 0, 0.2);
|
||||
background: var(--surface-accent-soft);
|
||||
box-shadow: inset 0 0 0 1px var(--border-accent-soft);
|
||||
font-family: var(--font-body);
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
@@ -84,12 +82,29 @@
|
||||
.hero-subtitle {
|
||||
margin: -6px 0 22px;
|
||||
max-width: 560px;
|
||||
color: rgba(255, 255, 255, 0.86);
|
||||
color: var(--text-inverse-soft);
|
||||
font-size: var(--body-lead-size);
|
||||
line-height: 1.55;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.hero-seo-heading {
|
||||
margin: -10px 0 14px;
|
||||
color: var(--yellow);
|
||||
font-family: var(--font-head);
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.01em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.hero-seo-heading {
|
||||
margin: -4px 0 10px;
|
||||
font-size: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
.hero-chips {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
@@ -104,12 +119,12 @@
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
min-height: 38px;
|
||||
padding: 8px 14px;
|
||||
min-height: 44px;
|
||||
padding: 10px 16px;
|
||||
border-radius: 999px;
|
||||
background: rgba(255, 255, 255, 0.11);
|
||||
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||
color: #fff;
|
||||
background: var(--surface-overlay-strong);
|
||||
border: 1px solid var(--border-inverse-muted);
|
||||
color: var(--text-inverse);
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
line-height: 1.2;
|
||||
@@ -121,23 +136,69 @@
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.hero-trust-logo {
|
||||
width: 18px;
|
||||
height: 19px;
|
||||
.hero-trust-chip {
|
||||
gap: 10px;
|
||||
padding: 8px 16px 8px 8px;
|
||||
background: rgba(var(--white-rgb), 0.05);
|
||||
border-color: rgba(var(--white-rgb), 0.14);
|
||||
text-decoration: none;
|
||||
transition:
|
||||
background 0.22s ease,
|
||||
border-color 0.22s ease,
|
||||
transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
|
||||
}
|
||||
|
||||
.hero-trust-mark {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
border-radius: 50%;
|
||||
background: var(--surface-page);
|
||||
box-shadow: var(--shadow-card);
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
.hero-trust-chip {
|
||||
text-decoration: none;
|
||||
transition: background 0.2s ease, opacity 0.2s ease;
|
||||
.hero-trust-logo {
|
||||
display: block;
|
||||
width: 16px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.hero-trust-stars {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 2px;
|
||||
color: var(--yellow);
|
||||
font-size: 11px;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
:global(.hero-trust-stars .icon) {
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.hero-trust-label {
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.005em;
|
||||
color: rgba(var(--white-rgb), 0.92);
|
||||
}
|
||||
|
||||
@media (hover: hover) {
|
||||
.hero-trust-chip:hover {
|
||||
background: rgba(255, 255, 255, 0.16);
|
||||
background: rgba(var(--white-rgb), 0.09);
|
||||
border-color: rgba(var(--white-rgb), 0.24);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
}
|
||||
|
||||
.hero-trust-chip:focus-visible {
|
||||
outline: 2px solid var(--yellow);
|
||||
outline-offset: 3px;
|
||||
}
|
||||
|
||||
.hero-buttons {
|
||||
display: flex;
|
||||
gap: 18px;
|
||||
@@ -155,7 +216,9 @@
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
color: rgba(255, 255, 255, 0.86);
|
||||
min-height: 44px;
|
||||
padding: 0 4px;
|
||||
color: var(--text-inverse-soft);
|
||||
font-family: var(--font-head);
|
||||
font-size: 15px;
|
||||
font-weight: 700;
|
||||
@@ -165,7 +228,7 @@
|
||||
|
||||
@media (hover: hover) {
|
||||
.hero-secondary-link:hover {
|
||||
color: #fff;
|
||||
color: var(--text-inverse);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -193,166 +256,315 @@
|
||||
margin: 0;
|
||||
object-fit: cover;
|
||||
object-position: center -10%;
|
||||
transform: none;
|
||||
transform: scale(1.06);
|
||||
opacity: 0;
|
||||
animation: heroImageEnter 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
|
||||
}
|
||||
|
||||
#intro {
|
||||
background: #fff;
|
||||
padding: 24px 50px;
|
||||
text-align: left;
|
||||
.hero-text > * {
|
||||
opacity: 0;
|
||||
transform: translateY(14px);
|
||||
animation: heroRise 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
|
||||
}
|
||||
|
||||
.intro-trust-badge {
|
||||
display: grid;
|
||||
grid-template-columns: auto minmax(0, 1fr);
|
||||
gap: 18px;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
padding: 18px 22px;
|
||||
border-radius: 26px;
|
||||
background:
|
||||
radial-gradient(circle at top right, rgba(255, 209, 0, 0.14), transparent 30%),
|
||||
linear-gradient(180deg, #ffffff 0%, #fbf8f2 100%);
|
||||
box-shadow:
|
||||
0 1px 0 rgba(17, 20, 24, 0.04),
|
||||
0 18px 40px rgba(17, 20, 24, 0.08);
|
||||
}
|
||||
.hero-text > :nth-child(1) { animation-delay: 120ms; }
|
||||
.hero-text > :nth-child(2) { animation-delay: 180ms; }
|
||||
.hero-text > :nth-child(3) { animation-delay: 240ms; }
|
||||
.hero-text > :nth-child(4) { animation-delay: 300ms; }
|
||||
.hero-text > :nth-child(5) { animation-delay: 360ms; }
|
||||
.hero-text > :nth-child(6) { animation-delay: 420ms; }
|
||||
.hero-text > :nth-child(7) { animation-delay: 480ms; }
|
||||
|
||||
.intro-trust-mark {
|
||||
display: inline-flex;
|
||||
.hero-title-highlight {
|
||||
position: relative;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 56px;
|
||||
height: 56px;
|
||||
border-radius: 50%;
|
||||
background: #fff;
|
||||
color: #e00706;
|
||||
font-size: 24px;
|
||||
overflow: hidden;
|
||||
box-shadow: inset 0 0 0 1px rgba(14, 27, 41, 0.08);
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.intro-trust-mark-link {
|
||||
text-decoration: none;
|
||||
isolation: isolate;
|
||||
transition:
|
||||
transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
|
||||
box-shadow 0.22s ease;
|
||||
}
|
||||
|
||||
.intro-trust-mark-link::after {
|
||||
.hero-title-highlight::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
inset: -30% 35%;
|
||||
background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.2) 30%, rgba(255, 255, 255, 0.92) 50%, rgba(255, 255, 255, 0.2) 70%, transparent 100%);
|
||||
transform: translateX(-220%) rotate(18deg);
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: -0.06em;
|
||||
height: 2px;
|
||||
background: var(--yellow);
|
||||
transform: scaleX(0);
|
||||
transform-origin: left center;
|
||||
animation: heroUnderlineDraw 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
|
||||
animation-delay: 350ms;
|
||||
opacity: 0.85;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
:global(.hero-trust-stars .hero-trust-star) {
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
animation: introGoogleShine 4.8s ease-in-out infinite;
|
||||
transform: scale(0.6);
|
||||
animation: heroStarPop 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
|
||||
}
|
||||
|
||||
.intro-trust-mark-link:hover,
|
||||
.intro-trust-mark-link:focus-visible {
|
||||
transform: translateY(-1px) scale(1.04);
|
||||
box-shadow:
|
||||
inset 0 0 0 1px rgba(14, 27, 41, 0.08),
|
||||
0 10px 24px rgba(17, 20, 24, 0.12);
|
||||
}
|
||||
:global(.hero-trust-star-1) { animation-delay: 820ms; }
|
||||
:global(.hero-trust-star-2) { animation-delay: 880ms; }
|
||||
:global(.hero-trust-star-3) { animation-delay: 940ms; }
|
||||
:global(.hero-trust-star-4) { animation-delay: 1000ms; }
|
||||
:global(.hero-trust-star-5) { animation-delay: 1060ms; }
|
||||
|
||||
.intro-trust-mark-link:focus-visible {
|
||||
outline: 2px solid rgba(10, 48, 78, 0.28);
|
||||
outline-offset: 3px;
|
||||
}
|
||||
|
||||
.intro-google-logo {
|
||||
display: block;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
width: 28px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.intro-trust-copy {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.intro-trust-copy-mobile {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#intro p {
|
||||
font-size: var(--body-lead-size);
|
||||
font-weight: 700;
|
||||
line-height: 1.3;
|
||||
max-width: none;
|
||||
margin: 0;
|
||||
color: #1f2421;
|
||||
}
|
||||
|
||||
.intro-trust-meta {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 18px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.intro-trust-stars {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
color: var(--yellow);
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.intro-trust-cta {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 8px 14px;
|
||||
border-radius: 999px;
|
||||
background: rgba(33, 48, 33, 0.06);
|
||||
color: var(--gw-green);
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
text-decoration: none;
|
||||
box-shadow: inset 0 0 0 1px rgba(14, 27, 41, 0.08);
|
||||
}
|
||||
|
||||
.intro-trust-cta .icon {
|
||||
color: #e00706;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.intro-trust-cta:focus-visible {
|
||||
outline: 2px solid rgba(10, 48, 78, 0.28);
|
||||
outline-offset: 3px;
|
||||
}
|
||||
|
||||
@keyframes introGoogleShine {
|
||||
0%,
|
||||
64%,
|
||||
100% {
|
||||
transform: translateX(-220%) rotate(18deg);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
72% {
|
||||
@keyframes heroImageEnter {
|
||||
to {
|
||||
transform: scale(1);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
84% {
|
||||
transform: translateX(220%) rotate(18deg);
|
||||
opacity: 0;
|
||||
@keyframes heroRise {
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes heroUnderlineDraw {
|
||||
to {
|
||||
transform: scaleX(1);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes heroStarPop {
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.intro-trust-mark-link,
|
||||
.intro-trust-mark-link::after {
|
||||
.hero-img img,
|
||||
.hero-text > *,
|
||||
.hero-title-highlight::after {
|
||||
animation: none;
|
||||
opacity: 1;
|
||||
transform: none;
|
||||
}
|
||||
|
||||
.hero-title-highlight::after {
|
||||
transform: scaleX(1);
|
||||
}
|
||||
|
||||
:global(.hero-trust-stars .hero-trust-star) {
|
||||
animation: none;
|
||||
opacity: 1;
|
||||
transform: none;
|
||||
}
|
||||
}
|
||||
|
||||
#intro {
|
||||
position: relative;
|
||||
background: var(--gw-green);
|
||||
color: var(--text-inverse);
|
||||
padding: clamp(48px, 7vw, 88px) var(--space-container-x);
|
||||
overflow: hidden;
|
||||
isolation: isolate;
|
||||
}
|
||||
|
||||
#intro::before,
|
||||
#intro::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
pointer-events: none;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
#intro::before {
|
||||
inset: 0;
|
||||
background:
|
||||
radial-gradient(60% 80% at 85% 20%, rgba(var(--accent-rgb), 0.10), transparent 60%),
|
||||
radial-gradient(50% 70% at 8% 100%, rgba(var(--white-rgb), 0.05), transparent 60%);
|
||||
}
|
||||
|
||||
#intro::after {
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 1px;
|
||||
background: linear-gradient(90deg, transparent 0%, rgba(var(--white-rgb), 0.16) 18%, rgba(var(--white-rgb), 0.16) 82%, transparent 100%);
|
||||
}
|
||||
|
||||
.intro-inner {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
width: 100%;
|
||||
max-width: var(--max-w);
|
||||
margin: 0 auto;
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1fr) auto;
|
||||
align-items: end;
|
||||
gap: clamp(32px, 5vw, 80px);
|
||||
}
|
||||
|
||||
.intro-statement {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.intro-kicker {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 14px;
|
||||
margin-bottom: clamp(16px, 2.4vw, 26px);
|
||||
color: rgba(var(--white-rgb), 0.62);
|
||||
font-family: var(--font-body);
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.18em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.intro-kicker-rule {
|
||||
display: inline-block;
|
||||
width: 36px;
|
||||
height: 1px;
|
||||
background: var(--yellow);
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
.intro-headline {
|
||||
font-family: var(--font-head);
|
||||
font-weight: var(--weight-display);
|
||||
font-size: var(--text-display);
|
||||
line-height: 1.08;
|
||||
letter-spacing: var(--tracking-display);
|
||||
color: var(--text-inverse);
|
||||
margin: 0;
|
||||
max-width: 18ch;
|
||||
text-wrap: balance;
|
||||
}
|
||||
|
||||
.intro-word {
|
||||
display: inline-block;
|
||||
opacity: 0;
|
||||
transform: translateY(14px);
|
||||
animation: introWordRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
|
||||
animation-delay: calc(80ms + var(--word-i) * 55ms);
|
||||
}
|
||||
|
||||
.intro-word:last-child {
|
||||
color: var(--yellow);
|
||||
}
|
||||
|
||||
.intro-trust {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-end;
|
||||
gap: 14px;
|
||||
padding-left: clamp(24px, 4vw, 56px);
|
||||
border-left: 1px solid rgba(var(--white-rgb), 0.12);
|
||||
}
|
||||
|
||||
.intro-google {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 14px;
|
||||
padding: 10px 14px 10px 10px;
|
||||
border-radius: 999px;
|
||||
background: rgba(var(--white-rgb), 0.04);
|
||||
box-shadow: inset 0 0 0 1px rgba(var(--white-rgb), 0.10);
|
||||
color: var(--text-inverse);
|
||||
text-decoration: none;
|
||||
transition:
|
||||
background 0.25s ease,
|
||||
box-shadow 0.25s ease,
|
||||
transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
|
||||
}
|
||||
|
||||
.intro-google:hover,
|
||||
.intro-google:focus-visible {
|
||||
background: rgba(var(--white-rgb), 0.08);
|
||||
box-shadow: inset 0 0 0 1px rgba(var(--white-rgb), 0.22);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.intro-google:focus-visible {
|
||||
outline: 2px solid var(--yellow);
|
||||
outline-offset: 3px;
|
||||
}
|
||||
|
||||
.intro-google-mark {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
border-radius: 50%;
|
||||
background: var(--surface-page);
|
||||
box-shadow: var(--shadow-card);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.intro-google-logo {
|
||||
display: block;
|
||||
width: 18px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.intro-google-copy {
|
||||
display: inline-flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
gap: 2px;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
.intro-stars {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 3px;
|
||||
color: var(--yellow);
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.intro-google-label {
|
||||
font-family: var(--font-body);
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
color: rgba(var(--white-rgb), 0.92);
|
||||
letter-spacing: 0.005em;
|
||||
}
|
||||
|
||||
.intro-meta {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
margin: 0;
|
||||
font-family: var(--font-body);
|
||||
font-size: 11px;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.18em;
|
||||
text-transform: uppercase;
|
||||
color: rgba(var(--white-rgb), 0.58);
|
||||
}
|
||||
|
||||
.intro-meta-dot {
|
||||
display: inline-block;
|
||||
width: 5px;
|
||||
height: 5px;
|
||||
border-radius: 50%;
|
||||
background: var(--yellow);
|
||||
opacity: 0.85;
|
||||
}
|
||||
|
||||
@keyframes introWordRise {
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.intro-word {
|
||||
animation: none;
|
||||
opacity: 1;
|
||||
transform: none;
|
||||
}
|
||||
|
||||
.intro-google {
|
||||
transition: none;
|
||||
}
|
||||
}
|
||||
@@ -366,12 +578,12 @@
|
||||
#testimonials,
|
||||
#info,
|
||||
#newlead {
|
||||
background: #fff;
|
||||
background: var(--surface-page);
|
||||
}
|
||||
|
||||
footer {
|
||||
background: var(--gw-green);
|
||||
color: #fff;
|
||||
background: var(--surface-brand);
|
||||
color: var(--text-inverse);
|
||||
}
|
||||
|
||||
#testimonials .section-heading {
|
||||
@@ -383,16 +595,16 @@ footer {
|
||||
}
|
||||
|
||||
footer {
|
||||
padding: 60px 50px 32px;
|
||||
padding: var(--space-11) var(--space-container-x) var(--space-7);
|
||||
}
|
||||
|
||||
.testimonial-card {
|
||||
background: linear-gradient(180deg, #ffffff 0%, var(--off-white) 100%);
|
||||
border-radius: 28px;
|
||||
padding: 36px 32px;
|
||||
background: var(--surface-panel);
|
||||
border-radius: var(--radius-lg);
|
||||
padding: var(--space-7);
|
||||
box-shadow:
|
||||
inset 0 0 0 1px rgba(17, 20, 24, 0.06),
|
||||
0 4px 24px rgba(0, 0, 0, 0.06);
|
||||
var(--shadow-inset-strong),
|
||||
var(--shadow-md);
|
||||
transition:
|
||||
transform 0.18s cubic-bezier(0.22, 1, 0.36, 1),
|
||||
box-shadow 0.22s ease;
|
||||
@@ -402,8 +614,8 @@ footer {
|
||||
.testimonial-card:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow:
|
||||
inset 0 0 0 1px rgba(17, 20, 24, 0.06),
|
||||
0 8px 40px rgba(0, 0, 0, 0.08);
|
||||
var(--shadow-inset-strong),
|
||||
var(--shadow-lg);
|
||||
filter: brightness(1.01);
|
||||
}
|
||||
}
|
||||
@@ -438,16 +650,16 @@ footer {
|
||||
}
|
||||
|
||||
.faq details {
|
||||
border-radius: 16px;
|
||||
border: 1px solid rgba(33, 48, 33, 0.1);
|
||||
background: #fff;
|
||||
border-radius: var(--radius-lg);
|
||||
border: 1px solid var(--border-brand-muted);
|
||||
background: var(--surface-page);
|
||||
padding: 0;
|
||||
margin-bottom: 10px;
|
||||
transition: box-shadow 0.2s ease;
|
||||
}
|
||||
|
||||
.faq details[open] {
|
||||
box-shadow: 0 8px 24px rgba(17, 20, 24, 0.06);
|
||||
box-shadow: var(--shadow-lg);
|
||||
}
|
||||
|
||||
.faq summary {
|
||||
@@ -459,8 +671,8 @@ footer {
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
gap: 16px;
|
||||
padding: 18px 22px;
|
||||
border-radius: 16px;
|
||||
padding: var(--space-5) var(--space-6);
|
||||
border-radius: var(--radius-lg);
|
||||
transition: background 0.18s ease;
|
||||
}
|
||||
|
||||
@@ -469,17 +681,17 @@ footer {
|
||||
}
|
||||
|
||||
.faq summary:focus-visible {
|
||||
outline: 2px solid rgba(10, 48, 78, 0.28);
|
||||
outline: 2px solid var(--border-focus);
|
||||
outline-offset: -2px;
|
||||
}
|
||||
|
||||
.faq summary:hover {
|
||||
background: rgba(33, 48, 33, 0.03);
|
||||
background: var(--surface-brand-faint);
|
||||
}
|
||||
|
||||
.faq details[open] summary {
|
||||
border-bottom: 1px solid rgba(33, 48, 33, 0.08);
|
||||
border-radius: 16px 16px 0 0;
|
||||
border-bottom: 1px solid var(--border-brand-soft);
|
||||
border-radius: var(--radius-lg) var(--radius-lg) 0 0;
|
||||
}
|
||||
|
||||
.faq summary::after {
|
||||
@@ -488,19 +700,19 @@ footer {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
border-radius: 50%;
|
||||
background: rgba(33, 48, 33, 0.06);
|
||||
background: var(--surface-brand-soft);
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 18px;
|
||||
font-weight: 400;
|
||||
color: var(--gw-green);
|
||||
color: var(--text-brand);
|
||||
transition: background 0.18s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
|
||||
}
|
||||
|
||||
.faq details[open] summary::after {
|
||||
content: '−';
|
||||
background: rgba(33, 48, 33, 0.1);
|
||||
background: rgba(var(--brand-rgb), 0.1);
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
@@ -515,19 +727,19 @@ footer {
|
||||
#instagram {
|
||||
background: var(--yellow);
|
||||
text-align: center;
|
||||
padding: 60px 50px;
|
||||
padding: var(--space-section-support-y) var(--space-container-x);
|
||||
}
|
||||
|
||||
#instagram h2 {
|
||||
color: var(--gw-green);
|
||||
}
|
||||
|
||||
.instagram-blurb {
|
||||
margin: -8px 0 24px;
|
||||
font-size: var(--body-copy-size);
|
||||
color: rgba(0, 0, 0, 0.6);
|
||||
color: rgba(var(--brand-rgb), 0.72);
|
||||
}
|
||||
|
||||
#instagram .btn {
|
||||
background: var(--gw-green);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.footer-logo {
|
||||
display: block;
|
||||
@@ -539,7 +751,7 @@ footer {
|
||||
.footer-brand p {
|
||||
font-size: 14px;
|
||||
line-height: 1.7;
|
||||
opacity: 0.72;
|
||||
opacity: 0.85;
|
||||
margin-bottom: 18px;
|
||||
white-space: pre-line;
|
||||
max-width: 30ch;
|
||||
@@ -557,10 +769,10 @@ footer {
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding-left: 4px;
|
||||
color: rgba(255, 255, 255, 0.82);
|
||||
color: var(--text-inverse-muted);
|
||||
font-family: var(--font-head);
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
font-weight: var(--weight-heading);
|
||||
letter-spacing: 0.02em;
|
||||
line-height: 1.2;
|
||||
}
|
||||
@@ -576,8 +788,8 @@ footer {
|
||||
width: 44px;
|
||||
height: 44px;
|
||||
border-radius: 16px;
|
||||
background: rgba(255, 255, 255, 0.08);
|
||||
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
|
||||
background: var(--surface-overlay-soft);
|
||||
box-shadow: var(--shadow-inset-inverse);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
@@ -590,7 +802,7 @@ footer {
|
||||
|
||||
.social-links a:hover {
|
||||
background: var(--yellow);
|
||||
color: #000;
|
||||
color: var(--text-strong);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
@@ -603,11 +815,11 @@ footer {
|
||||
.footer-col-label {
|
||||
margin: 0 0 14px;
|
||||
font-family: var(--font-head);
|
||||
font-size: 10px;
|
||||
font-weight: 700;
|
||||
font-size: 12px;
|
||||
font-weight: var(--weight-heading);
|
||||
letter-spacing: 0.12em;
|
||||
text-transform: uppercase;
|
||||
opacity: 0.5;
|
||||
opacity: 0.55;
|
||||
}
|
||||
|
||||
.footer-nav {
|
||||
@@ -631,7 +843,7 @@ footer {
|
||||
padding: 8px 0;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
opacity: 0.72;
|
||||
opacity: 0.85;
|
||||
transition: opacity 0.18s;
|
||||
}
|
||||
|
||||
@@ -644,7 +856,7 @@ footer {
|
||||
gap: 8px;
|
||||
margin-top: 18px;
|
||||
padding-top: 18px;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
||||
border-top: 1px solid rgba(var(--white-rgb), 0.1);
|
||||
max-width: 24rem;
|
||||
}
|
||||
|
||||
@@ -652,11 +864,11 @@ footer {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
min-height: 42px;
|
||||
min-height: 44px;
|
||||
padding: 0 2px;
|
||||
font-size: 13px;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
opacity: 0.7;
|
||||
opacity: 0.85;
|
||||
transition: opacity 0.18s;
|
||||
}
|
||||
|
||||
@@ -676,10 +888,10 @@ footer {
|
||||
flex-wrap: wrap;
|
||||
width: 100%;
|
||||
gap: 12px;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
||||
border-top: 1px solid rgba(var(--white-rgb), 0.1);
|
||||
padding-top: 28px;
|
||||
font-size: 13px;
|
||||
opacity: 0.6;
|
||||
font-size: 12px;
|
||||
opacity: 0.55;
|
||||
}
|
||||
|
||||
.footer-bottom > span {
|
||||
@@ -713,7 +925,7 @@ footer {
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.04em;
|
||||
text-transform: uppercase;
|
||||
opacity: 0.5;
|
||||
opacity: 0.55;
|
||||
cursor: pointer;
|
||||
flex: 0 0 auto;
|
||||
transition: opacity 0.2s;
|
||||
@@ -732,22 +944,22 @@ footer {
|
||||
.ph-inner {
|
||||
max-width: var(--max-w);
|
||||
margin: 0 auto;
|
||||
padding: 0 50px;
|
||||
padding: 0 var(--space-container-x);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* Green variant */
|
||||
.page-header--green {
|
||||
background: var(--gw-green);
|
||||
color: #fff;
|
||||
background: var(--surface-brand);
|
||||
color: var(--text-inverse);
|
||||
}
|
||||
|
||||
.page-header--green .eyebrow {
|
||||
display: inline-block;
|
||||
padding: 7px 12px;
|
||||
border-radius: 999px;
|
||||
background: rgba(255, 209, 0, 0.12);
|
||||
box-shadow: inset 0 0 0 1px rgba(255, 209, 0, 0.2);
|
||||
background: var(--surface-accent-soft);
|
||||
box-shadow: inset 0 0 0 1px var(--border-accent-soft);
|
||||
color: var(--yellow);
|
||||
}
|
||||
|
||||
@@ -777,11 +989,11 @@ footer {
|
||||
}
|
||||
|
||||
.page-header--green .ph-title {
|
||||
color: #fff;
|
||||
color: var(--text-inverse);
|
||||
}
|
||||
|
||||
.page-header--white .ph-title {
|
||||
color: #000;
|
||||
color: var(--text-strong);
|
||||
}
|
||||
|
||||
/* Subtitle */
|
||||
@@ -793,7 +1005,7 @@ footer {
|
||||
}
|
||||
|
||||
.page-header--green .ph-subtitle {
|
||||
color: rgba(255, 255, 255, 0.8);
|
||||
color: var(--text-inverse-gentle);
|
||||
}
|
||||
|
||||
.page-header--white .ph-subtitle {
|
||||
@@ -807,10 +1019,10 @@ footer {
|
||||
/* Media column */
|
||||
.ph-media {
|
||||
aspect-ratio: 4 / 3;
|
||||
border-radius: 28px;
|
||||
border-radius: var(--radius-lg);
|
||||
overflow: hidden;
|
||||
background: #f4efe7;
|
||||
box-shadow: 0 16px 40px rgba(17, 20, 24, 0.08);
|
||||
background: var(--surface-panel-beige);
|
||||
box-shadow: var(--shadow-2xl);
|
||||
}
|
||||
|
||||
.ph-media img {
|
||||
@@ -843,15 +1055,15 @@ footer {
|
||||
}
|
||||
|
||||
.page-header--green .ph-chip {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
border: 1px solid rgba(255, 255, 255, 0.14);
|
||||
color: #fff;
|
||||
background: var(--surface-overlay);
|
||||
border: 1px solid var(--border-inverse-strong);
|
||||
color: var(--text-inverse);
|
||||
}
|
||||
|
||||
.page-header--white .ph-chip {
|
||||
background: rgba(33, 48, 33, 0.07);
|
||||
border: 1px solid rgba(33, 48, 33, 0.1);
|
||||
color: var(--gw-green);
|
||||
background: rgba(var(--brand-rgb), 0.07);
|
||||
border: 1px solid var(--border-brand-muted);
|
||||
color: var(--text-brand);
|
||||
}
|
||||
|
||||
.ph-chip--link {
|
||||
@@ -860,11 +1072,11 @@ footer {
|
||||
}
|
||||
|
||||
.page-header--green .ph-chip--link:hover {
|
||||
background: rgba(255, 255, 255, 0.18);
|
||||
background: rgba(var(--white-rgb), 0.18);
|
||||
}
|
||||
|
||||
.page-header--white .ph-chip--link:hover {
|
||||
background: rgba(33, 48, 33, 0.12);
|
||||
background: var(--surface-brand-selected);
|
||||
}
|
||||
|
||||
/* Responsive */
|
||||
@@ -909,6 +1121,7 @@ footer {
|
||||
|
||||
.ph-chip {
|
||||
font-size: 13px;
|
||||
padding: 8px 14px;
|
||||
min-height: 44px;
|
||||
padding: 10px 16px;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user