Revert "Merge branch 'main' of http://10.0.0.213:3001/admin/gw-svelte"
This reverts commit4d70993817, reversing changes made to32ccd49d78.
This commit is contained in:
+100
-735
@@ -1,254 +1,63 @@
|
||||
<script lang="ts">
|
||||
import { reveal } from '$lib/actions/reveal';
|
||||
import Icon from '$lib/components/Icon.svelte';
|
||||
import ServicesSection from '$lib/components/ServicesSection.svelte';
|
||||
import { getImageMetadata } from '$lib/image-metadata';
|
||||
import type { AboutPageContent, SiteSharedContent } from '$lib/types';
|
||||
|
||||
export let content: SiteSharedContent;
|
||||
export let pageContent: AboutPageContent;
|
||||
|
||||
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);
|
||||
</script>
|
||||
|
||||
<main class="about-page">
|
||||
<section class="about-page-hero">
|
||||
<section class="about-hero">
|
||||
<div class="about-inner">
|
||||
<h1>{pageContent.title}</h1>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<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>
|
||||
{#each pageContent.sections as section}
|
||||
<section
|
||||
use:reveal
|
||||
class:about-section-gradient={section.accent === 'gradient'}
|
||||
class="about-section reveal-block"
|
||||
>
|
||||
<div class:about-section-reverse={section.reverse} class="about-inner about-section-grid">
|
||||
<div class="about-copy">
|
||||
<h2>{section.title}</h2>
|
||||
{#each section.body as paragraph}
|
||||
<p>{paragraph}</p>
|
||||
{/each}
|
||||
</div>
|
||||
|
||||
<div class="about-hero-media">
|
||||
<div class="about-media">
|
||||
<img
|
||||
src={leadSection.imageUrl}
|
||||
alt={leadSection.imageAlt}
|
||||
width={getImageMetadata(leadSection.imageUrl)?.width}
|
||||
height={getImageMetadata(leadSection.imageUrl)?.height}
|
||||
fetchpriority="high"
|
||||
src={section.imageUrl}
|
||||
alt={section.imageAlt}
|
||||
width={getImageMetadata(section.imageUrl)?.width}
|
||||
height={getImageMetadata(section.imageUrl)?.height}
|
||||
loading="lazy"
|
||||
decoding="async"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</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>
|
||||
</section>
|
||||
{/each}
|
||||
|
||||
<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} />
|
||||
|
||||
<section use:reveal={{ delay: 70 }} class="about-contact reveal-block">
|
||||
<div class="about-inner">
|
||||
<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 we’ll help you figure out the right fit.</p>
|
||||
</div>
|
||||
|
||||
<div class="about-contact-actions">
|
||||
<div class="about-contact-card">
|
||||
<h2>{pageContent.contact.title}</h2>
|
||||
<div class="about-contact-grid">
|
||||
<a class="about-contact-link" href={`mailto:${pageContent.contact.email}`}>
|
||||
<span>Email</span>
|
||||
<strong>{pageContent.contact.email}</strong>
|
||||
{pageContent.contact.email}
|
||||
</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, '')}`}>
|
||||
<span>Phone</span>
|
||||
<strong>{pageContent.contact.phone}</strong>
|
||||
{pageContent.contact.phone}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
@@ -258,9 +67,7 @@
|
||||
|
||||
<style>
|
||||
.about-page {
|
||||
background:
|
||||
radial-gradient(circle at top left, rgba(255, 209, 0, 0.14), transparent 24%),
|
||||
linear-gradient(180deg, #fffdfa 0%, #fbfbfb 28%, #f7f4ed 100%);
|
||||
background: var(--off-white);
|
||||
}
|
||||
|
||||
.about-inner {
|
||||
@@ -269,17 +76,13 @@
|
||||
padding: 0 50px;
|
||||
}
|
||||
|
||||
.about-page-hero {
|
||||
padding: 72px 0 26px;
|
||||
.about-hero {
|
||||
padding: 72px 0 40px;
|
||||
}
|
||||
|
||||
.about-page-hero h1,
|
||||
.about-hero h2,
|
||||
.about-editorial-copy h2,
|
||||
.about-credentials h2,
|
||||
.about-workflow h2,
|
||||
.about-proof h2,
|
||||
.about-contact h2 {
|
||||
.about-hero h1,
|
||||
.about-copy h2,
|
||||
.about-contact-card h2 {
|
||||
margin: 0;
|
||||
font-family: var(--font-head);
|
||||
font-size: clamp(34px, 4vw, 56px);
|
||||
@@ -288,360 +91,62 @@
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.about-page-hero h1 {
|
||||
.about-hero h1 {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.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);
|
||||
.about-section {
|
||||
padding: 0 0 88px;
|
||||
}
|
||||
|
||||
.about-kicker-light {
|
||||
color: rgba(255, 255, 255, 0.64);
|
||||
.about-section-gradient {
|
||||
margin: 0 24px 88px;
|
||||
padding: 40px 0;
|
||||
border-radius: 28px;
|
||||
background: linear-gradient(180deg, #f5efe6 0%, #f9f6ef 100%);
|
||||
}
|
||||
|
||||
.about-hero {
|
||||
padding: 0 0 20px;
|
||||
}
|
||||
|
||||
.about-hero-grid {
|
||||
.about-section-grid {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
|
||||
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
|
||||
gap: 44px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.about-hero-copy h2 {
|
||||
margin-top: 12px;
|
||||
max-width: 11ch;
|
||||
.about-section-reverse {
|
||||
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
|
||||
}
|
||||
|
||||
.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 {
|
||||
.about-section-reverse .about-copy {
|
||||
order: 2;
|
||||
}
|
||||
|
||||
.about-editorial-reverse .about-editorial-media {
|
||||
.about-section-reverse .about-media {
|
||||
order: 1;
|
||||
}
|
||||
|
||||
.about-editorial-copy h2 {
|
||||
margin-top: 12px;
|
||||
font-size: clamp(28px, 3vw, 42px);
|
||||
.about-copy h2 {
|
||||
font-size: clamp(28px, 3vw, 40px);
|
||||
}
|
||||
|
||||
.about-editorial-copy p {
|
||||
.about-copy p {
|
||||
margin: 18px 0 0;
|
||||
color: #34363a;
|
||||
font-size: 17px;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
.about-editorial-media img {
|
||||
display: block;
|
||||
width: 100%;
|
||||
border-radius: 32px;
|
||||
object-fit: cover;
|
||||
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;
|
||||
.about-media img {
|
||||
display: block;
|
||||
width: 100%;
|
||||
max-width: 460px;
|
||||
aspect-ratio: 4 / 3;
|
||||
height: auto;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
border-radius: 28px;
|
||||
object-fit: cover;
|
||||
box-shadow: 0 16px 40px rgba(17, 20, 24, 0.08);
|
||||
}
|
||||
|
||||
:global(.reveal-ready.reveal-block) {
|
||||
@@ -662,89 +167,47 @@
|
||||
padding: 0 0 88px;
|
||||
}
|
||||
|
||||
.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);
|
||||
.about-contact-card {
|
||||
border-radius: 28px;
|
||||
background: #fff;
|
||||
padding: 42px 48px;
|
||||
box-shadow: 0 14px 34px rgba(17, 20, 24, 0.05);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.about-contact-copy h2 {
|
||||
margin-top: 12px;
|
||||
.about-contact-card h2 {
|
||||
font-size: clamp(28px, 3vw, 42px);
|
||||
}
|
||||
|
||||
.about-contact-copy p {
|
||||
margin: 14px 0 0;
|
||||
color: #4a4e54;
|
||||
font-size: 16px;
|
||||
line-height: 1.75;
|
||||
}
|
||||
|
||||
.about-contact-actions {
|
||||
.about-contact-grid {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
|
||||
gap: 18px;
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
gap: 20px;
|
||||
align-items: center;
|
||||
margin-top: 28px;
|
||||
}
|
||||
|
||||
.about-contact-link {
|
||||
display: grid;
|
||||
gap: 6px;
|
||||
padding: 18px 20px;
|
||||
border-radius: 24px;
|
||||
background: rgba(255, 255, 255, 0.72);
|
||||
color: #34363a;
|
||||
text-decoration: none;
|
||||
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;
|
||||
font-weight: 600;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.about-hero-grid,
|
||||
.about-intro-grid,
|
||||
.about-editorial-grid,
|
||||
.about-credentials-head,
|
||||
.about-contact-band,
|
||||
.about-contact-actions {
|
||||
.about-section-grid,
|
||||
.about-section-reverse {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.about-workflow-row {
|
||||
grid-template-columns: 70px 54px minmax(0, 1fr);
|
||||
}
|
||||
|
||||
.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 {
|
||||
.about-section-reverse .about-copy,
|
||||
.about-section-reverse .about-media {
|
||||
order: initial;
|
||||
}
|
||||
|
||||
.about-contact-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
@@ -752,142 +215,44 @@
|
||||
padding: 0 24px;
|
||||
}
|
||||
|
||||
.about-page-hero {
|
||||
padding: 56px 0 20px;
|
||||
.about-hero {
|
||||
padding: 56px 0 24px;
|
||||
}
|
||||
|
||||
.about-page-hero h1,
|
||||
.about-hero h2 {
|
||||
font-size: 34px;
|
||||
.about-section,
|
||||
.about-contact {
|
||||
padding-bottom: 64px;
|
||||
}
|
||||
|
||||
.about-ribbon {
|
||||
padding-bottom: 18px;
|
||||
.about-section-gradient {
|
||||
margin: 0 12px 64px;
|
||||
padding: 28px 0;
|
||||
border-radius: 28px;
|
||||
}
|
||||
|
||||
.about-ribbon .about-inner {
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.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;
|
||||
}
|
||||
|
||||
.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 {
|
||||
.about-section-grid {
|
||||
gap: 24px;
|
||||
}
|
||||
|
||||
.about-hero-intro,
|
||||
.about-editorial-copy p,
|
||||
.about-contact-copy p {
|
||||
.about-copy h2,
|
||||
.about-contact-card h2 {
|
||||
font-size: 30px;
|
||||
}
|
||||
|
||||
.about-copy p {
|
||||
font-size: 16px;
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
.about-intro-main p {
|
||||
font-size: 22px;
|
||||
.about-contact-card {
|
||||
padding: 30px 24px;
|
||||
}
|
||||
|
||||
.about-intro-aside {
|
||||
padding-left: 18px;
|
||||
border-left-width: 2px;
|
||||
.about-contact-grid {
|
||||
margin-top: 22px;
|
||||
}
|
||||
|
||||
.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;
|
||||
}
|
||||
|
||||
.about-proof-card,
|
||||
.about-proof-card-1,
|
||||
.about-proof-card-2,
|
||||
.about-proof-card-3 {
|
||||
transform: none;
|
||||
scroll-snap-align: start;
|
||||
}
|
||||
|
||||
.about-contact-link strong {
|
||||
.about-contact-link {
|
||||
font-size: 18px;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user