Files
gw-svelte/src/lib/components/AboutPage.svelte
T

895 lines
21 KiB
Svelte
Raw Normal View History

2026-05-02 08:26:18 +12:00
<script lang="ts">
import { reveal } from '$lib/actions/reveal';
2026-05-06 23:55:31 +12:00
import Icon from '$lib/components/Icon.svelte';
import ServicesSection from '$lib/components/ServicesSection.svelte';
2026-05-02 19:44:45 +12:00
import { getImageMetadata } from '$lib/image-metadata';
2026-05-02 08:26:18 +12:00
import type { AboutPageContent, SiteSharedContent } from '$lib/types';
export let content: SiteSharedContent;
export let pageContent: AboutPageContent;
2026-05-06 23:55:31 +12:00
const leadSection = pageContent.sections[0];
const storySections = pageContent.sections.slice(1);
const storyPillars = ['Small and medium dogs', 'Auckland Central', 'Positive reinforcement'];
const careStripItems = [
{ label: 'Vaccinated dogs', icon: 'fas fa-shield-heart' },
{ label: 'Well-mannered groups', icon: 'fas fa-award' },
{ label: 'Comfortable with people', icon: 'fas fa-handshake-angle' },
{ label: 'Social with other dogs', icon: 'fas fa-paw' },
{ label: 'Structured adventures', icon: 'fas fa-tree' },
{ label: 'Small-pack focus', icon: 'fas fa-users' }
];
const trustItems = [
{
icon: 'fas fa-shield-heart',
title: 'First aid trained',
body: 'All walkers hold a current First Aid training certificate.'
},
{
icon: 'fas fa-user-shield',
title: 'Insured and police-checked',
body: 'We are covered by public liability insurance, and each dog walker is police checked.'
},
{
icon: 'fas fa-camera',
title: 'Clear updates',
body: 'Clients get social media updates, photos, and practical feedback after outings.'
},
{
icon: 'fas fa-clipboard-check',
title: 'Thoughtful onboarding',
body: 'Every new dog starts with a Meet & Greet and assessment walks before joining the routine.'
}
];
const workflowItems = [
{
icon: 'fas fa-users',
title: 'Small groups, not chaos',
body: 'Tiny Gang walks are kept to 4-8 dogs, designed specifically for small and medium breeds.'
},
{
icon: 'fas fa-person-walking',
title: 'Solo support when needed',
body: 'One-on-one walks are available for dogs that need more space, more focus, or a different pace.'
},
{
icon: 'fas fa-car-side',
title: 'Pick-up, drop-off, and adventure',
body: 'We collect dogs, head to Auckland parks and beaches, and build outings around movement, sniffing, and manners.'
},
{
icon: 'fas fa-shield-heart',
title: 'Weather and emergency plans',
body: 'We walk in most conditions when it is safe, and if there is an emergency we contact you and follow your vet protocol.'
}
];
const proofItems = content.testimonials.slice(0, 6);
2026-05-02 08:26:18 +12:00
</script>
<main class="about-page">
2026-05-06 23:55:31 +12:00
<section class="about-page-hero">
2026-05-02 08:26:18 +12:00
<div class="about-inner">
<h1>{pageContent.title}</h1>
</div>
</section>
2026-05-06 23:55:31 +12:00
<section class="about-hero">
<div class="about-inner">
<div class="about-hero-grid">
<div class="about-hero-copy">
<span class="about-kicker">About GoodWalk</span>
<h2>{leadSection.title}</h2>
<p class="about-hero-intro">{leadSection.body[0]}</p>
<div class="about-pillars" aria-label="What shapes GoodWalk">
{#each storyPillars as pillar}
<span>{pillar}</span>
{/each}
</div>
2026-05-02 08:26:18 +12:00
</div>
2026-05-06 23:55:31 +12:00
<div class="about-hero-media">
2026-05-02 19:44:45 +12:00
<img
2026-05-06 23:55:31 +12:00
src={leadSection.imageUrl}
alt={leadSection.imageAlt}
width={getImageMetadata(leadSection.imageUrl)?.width}
height={getImageMetadata(leadSection.imageUrl)?.height}
fetchpriority="high"
2026-05-02 19:44:45 +12:00
decoding="async"
/>
2026-05-02 08:26:18 +12:00
</div>
</div>
2026-05-06 23:55:31 +12:00
</div>
</section>
<section class="about-ribbon">
<div class="about-inner">
<div class="about-ribbon-track" aria-label="GoodWalk pack standards">
{#each careStripItems as item, index}
<span class={`about-ribbon-chip about-ribbon-chip-${(index % 3) + 1}`}>
<Icon name={item.icon} />
{item.label}
</span>
{/each}
</div>
</div>
</section>
<section use:reveal class="about-intro-band reveal-block">
<div class="about-inner">
<div class="about-intro-grid">
<div class="about-intro-main">
<span class="about-kicker">Our story</span>
<p>{leadSection.body[1]}</p>
</div>
<aside class="about-intro-aside">
<span class="about-kicker">What clients are choosing</span>
<ul>
<li>Small-group pack walks built for the right dogs</li>
<li>One-on-one walks for dogs needing more space or focus</li>
<li>Puppy visits that build confidence before pack life</li>
</ul>
</aside>
</div>
</div>
</section>
{#each storySections as section, index}
<section use:reveal class={`about-editorial reveal-block ${index % 2 === 0 ? 'about-editorial-tint' : ''}`}>
<div class="about-inner">
<div class:about-editorial-reverse={section.reverse} class="about-editorial-grid">
<div class="about-editorial-copy">
<span class="about-kicker">0{index + 2}</span>
<h2>{section.title}</h2>
{#each section.body as paragraph}
<p>{paragraph}</p>
{/each}
</div>
<div class="about-editorial-media">
<img
src={section.imageUrl}
alt={section.imageAlt}
width={getImageMetadata(section.imageUrl)?.width}
height={getImageMetadata(section.imageUrl)?.height}
loading="lazy"
decoding="async"
/>
</div>
</div>
</div>
2026-05-02 08:26:18 +12:00
</section>
{/each}
2026-05-06 23:55:31 +12:00
<section use:reveal class="about-credentials reveal-block">
<div class="about-inner">
<div class="about-credentials-head">
<span class="about-kicker about-kicker-light">Experience and safety</span>
<h2>Practical trust signals, not filler.</h2>
</div>
<div class="about-credentials-list">
{#each trustItems as item}
<article class="about-credential-row">
<div class="about-credential-mark" aria-hidden="true">
<Icon name={item.icon} />
</div>
<div>
<h3>{item.title}</h3>
<p>{item.body}</p>
</div>
</article>
{/each}
</div>
</div>
</section>
<section use:reveal class="about-workflow reveal-block">
<div class="about-inner">
<div class="about-workflow-head">
<span class="about-kicker">How we work</span>
<h2>Clear standards, calm handling, and a routine dogs can settle into.</h2>
</div>
<div class="about-workflow-lines">
{#each workflowItems as item, index}
<article class="about-workflow-row">
<div class="about-workflow-index">0{index + 1}</div>
<div class="about-workflow-icon" aria-hidden="true">
<Icon name={item.icon} />
</div>
<h3>{item.title}</h3>
<p>{item.body}</p>
</article>
{/each}
</div>
</div>
</section>
{#if proofItems.length > 0}
<section use:reveal class="about-proof reveal-block">
<div class="about-inner">
<div class="about-proof-head">
<span class="about-kicker">Proof</span>
<h2>Dogs who drag their people to the gate tell the story better than we can.</h2>
</div>
<div class="about-proof-grid">
{#each proofItems as item, index}
<article class={`about-proof-card about-proof-card-${(index % 3) + 1}`}>
<p class="about-proof-quote">{item.quote}</p>
<p class="about-proof-meta">{item.reviewer} · {item.detail}</p>
</article>
{/each}
</div>
</div>
</section>
{/if}
<ServicesSection services={content.services} heading={pageContent.servicesTitle} />
2026-05-02 08:26:18 +12:00
<section use:reveal={{ delay: 70 }} class="about-contact reveal-block">
<div class="about-inner">
2026-05-06 23:55:31 +12:00
<div class="about-contact-band">
<div class="about-contact-copy">
<span class="about-kicker">Get in touch</span>
<h2>{pageContent.contact.title}</h2>
<p>Tell us a little about your dog and well help you figure out the right fit.</p>
</div>
<div class="about-contact-actions">
2026-05-02 08:26:18 +12:00
<a class="about-contact-link" href={`mailto:${pageContent.contact.email}`}>
2026-05-06 23:55:31 +12:00
<span>Email</span>
<strong>{pageContent.contact.email}</strong>
2026-05-02 08:26:18 +12:00
</a>
<a class="btn btn-yellow" href={pageContent.contact.cta.href}>
{pageContent.contact.cta.label}
</a>
<a class="about-contact-link" href={`tel:${pageContent.contact.phone.replace(/[^0-9+]/g, '')}`}>
2026-05-06 23:55:31 +12:00
<span>Phone</span>
<strong>{pageContent.contact.phone}</strong>
2026-05-02 08:26:18 +12:00
</a>
</div>
</div>
</div>
</section>
</main>
<style>
.about-page {
2026-05-06 23:55:31 +12:00
background:
radial-gradient(circle at top left, rgba(255, 209, 0, 0.14), transparent 24%),
linear-gradient(180deg, #fffdfa 0%, #fbfbfb 28%, #f7f4ed 100%);
2026-05-02 08:26:18 +12:00
}
.about-inner {
max-width: var(--max-w);
margin: 0 auto;
padding: 0 50px;
}
2026-05-06 23:55:31 +12:00
.about-page-hero {
padding: 72px 0 26px;
2026-05-02 08:26:18 +12:00
}
2026-05-06 23:55:31 +12:00
.about-page-hero h1,
.about-hero h2,
.about-editorial-copy h2,
.about-credentials h2,
.about-workflow h2,
.about-proof h2,
.about-contact h2 {
2026-05-02 08:26:18 +12:00
margin: 0;
font-family: var(--font-head);
font-size: clamp(34px, 4vw, 56px);
line-height: 1.05;
letter-spacing: -0.04em;
color: #000;
}
2026-05-06 23:55:31 +12:00
.about-page-hero h1 {
2026-05-02 08:26:18 +12:00
text-align: center;
}
2026-05-06 23:55:31 +12:00
.about-kicker {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 12px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: rgba(33, 48, 33, 0.64);
2026-05-02 08:26:18 +12:00
}
2026-05-06 23:55:31 +12:00
.about-kicker-light {
color: rgba(255, 255, 255, 0.64);
2026-05-02 08:26:18 +12:00
}
2026-05-06 23:55:31 +12:00
.about-hero {
padding: 0 0 20px;
}
.about-hero-grid {
2026-05-02 08:26:18 +12:00
display: grid;
2026-05-06 23:55:31 +12:00
grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
2026-05-02 08:26:18 +12:00
gap: 44px;
align-items: center;
}
2026-05-06 23:55:31 +12:00
.about-hero-copy h2 {
margin-top: 12px;
max-width: 11ch;
2026-05-02 08:26:18 +12:00
}
2026-05-06 23:55:31 +12:00
.about-hero-intro {
margin: 22px 0 0;
max-width: 35rem;
color: #34363a;
font-size: clamp(18px, 1.8vw, 20px);
line-height: 1.85;
}
.about-pillars {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 28px;
}
.about-pillars span {
padding: 10px 16px;
border-radius: 999px;
background: rgba(33, 48, 33, 0.06);
color: var(--green);
font-size: 14px;
font-weight: 700;
}
.about-hero-media img {
display: block;
width: 100%;
aspect-ratio: 16 / 11;
border-radius: 34px;
object-fit: cover;
box-shadow: 0 24px 60px rgba(17, 20, 24, 0.12);
}
.about-ribbon {
padding: 6px 0 28px;
}
.about-ribbon-track {
display: flex;
flex-wrap: wrap;
gap: 12px;
padding: 0;
}
.about-ribbon-chip {
display: inline-flex;
align-items: center;
gap: 10px;
min-height: 44px;
padding: 10px 16px;
border-radius: 999px;
color: var(--green);
font-size: 14px;
font-weight: 700;
box-shadow: inset 0 0 0 1px rgba(33, 48, 33, 0.08);
}
.about-ribbon-chip-1 {
background: #f3efe7;
}
.about-ribbon-chip-2 {
background: #fff7d5;
}
.about-ribbon-chip-3 {
background: #e7efe0;
}
.about-intro-band {
padding: 0 0 52px;
}
.about-intro-grid {
display: grid;
grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
gap: 34px;
align-items: start;
padding-top: 22px;
border-top: 1px solid rgba(33, 48, 33, 0.12);
}
.about-intro-main p {
margin: 12px 0 0;
font-size: clamp(22px, 2.4vw, 31px);
line-height: 1.45;
letter-spacing: -0.03em;
color: #1f2328;
}
.about-intro-aside {
padding-left: 26px;
border-left: 3px solid rgba(33, 48, 33, 0.14);
}
.about-intro-aside ul {
margin: 12px 0 0;
padding: 0;
list-style: none;
}
.about-intro-aside li {
color: #40444a;
font-size: 15px;
line-height: 1.7;
}
.about-intro-aside li + li {
margin-top: 10px;
}
.about-editorial,
.about-workflow,
.about-proof {
padding: 0 0 72px;
}
.about-editorial-tint {
background: linear-gradient(180deg, rgba(245, 239, 230, 0.66) 0%, rgba(245, 239, 230, 0) 100%);
}
.about-editorial-grid {
display: grid;
grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
gap: 52px;
align-items: center;
}
.about-editorial-reverse .about-editorial-copy {
2026-05-02 08:26:18 +12:00
order: 2;
}
2026-05-06 23:55:31 +12:00
.about-editorial-reverse .about-editorial-media {
2026-05-02 08:26:18 +12:00
order: 1;
}
2026-05-06 23:55:31 +12:00
.about-editorial-copy h2 {
margin-top: 12px;
font-size: clamp(28px, 3vw, 42px);
2026-05-02 08:26:18 +12:00
}
2026-05-06 23:55:31 +12:00
.about-editorial-copy p {
2026-05-02 08:26:18 +12:00
margin: 18px 0 0;
color: #34363a;
font-size: 17px;
2026-05-06 23:55:31 +12:00
line-height: 1.8;
2026-05-02 08:26:18 +12:00
}
2026-05-06 23:55:31 +12:00
.about-editorial-media img {
2026-05-02 08:26:18 +12:00
display: block;
width: 100%;
2026-05-06 23:55:31 +12:00
border-radius: 32px;
2026-05-02 08:26:18 +12:00
object-fit: cover;
2026-05-06 23:55:31 +12:00
box-shadow: 0 18px 44px rgba(17, 20, 24, 0.12);
}
.about-credentials {
padding: 68px 0 72px;
background: var(--green);
color: #fff;
}
.about-credentials-head {
display: grid;
grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
gap: 28px;
align-items: end;
margin-bottom: 28px;
}
.about-credentials h2 {
color: #fff;
font-size: clamp(30px, 3.2vw, 46px);
}
.about-credentials-list {
border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.about-credential-row {
display: grid;
grid-template-columns: 54px minmax(0, 1fr);
gap: 18px;
align-items: start;
padding: 24px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.about-credential-mark {
display: inline-flex;
align-items: center;
justify-content: center;
width: 54px;
height: 54px;
border-radius: 18px;
background: rgba(255, 255, 255, 0.08);
color: var(--yellow);
font-size: 18px;
}
.about-credential-row h3 {
margin: 0;
font-family: var(--font-head);
font-size: 20px;
line-height: 1.2;
color: #fff;
}
.about-credential-row p {
margin: 10px 0 0;
max-width: 52rem;
color: rgba(255, 255, 255, 0.8);
font-size: 15px;
line-height: 1.7;
}
.about-workflow-head,
.about-proof-head {
margin-bottom: 28px;
}
.about-workflow-head h2,
.about-proof-head h2 {
margin-top: 12px;
max-width: 16ch;
font-size: clamp(28px, 3vw, 42px);
}
.about-workflow-lines {
border-top: 1px solid rgba(33, 48, 33, 0.12);
}
.about-workflow-row {
display: grid;
grid-template-columns: 70px 54px minmax(220px, 0.45fr) minmax(0, 1fr);
gap: 18px;
align-items: start;
padding: 24px 0;
border-bottom: 1px solid rgba(33, 48, 33, 0.12);
}
.about-workflow-index {
font-family: var(--font-head);
font-size: 18px;
line-height: 1;
color: rgba(33, 48, 33, 0.38);
}
.about-workflow-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 54px;
height: 54px;
border-radius: 18px;
background: #fff;
color: var(--green);
font-size: 18px;
box-shadow: 0 12px 28px rgba(17, 20, 24, 0.08);
}
.about-workflow-row h3 {
margin: 0;
font-family: var(--font-head);
font-size: 20px;
line-height: 1.25;
color: #000;
}
.about-workflow-row p {
margin: 0;
color: #40444a;
font-size: 15px;
line-height: 1.7;
}
.about-proof-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 20px;
align-items: start;
}
.about-proof-card {
padding: 24px 22px;
border-radius: 26px;
background: rgba(255, 255, 255, 0.84);
box-shadow:
inset 0 0 0 1px rgba(33, 48, 33, 0.06),
0 14px 34px rgba(17, 20, 24, 0.07);
}
.about-proof-card-1 {
transform: rotate(-1.2deg);
background: #fffdfa;
}
.about-proof-card-2 {
transform: translateY(18px);
background: #f7f4ed;
}
.about-proof-card-3 {
transform: rotate(1deg);
background: #f4f7f1;
}
.about-proof-quote {
margin: 0;
color: #2e3033;
font-size: 15px;
line-height: 1.75;
}
.about-proof-meta {
margin: 16px 0 0;
color: var(--green);
font-size: 14px;
font-weight: 700;
2026-05-02 08:26:18 +12:00
}
:global(.reveal-ready.reveal-block) {
opacity: 0;
transform: translate3d(0, var(--reveal-distance, 24px), 0);
transition:
opacity 0.55s ease,
transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
transition-delay: var(--reveal-delay, 0ms);
}
:global(.reveal-visible.reveal-block) {
opacity: 1;
transform: translate3d(0, 0, 0);
}
.about-contact {
padding: 0 0 88px;
}
2026-05-06 23:55:31 +12:00
.about-contact-band {
display: grid;
grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
gap: 28px;
align-items: center;
padding: 38px 0 0;
border-top: 1px solid rgba(33, 48, 33, 0.12);
2026-05-02 08:26:18 +12:00
}
2026-05-06 23:55:31 +12:00
.about-contact-copy h2 {
margin-top: 12px;
2026-05-02 08:26:18 +12:00
font-size: clamp(28px, 3vw, 42px);
}
2026-05-06 23:55:31 +12:00
.about-contact-copy p {
margin: 14px 0 0;
color: #4a4e54;
font-size: 16px;
line-height: 1.75;
}
.about-contact-actions {
2026-05-02 08:26:18 +12:00
display: grid;
2026-05-06 23:55:31 +12:00
grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
gap: 18px;
2026-05-02 08:26:18 +12:00
align-items: center;
}
.about-contact-link {
2026-05-06 23:55:31 +12:00
display: grid;
gap: 6px;
padding: 18px 20px;
border-radius: 24px;
background: rgba(255, 255, 255, 0.72);
2026-05-02 08:26:18 +12:00
color: #34363a;
text-decoration: none;
2026-05-06 23:55:31 +12:00
box-shadow: inset 0 0 0 1px rgba(33, 48, 33, 0.06);
}
.about-contact-link span {
font-size: 12px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: rgba(33, 48, 33, 0.52);
}
.about-contact-link strong {
font-size: 20px;
line-height: 1.3;
}
.about-contact-actions .btn {
min-height: 62px;
padding-inline: 32px;
2026-05-02 08:26:18 +12:00
}
@media (max-width: 1024px) {
2026-05-06 23:55:31 +12:00
.about-hero-grid,
.about-intro-grid,
.about-editorial-grid,
.about-credentials-head,
.about-contact-band,
.about-contact-actions {
2026-05-02 08:26:18 +12:00
grid-template-columns: 1fr;
}
2026-05-06 23:55:31 +12:00
.about-workflow-row {
grid-template-columns: 70px 54px minmax(0, 1fr);
2026-05-02 08:26:18 +12:00
}
2026-05-06 23:55:31 +12:00
.about-workflow-row p {
grid-column: 2 / -1;
}
.about-proof-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.about-editorial-reverse .about-editorial-copy,
.about-editorial-reverse .about-editorial-media {
order: initial;
2026-05-02 08:26:18 +12:00
}
}
@media (max-width: 768px) {
.about-inner {
padding: 0 24px;
}
2026-05-06 23:55:31 +12:00
.about-page-hero {
padding: 56px 0 20px;
2026-05-02 08:26:18 +12:00
}
2026-05-06 23:55:31 +12:00
.about-page-hero h1,
.about-hero h2 {
font-size: 34px;
2026-05-02 08:26:18 +12:00
}
2026-05-06 23:55:31 +12:00
.about-ribbon {
padding-bottom: 18px;
2026-05-02 08:26:18 +12:00
}
2026-05-06 23:55:31 +12:00
.about-ribbon .about-inner {
padding-right: 0;
2026-05-02 08:26:18 +12:00
}
2026-05-06 23:55:31 +12:00
.about-ribbon-track {
flex-wrap: nowrap;
gap: 10px;
overflow-x: auto;
padding: 0 24px 10px 0;
scroll-snap-type: x proximity;
scrollbar-width: none;
-webkit-overflow-scrolling: touch;
2026-05-02 08:26:18 +12:00
}
2026-05-06 23:55:31 +12:00
.about-ribbon-track::-webkit-scrollbar {
display: none;
}
.about-ribbon-chip {
flex: 0 0 auto;
scroll-snap-align: start;
font-size: 13px;
}
.about-hero,
.about-intro-band,
.about-editorial,
.about-workflow,
.about-proof {
padding-bottom: 56px;
}
.about-hero-grid,
.about-intro-grid,
.about-editorial-grid {
gap: 24px;
}
.about-hero-intro,
.about-editorial-copy p,
.about-contact-copy p {
2026-05-02 08:26:18 +12:00
font-size: 16px;
line-height: 1.7;
}
2026-05-06 23:55:31 +12:00
.about-intro-main p {
font-size: 22px;
}
.about-intro-aside {
padding-left: 18px;
border-left-width: 2px;
}
.about-credentials {
padding: 52px 0 56px;
}
.about-workflow .about-inner,
.about-proof .about-inner {
padding-right: 0;
}
.about-workflow-row {
grid-template-columns: 1fr;
gap: 14px;
min-width: 280px;
padding: 22px 20px;
border: none;
border-radius: 26px;
background: rgba(255, 255, 255, 0.84);
box-shadow:
inset 0 0 0 1px rgba(33, 48, 33, 0.06),
0 12px 28px rgba(17, 20, 24, 0.06);
scroll-snap-align: start;
}
.about-workflow-row p {
grid-column: auto;
}
.about-workflow-lines {
display: grid;
grid-auto-flow: column;
grid-auto-columns: minmax(280px, 82vw);
gap: 14px;
overflow-x: auto;
padding: 2px 24px 10px 0;
border-top: none;
scroll-snap-type: x proximity;
scrollbar-width: none;
-webkit-overflow-scrolling: touch;
}
.about-workflow-lines::-webkit-scrollbar {
display: none;
}
.about-proof-grid {
display: grid;
grid-auto-flow: column;
grid-auto-columns: minmax(286px, 84vw);
gap: 14px;
overflow-x: auto;
padding: 2px 24px 10px 0;
scroll-snap-type: x proximity;
scrollbar-width: none;
-webkit-overflow-scrolling: touch;
}
.about-proof-grid::-webkit-scrollbar {
display: none;
2026-05-02 08:26:18 +12:00
}
2026-05-06 23:55:31 +12:00
.about-proof-card,
.about-proof-card-1,
.about-proof-card-2,
.about-proof-card-3 {
transform: none;
scroll-snap-align: start;
2026-05-02 08:26:18 +12:00
}
2026-05-06 23:55:31 +12:00
.about-contact-link strong {
2026-05-02 08:26:18 +12:00
font-size: 18px;
}
}
</style>