* 2x2 Grid */
.cards-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: clamp(40px, 6vw, 64px);
max-width: 1240px;
margin: 0 auto;
}
.card-column {
display: flex;
flex-direction: column;
gap: clamp(28px, 4vw, 40px);
}
.card {
background: var(--surface);
border: 1px solid var(--line);
border-radius: var(--radius);
padding: clamp(32px, 6vw, 48px);
box-shadow: var(--shadow-sm);
transition: all var(--transition);
position: relative;
overflow: hidden;
flex: 1;
min-height: 280px;
display: flex;
flex-direction: column;
}
.card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 6px;
opacity: 0;
transition: var(--transition);
}
.card:hover {
transform: translateY(-16px);
box-shadow: var(--shadow-md);
border-color: transparent;
}
.card:hover::before { opacity: 1; }
/* Unique accents */
.card:nth-child(1)::before { background: var(--accent-emotion); }
.card:nth-child(2)::before { background: var(--accent-self); }
.card:nth-child(3)::before { background: var(--accent-relate); }
.card:nth-child(4)::before { background: var(--accent-inner); }
.card-eyebrow {
font-size: clamp(14px, 1.8vw, 16px);
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.08em;
margin-bottom: 24px;
opacity: 0.85;
}
.card-title {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(24px, 4vw, 32px);
font-weight: 400;
line-height: 1.2;
color: var(--text-dark);
margin-bottom: 20px;
}
.card-text {
flex: 1;
font-size: clamp(16px, 2.2vw, 18px);
line-height: 1.65;
color: var(--text-main);
opacity: 0.95;
}
.card-cta {
margin-top: auto;
font-size: clamp(15px, 2vw, 17px);
font-weight: 500;
color: var(--accent-main);
padding: 20px 0 8px;
border-bottom: 2px solid transparent;
transition: var(--transition);
text-decoration: none;
display: inline-block;
}
.card-cta:hover {
border-bottom-color: currentColor;
color: var(--accent-hover);
}
/* Footer */
.footer-text {
font-size: clamp(18px, 2.5vw, 22px);
color: var(--text-muted);
text-align: center;
max-width: 800px;
margin: 0 auto 56px;
line-height: 1.65;
}
.cta-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 28px;
justify-items: center;
max-width: 700px;
margin: 0 auto;
}
.btn {
padding: 24px 52px;
border-radius: 999px;
font-size: clamp(16px, 2.2vw, 18px);
font-weight: 500;
text-decoration: none;
transition: all var(--transition);
box-shadow: var(--shadow-sm);
border: none;
cursor: pointer;
display: inline-flex;
align-items: center;
gap: 16px;
min-height: 68px;
justify-content: center;
}
.btn-primary {
background: linear-gradient(135deg, var(--accent-main) 0%, var(--accent-hover) 100%);
color: white;
}
.btn-primary:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-md);
}
.btn-secondary {
background: var(--surface-accent);
color: var(--accent-main);
border: 2px solid var(--accent-main);
}
.btn-secondary:hover {
background: var(--accent-main);
color: white;
border-color: var(--accent-main);
}
/* Responsive */
@media (max-width: 1024px) {
.cards-wrapper { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
.cards-wrapper { gap: 32px; }
.card { min-height: 320px; padding: 28px 24px; }
body { padding: 32px 20px; }
.logo { top: 20px; left: 20px; width: 120px; height: 40px; font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) {
* { transition: none !important; }
}