2026-07-21 08:00:16 -04:00
|
|
|
<script lang="ts">
|
2026-07-21 12:42:02 -04:00
|
|
|
import FlagChip from '$lib/components/motion/FlagChip.svelte';
|
2026-07-21 08:00:16 -04:00
|
|
|
import KineticText from '$lib/components/motion/KineticText.svelte';
|
|
|
|
|
import type { Bundle, Locale } from '$lib/i18n';
|
2026-07-21 12:42:02 -04:00
|
|
|
import { reveal } from '$lib/motion/reveal';
|
2026-07-21 08:00:16 -04:00
|
|
|
import { pictoFor } from './pictos';
|
|
|
|
|
|
|
|
|
|
let { t }: { t: Bundle; locale?: Locale } = $props();
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<section id="engagement" class="section">
|
|
|
|
|
<div class="container">
|
2026-07-21 12:42:02 -04:00
|
|
|
<FlagChip />
|
2026-07-21 08:00:16 -04:00
|
|
|
<h2 class="section-title">
|
2026-07-21 08:41:55 -04:00
|
|
|
<KineticText as="span" text={t.engagement.section_title} /> 
|
2026-07-21 08:00:16 -04:00
|
|
|
<span class="accent-text"
|
|
|
|
|
><KineticText as="span" text={t.engagement.section_title_accent} /></span
|
|
|
|
|
>
|
|
|
|
|
</h2>
|
|
|
|
|
<p class="section-subtitle">{t.engagement.section_subtitle}</p>
|
|
|
|
|
|
|
|
|
|
<div class="engagement-options">
|
2026-07-21 12:42:02 -04:00
|
|
|
{#each t.engagement.cards as card, i (card.title)}
|
|
|
|
|
<div class="engagement-card" use:reveal={i}>
|
|
|
|
|
<div class="engagement-icon reveal-pop" use:reveal={i + 1}>
|
2026-07-21 08:00:16 -04:00
|
|
|
<svg class="icon" aria-hidden="true"
|
|
|
|
|
><use href="/icons.svg#{pictoFor(card.icon)}" /></svg
|
|
|
|
|
>
|
|
|
|
|
</div>
|
|
|
|
|
<h3>{card.title}</h3>
|
|
|
|
|
<p>{card.text}</p>
|
|
|
|
|
<a href="#contact" class="btn btn-solid">{card.cta}</a>
|
|
|
|
|
</div>
|
|
|
|
|
{/each}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
.section-title {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.accent-text {
|
|
|
|
|
color: var(--or-oki);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.section-subtitle {
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.engagement-options {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
|
|
|
gap: 1.5rem;
|
|
|
|
|
margin: 3rem 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.engagement-card {
|
|
|
|
|
background: var(--card-bg);
|
|
|
|
|
border: var(--border-card);
|
|
|
|
|
border-top: 4px solid var(--or-oki);
|
|
|
|
|
border-radius: var(--radius-md);
|
|
|
|
|
padding: 2.5rem;
|
|
|
|
|
text-align: center;
|
|
|
|
|
transition: transform var(--dur-tanbou) var(--ease-ka);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.engagement-card:hover {
|
|
|
|
|
transform: translateY(-4px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.engagement-icon {
|
|
|
|
|
color: var(--or-oki);
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.engagement-icon .icon {
|
|
|
|
|
width: 2.25rem;
|
|
|
|
|
height: 2.25rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.engagement-card h3 {
|
|
|
|
|
color: var(--or-oki);
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
font-size: 1.35rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.engagement-card p {
|
|
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
|
line-height: 1.6;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
.engagement-options {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|