2026-05-02 08:26:18 +12:00
< script lang = "ts" >
2026-05-02 11:24:11 +12:00
import { reveal } from '$lib/actions/reveal' ;
2026-05-02 08:26:18 +12:00
import Icon from '$lib/components/Icon.svelte' ;
import type { IconCard } from '$lib/types' ;
export let services : IconCard [];
2026-05-15 01:28:10 +12:00
export let heading = 'Choose the walk style that suits your dog best.' ;
2026-05-07 21:47:42 +12:00
export let intro =
2026-05-15 01:28:10 +12:00
'Dogs are social creatures. The Tiny Gang gives them their own little friendship group — older dogs guide the younger ones, playful dogs burn energy together, and everyone comes home happy, tired, and fulfilled. All the fun of doggy daycare, without the huge groups or price tag.' ;
2026-05-07 21:47:42 +12:00
2026-05-15 01:28:10 +12:00
const sharedPromises = [
'Familiar walkers' ,
'Small-scale care' ,
'Reliable pickup & drop-off' ,
'Updates you will actually want'
];
2026-05-07 21:47:42 +12:00
2026-05-15 01:28:10 +12:00
// Lightweight presentation metadata — the card only needs to say *what*
// each service is before the visitor opens the full service page.
const serviceMeta : Record <
string ,
{
eyebrow : string ;
featured? : boolean ;
featuredLabel? : string ;
imageUrl : string ;
imageAlt : string ;
lead : string ;
cues : string [];
}
> = {
'Tiny Gang Pack Walks' : {
eyebrow : 'Good Walk Signature' ,
featured : true ,
featuredLabel : 'Most loved' ,
imageUrl : '/images/auckland-pack-walk-small-dogs-group.jpg' ,
imageAlt : 'Small dogs together on a Tiny Gang pack walk' ,
lead : 'The Tiny Gang is built for dogs who love company, big adventures, and coming home happily worn out!' ,
cues : [ '4-8 dogs' , 'Pickup & drop-off' , 'Tiny Gang matching' ]
},
'1:1 Walks' : {
eyebrow : 'Tailored support' ,
imageUrl : '/images/one-on-one-dog-portrait-1.jpg' ,
imageAlt : 'Dog enjoying a one-on-one walk' ,
lead : 'For nervous dogs, senior dogs, and little personalities who do better with extra attention.' ,
cues : [ 'Solo focus' , 'Custom pace' , 'Confidence building' ]
},
'Puppy Visits' : {
eyebrow : 'Building Blocks For The Tiny Gang' ,
imageUrl : '/images/auckland-puppy-home-visit.jpg' ,
imageAlt : 'Puppy during a calm home visit' ,
lead : 'Early puppy visits designed to build confidence, routine, and good habits before Tiny Gang adventures begin!' ,
cues : [ 'Home visits' , 'Routine support' , 'Play & company' ]
2026-05-07 21:47:42 +12:00
}
2026-05-15 01:28:10 +12:00
};
2026-05-07 21:47:42 +12:00
2026-05-15 01:28:10 +12:00
$ : orderedServices = services
. map (( service , index ) => ({ service , index }))
. sort (( a , b ) => {
const aFeatured = serviceMeta [ a . service . title ] ? . featured ? 0 : 1 ;
const bFeatured = serviceMeta [ b . service . title ] ? . featured ? 0 : 1 ;
2026-05-02 08:26:18 +12:00
2026-05-15 01:28:10 +12:00
if ( aFeatured !== bFeatured ) {
return aFeatured - bFeatured ;
}
return a . index - b . index ;
})
. map (({ service }) => service );
2026-05-02 08:26:18 +12:00
</ script >
2026-05-02 11:24:11 +12:00
< section id = "services" use:reveal = {{ delay : 20 }} class="reveal-block" >
2026-05-02 08:26:18 +12:00
< div class = "services-inner" >
2026-05-15 01:28:10 +12:00
< div class = "section-header" >
< h2 class = "section-heading" > { heading } </ h2 >
< p class = "section-intro services-intro" > { intro } </ p >
</ div >
2026-05-02 08:26:18 +12:00
< div class = "services-grid" >
2026-05-15 01:28:10 +12:00
{ #each orderedServices as service }
{ @const meta = serviceMeta [ service . title ]}
< a
href = { service . href }
class:service-card-featured= { meta ? . featured }
class = "service-card"
aria-label = { ` ${ service . title } — view service page` }
>
< div class = "service-card-media" >
{ #if meta }
< img src = { meta . imageUrl } alt= { meta . imageAlt } loading = "lazy" decoding = "async" />
{ /if }
{ #if meta ? . featuredLabel }
< span class = "service-card-badge" > { meta . featuredLabel } </ span >
{ /if }
</ div >
< div class = "service-card-body" >
< span class = "service-card-emblem" >
< Icon name = { service . icon } className="service-card-emblem-glyph" />
</ span >
{ #if meta ? . eyebrow }
< span class = "service-card-eyebrow" > { meta . eyebrow } </ span >
{ /if }
< h3 > { service . title } </ h3 >
< p > { meta ? . lead ?? service . body } </ p >
{ #if meta ? . cues ? . length }
< div class = "service-card-cues" >
{ #each meta . cues as cue }
< span class = "service-card-cue" > { cue } </ span >
{ /each }
</ div >
{ /if }
< span class = "service-card-cta" >
View service page
< Icon name = "fas fa-arrow-right" className = "service-card-cta-arrow" />
</ span >
2026-05-02 08:26:18 +12:00
</ div >
2026-05-15 01:28:10 +12:00
</ a >
2026-05-02 08:26:18 +12:00
{ /each }
</ div >
</ div >
</ section >
2026-05-02 11:24:11 +12:00
< style >
2026-05-15 01:28:10 +12:00
/* ── Section intro ── */
. services-intro {
max-width : 700 px ;
}
/* ── Overview band ── */
. services-overview {
display : grid ;
grid-template-columns : minmax ( 0 , 1.2 fr ) minmax ( 300 px , 0.8 fr );
gap : 18 px ;
align-items : stretch ;
margin-top : 28 px ;
}
. services-overview-copy ,
. services-overview-panel {
border-radius : 28 px ;
background : linear-gradient ( 180 deg , #fff 0 % , #fbf8f2 100 % );
box-shadow :
inset 0 0 0 1 px rgba ( 17 , 20 , 24 , 0.06 ),
0 12 px 28 px rgba ( 17 , 20 , 24 , 0.05 );
}
. services-overview-copy {
padding : 28 px 30 px ;
}
. services-overview-kicker ,
. services-overview-panel-label {
display : inline-flex ;
align-items : center ;
min-height : 30 px ;
width : fit-content ;
padding : 0 11 px ;
border-radius : 999 px ;
background : rgba ( 33 , 48 , 33 , 0.08 );
color : var ( -- gw - green );
font-family : var ( -- font - head );
font-size : 11 px ;
font-weight : 700 ;
letter-spacing : 0.08 em ;
text-transform : uppercase ;
}
. services-overview-copy h3 {
margin : 14 px 0 10 px ;
color : #0d1a0d ;
font-size : clamp ( 26 px , 2.6 vw , 34 px );
line-height : 1.02 ;
letter-spacing : -0.04 em ;
}
. services-overview-copy p ,
. services-overview-panel {
color : #4c5056 ;
font-size : 15 px ;
line-height : 1.65 ;
}
. services-overview-copy p {
max-width : 44 ch ;
margin : 0 ;
}
. services-overview-panel {
display : grid ;
align-content : center ;
gap : 16 px ;
padding : 24 px 24 px 22 px ;
background :
radial-gradient ( circle at top right , rgba ( 255 , 209 , 0 , 0.22 ), transparent 36 % ),
linear-gradient ( 180 deg , #fff 0 % , #f8f3e7 100 % );
}
. services-overview-pills {
display : flex ;
flex-wrap : wrap ;
gap : 10 px ;
}
. services-overview-pill {
display : inline-flex ;
align-items : center ;
min-height : 36 px ;
padding : 0 14 px ;
border-radius : 999 px ;
background : rgba ( 255 , 255 , 255 , 0.82 );
box-shadow : inset 0 0 0 1 px rgba ( 33 , 48 , 33 , 0.08 );
color : var ( -- gw - green );
font-family : var ( -- font - head );
font-size : 12 px ;
font-weight : 700 ;
line-height : 1.2 ;
}
/* ── Service cards ── */
. services-grid {
display : grid ;
grid-template-columns : repeat ( 3 , minmax ( 0 , 1 fr ));
gap : 22 px ;
margin-top : 30 px ;
}
. service-card {
display : flex ;
flex-direction : column ;
overflow : hidden ;
padding : 0 ;
text-align : left ;
border-radius : 24 px ;
background : #fff ;
border : 1 px solid rgba ( 17 , 20 , 24 , 0.07 );
box-shadow : 0 6 px 20 px rgba ( 17 , 20 , 24 , 0.05 );
text-decoration : none ;
color : inherit ;
2026-05-02 11:24:11 +12:00
transition :
2026-05-15 01:28:10 +12:00
box-shadow 0.28 s ease ,
transform 0.24 s cubic-bezier ( 0.22 , 1 , 0.36 , 1 ),
border-color 0.28 s ease ;
2026-05-02 11:24:11 +12:00
}
2026-05-15 01:28:10 +12:00
. service-card-featured {
border-color : rgba ( 242 , 191 , 47 , 0.45 );
box-shadow :
inset 0 0 0 1 px rgba ( 255 , 209 , 0 , 0.22 ),
0 10 px 26 px rgba ( 17 , 20 , 24 , 0.07 );
2026-05-02 11:24:11 +12:00
}
2026-05-15 01:28:10 +12:00
@ media ( hover : hover ) {
. service-card : hover {
transform : translateY ( -6 px );
border-color : rgba ( 33 , 48 , 33 , 0.16 );
box-shadow : 0 22 px 46 px rgba ( 17 , 20 , 24 , 0.13 );
filter : none ;
2026-05-02 11:24:11 +12:00
}
2026-05-15 01:28:10 +12:00
. service-card : hover . service-card-media img {
transform : scale ( 1.06 );
2026-05-02 11:24:11 +12:00
}
2026-05-15 01:28:10 +12:00
. service-card : hover . service-card-cta-arrow {
transform : translateX ( 4 px );
2026-05-02 11:24:11 +12:00
}
2026-05-15 01:28:10 +12:00
. service-card : hover . service-card-emblem :: after ,
. service-card : focus-visible . service-card-emblem :: after ,
. service-card : active . service-card-emblem :: after {
animation : serviceEmblemShine 0.9 s cubic-bezier ( 0.22 , 1 , 0.36 , 1 ) 1 ;
2026-05-02 11:24:11 +12:00
}
}
2026-05-15 01:28:10 +12:00
. service-card : active {
transform : translateY ( -3 px );
}
2026-05-02 11:24:11 +12:00
2026-05-15 01:28:10 +12:00
. service-card-media {
position : relative ;
aspect-ratio : 4 / 3 ;
overflow : hidden ;
background : #ede4d2 ;
2026-05-02 11:24:11 +12:00
}
2026-05-07 21:47:42 +12:00
2026-05-15 01:28:10 +12:00
. service-card-media img {
display : block ;
width : 100 % ;
height : 100 % ;
object-fit : cover ;
transition : transform 0.6 s cubic-bezier ( 0.22 , 1 , 0.36 , 1 );
2026-05-07 21:47:42 +12:00
}
2026-05-15 01:28:10 +12:00
. service-card-badge {
position : absolute ;
top : 14 px ;
right : 14 px ;
padding : 6 px 11 px ;
border-radius : 999 px ;
background : var ( -- gw - green );
color : #fff6cf ;
font-family : var ( -- font - head );
font-size : 11 px ;
font-weight : 700 ;
letter-spacing : 0.04 em ;
text-transform : uppercase ;
2026-05-07 21:47:42 +12:00
}
2026-05-15 01:28:10 +12:00
. service-card-body {
position : relative ;
display : flex ;
flex : 1 ;
flex-direction : column ;
padding : 42 px 26 px 26 px ;
}
/* Brand emblem straddles the photo / body seam */
. service-card-emblem {
position : absolute ;
top : 0 ;
left : 24 px ;
transform : translateY ( -50 % );
display : flex ;
align-items : center ;
2026-05-07 21:47:42 +12:00
justify-content : center ;
2026-05-15 01:28:10 +12:00
width : 52 px ;
height : 52 px ;
border-radius : 16 px ;
background : var ( -- gw - green );
box-shadow : 0 10 px 22 px rgba ( 33 , 48 , 33 , 0.26 );
overflow : hidden ;
2026-05-07 21:47:42 +12:00
}
2026-05-15 01:28:10 +12:00
. service-card-emblem : global ( . service-card-emblem-glyph ) {
font-size : 22 px ;
color : var ( -- yellow );
}
. service-card-emblem :: after {
content : '' ;
position : absolute ;
top : -20 % ;
left : -85 % ;
width : 60 % ;
height : 140 % ;
background : linear-gradient (
120 deg ,
rgba ( 255 , 255 , 255 , 0 ) 0 % ,
rgba ( 255 , 255 , 255 , 0.18 ) 35 % ,
rgba ( 255 , 255 , 255 , 0.65 ) 50 % ,
rgba ( 255 , 255 , 255 , 0.18 ) 65 % ,
rgba ( 255 , 255 , 255 , 0 ) 100 %
);
transform : rotate ( 14 deg );
pointer-events : none ;
opacity : 0 ;
}
. service-card-eyebrow {
margin-bottom : 8 px ;
color : var ( -- gw - green );
font-family : var ( -- font - head );
font-size : 11 px ;
font-weight : 700 ;
letter-spacing : 0.08 em ;
text-transform : uppercase ;
}
. service-card-body h3 {
margin : 0 0 8 px ;
font-family : var ( -- font - head );
font-size : 21 px ;
font-weight : 700 ;
line-height : 1.2 ;
letter-spacing : -0.02 em ;
color : #0d1a0d ;
}
. service-card-body p {
margin : 0 ;
color : #4c5056 ;
font-size : 15 px ;
line-height : 1.6 ;
}
. service-card-cues {
display : flex ;
flex-wrap : wrap ;
gap : 7 px ;
margin-top : 16 px ;
}
. service-card-cue {
2026-05-07 21:47:42 +12:00
display : inline-flex ;
align-items : center ;
min-height : 28 px ;
2026-05-15 01:28:10 +12:00
padding : 4 px 11 px ;
border-radius : 999 px ;
background : rgba ( 33 , 48 , 33 , 0.06 );
box-shadow : inset 0 0 0 1 px rgba ( 33 , 48 , 33 , 0.07 );
2026-05-07 21:47:42 +12:00
color : var ( -- gw - green );
2026-05-15 01:28:10 +12:00
font-size : 11 px ;
2026-05-07 21:47:42 +12:00
font-weight : 700 ;
2026-05-15 01:28:10 +12:00
line-height : 1.2 ;
2026-05-07 21:47:42 +12:00
}
2026-05-15 01:28:10 +12:00
. service-card-cta {
display : flex ;
align-items : center ;
gap : 8 px ;
margin-top : auto ;
padding-top : 20 px ;
border-top : 1 px solid rgba ( 17 , 20 , 24 , 0.08 );
color : var ( -- gw - green );
font-family : var ( -- font - head );
font-size : 13 px ;
font-weight : 700 ;
}
. service-card-cta-arrow {
font-size : 11 px ;
transition : transform 0.2 s cubic-bezier ( 0.22 , 1 , 0.36 , 1 );
}
/* ── Mobile ── */
@ media ( max-width : 768px ) {
. services-intro {
max-width : 34 ch ;
}
. services-overview {
grid-template-columns : 1 fr ;
gap : 12 px ;
margin-top : 22 px ;
}
. services-overview-copy ,
. services-overview-panel {
border-radius : 24 px ;
}
. services-overview-copy {
padding : 22 px 18 px ;
}
. services-overview-copy h3 {
font-size : clamp ( 24 px , 8 vw , 31 px );
line-height : 1.06 ;
}
. services-overview-copy p ,
. services-overview-panel {
font-size : 14 px ;
line-height : 1.55 ;
}
. services-overview-panel {
padding : 18 px ;
gap : 12 px ;
}
. services-overview-pills {
gap : 8 px ;
}
. services-overview-pill {
min-height : 32 px ;
padding : 0 12 px ;
font-size : 11 px ;
}
. services-grid {
grid-template-columns : 1 fr ;
gap : 16 px ;
margin-top : 24 px ;
}
. service-card-body {
padding : 40 px 22 px 24 px ;
}
. service-card-emblem {
width : 48 px ;
height : 48 px ;
border-radius : 15 px ;
}
. service-card-emblem : global ( . service-card-emblem-glyph ) {
font-size : 20 px ;
}
. service-card-body h3 {
font-size : 20 px ;
2026-05-07 21:47:42 +12:00
}
}
2026-05-11 21:02:24 +12:00
2026-05-15 01:28:10 +12:00
@ keyframes serviceEmblemShine {
0 % {
left : -85 % ;
opacity : 0 ;
}
18 % {
opacity : 1 ;
}
82 % {
left : 130 % ;
opacity : 0 ;
}
100 % {
left : 130 % ;
opacity : 0 ;
}
}
/* ── Reveal ── */
: global ( . reveal-ready . reveal-block ) {
opacity : 0 ;
transform : translate3d ( 0 , var ( -- reveal - distance , 24 px ), 0 );
transition :
opacity 0.55 s ease ,
transform 0.7 s cubic-bezier ( 0.2 , 0.8 , 0.2 , 1 );
transition-delay : var ( -- reveal - delay , 0 ms );
}
: global ( . reveal-visible . reveal-block ) {
opacity : 1 ;
transform : translate3d ( 0 , 0 , 0 );
}
2026-05-02 11:24:11 +12:00
</ style >