Files
gw-svelte/src/lib/styles/sections.css
T

882 lines
15 KiB
CSS
Raw Normal View History

2026-05-12 00:45:02 +12:00
/* Featured sections — more breathing room */
#promise,
2026-05-12 00:45:02 +12:00
#services {
2026-05-13 20:44:01 +12:00
padding: var(--space-section-featured-y) 0;
2026-05-12 00:45:02 +12:00
}
/* Supporting sections */
#values,
#testimonials,
2026-05-12 00:45:02 +12:00
#info {
2026-05-13 20:44:01 +12:00
padding: var(--space-section-support-y) 0;
2026-05-12 00:45:02 +12:00
}
/* Booking / lead form — neutral */
#newlead {
2026-05-13 20:44:01 +12:00
padding: var(--space-section-form-y) 0;
2026-05-02 08:26:18 +12:00
}
#hero {
2026-05-07 21:47:42 +12:00
background: var(--gw-green);
2026-05-02 08:26:18 +12:00
color: #fff;
2026-05-13 00:34:34 +12:00
padding: 0;
2026-05-02 08:26:18 +12:00
display: flex;
2026-05-13 00:34:34 +12:00
flex-direction: column;
justify-content: flex-end;
min-height: 65svh;
max-height: 680px;
2026-05-02 08:26:18 +12:00
overflow: hidden;
2026-05-12 00:45:02 +12:00
position: relative;
}
#hero::after {
content: '';
position: absolute;
2026-05-13 00:34:34 +12:00
inset: 0;
height: auto;
background: linear-gradient(
to bottom,
2026-05-15 01:28:10 +12:00
transparent 18%,
rgba(33, 48, 33, 0.26) 48%,
rgba(33, 48, 33, 0.78) 72%,
#213021 86%
2026-05-13 00:34:34 +12:00
);
2026-05-12 00:45:02 +12:00
pointer-events: none;
z-index: 1;
2026-05-02 08:26:18 +12:00
}
.hero-inner {
2026-05-13 00:34:34 +12:00
position: relative;
z-index: 2;
flex: none;
display: block;
width: 100%;
max-width: 700px;
margin: 0 auto;
2026-05-13 20:44:01 +12:00
padding: 0 var(--space-container-x) var(--space-hero-inner-bottom);
2026-05-13 00:34:34 +12:00
gap: 0;
2026-05-02 08:26:18 +12:00
}
2026-05-13 00:34:34 +12:00
2026-05-02 08:26:18 +12:00
.hero-text {
2026-05-13 00:34:34 +12:00
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding-bottom: 0;
}
.hero-kicker {
2026-05-15 01:28:10 +12:00
display: inline-block;
2026-05-13 00:34:34 +12:00
margin: 0 0 14px;
2026-05-15 01:28:10 +12:00
padding: 7px 12px;
border-radius: 999px;
background: rgba(255, 209, 0, 0.12);
box-shadow: inset 0 0 0 1px rgba(255, 209, 0, 0.2);
font-family: var(--font-body);
font-size: 12px;
2026-05-13 00:34:34 +12:00
font-weight: 700;
2026-05-15 01:28:10 +12:00
letter-spacing: 0.08em;
2026-05-13 00:34:34 +12:00
text-transform: uppercase;
2026-05-15 01:28:10 +12:00
color: var(--yellow);
2026-05-02 08:26:18 +12:00
}
2026-05-03 11:49:59 +12:00
.hero-subtitle {
2026-05-15 01:28:10 +12:00
margin: -6px 0 22px;
max-width: 560px;
2026-05-03 11:49:59 +12:00
color: rgba(255, 255, 255, 0.86);
2026-05-15 01:28:10 +12:00
font-size: var(--body-lead-size);
2026-05-03 11:49:59 +12:00
line-height: 1.55;
2026-05-13 00:34:34 +12:00
text-align: center;
}
.hero-chips {
2026-05-15 01:28:10 +12:00
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 10px;
margin-bottom: 22px;
2026-05-03 11:49:59 +12:00
}
2026-05-15 01:28:10 +12:00
.hero-chip,
2026-05-06 11:36:19 +12:00
.hero-trust-chip {
display: inline-flex;
align-items: center;
2026-05-15 01:28:10 +12:00
gap: 8px;
min-height: 38px;
padding: 8px 14px;
2026-05-06 11:36:19 +12:00
border-radius: 999px;
2026-05-15 01:28:10 +12:00
background: rgba(255, 255, 255, 0.11);
border: 1px solid rgba(255, 255, 255, 0.12);
2026-05-06 11:36:19 +12:00
color: #fff;
2026-05-15 01:28:10 +12:00
font-size: 13px;
font-weight: 600;
line-height: 1.2;
letter-spacing: 0.01em;
2026-05-15 01:28:10 +12:00
}
:global(.hero-chip .icon) {
color: var(--yellow);
font-size: 12px;
2026-05-06 11:36:19 +12:00
}
.hero-trust-logo {
width: 18px;
height: 19px;
flex: 0 0 auto;
}
2026-05-15 01:28:10 +12:00
.hero-trust-chip {
text-decoration: none;
transition: background 0.2s ease, opacity 0.2s ease;
2026-05-06 11:36:19 +12:00
}
@media (hover: hover) {
.hero-trust-chip:hover {
background: rgba(255, 255, 255, 0.16);
}
}
2026-05-02 08:26:18 +12:00
.hero-buttons {
display: flex;
2026-05-15 01:28:10 +12:00
gap: 18px;
2026-05-02 08:26:18 +12:00
flex-wrap: wrap;
2026-05-13 00:34:34 +12:00
justify-content: center;
2026-05-15 01:28:10 +12:00
align-items: center;
2026-05-13 00:34:34 +12:00
}
:global(.hero-cta-arrow) {
font-size: 11px;
2026-05-15 01:28:10 +12:00
margin-left: 2px;
}
.hero-secondary-link {
display: inline-flex;
align-items: center;
gap: 8px;
color: rgba(255, 255, 255, 0.86);
font-family: var(--font-head);
font-size: 15px;
font-weight: 700;
text-decoration: none;
transition: color 0.2s ease, opacity 0.2s ease;
}
@media (hover: hover) {
.hero-secondary-link:hover {
color: #fff;
}
2026-05-02 08:26:18 +12:00
}
.hero-img {
2026-05-13 00:34:34 +12:00
position: absolute;
inset: 0;
z-index: 0;
width: 100%;
height: 100%;
flex: none;
display: block;
margin: 0;
2026-05-02 08:26:18 +12:00
}
2026-05-13 00:34:34 +12:00
.hero-img picture {
display: block;
width: 100%;
height: 100%;
2026-05-02 08:26:18 +12:00
}
2026-05-13 00:34:34 +12:00
.hero-img img {
width: 60%;
height: 100%;
max-width: none;
margin: 0;
object-fit: cover;
object-position: center -10%;
transform: none;
}
2026-05-02 08:26:18 +12:00
#intro {
background: #fff;
2026-05-15 01:28:10 +12:00
padding: 24px 50px;
2026-05-02 08:26:18 +12:00
text-align: left;
}
.intro-trust-badge {
display: grid;
grid-template-columns: auto minmax(0, 1fr);
gap: 18px;
align-items: center;
width: 100%;
margin: 0;
padding: 18px 22px;
border-radius: 26px;
2026-05-15 01:28:10 +12:00
background:
radial-gradient(circle at top right, rgba(255, 209, 0, 0.14), transparent 30%),
linear-gradient(180deg, #ffffff 0%, #fbf8f2 100%);
2026-05-02 08:26:18 +12:00
box-shadow:
0 1px 0 rgba(17, 20, 24, 0.04),
2026-05-15 01:28:10 +12:00
0 18px 40px rgba(17, 20, 24, 0.08);
2026-05-02 08:26:18 +12:00
}
.intro-trust-mark {
display: inline-flex;
2026-05-03 11:16:53 +12:00
position: relative;
2026-05-02 08:26:18 +12:00
align-items: center;
justify-content: center;
width: 56px;
height: 56px;
border-radius: 50%;
background: #fff;
color: #e00706;
font-size: 24px;
2026-05-03 11:16:53 +12:00
overflow: hidden;
2026-05-02 08:26:18 +12:00
box-shadow: inset 0 0 0 1px rgba(14, 27, 41, 0.08);
}
2026-05-03 11:16:53 +12:00
.intro-trust-mark-link {
text-decoration: none;
isolation: isolate;
transition:
transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
box-shadow 0.22s ease;
}
.intro-trust-mark-link::after {
content: '';
position: absolute;
inset: -30% 35%;
background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.2) 30%, rgba(255, 255, 255, 0.92) 50%, rgba(255, 255, 255, 0.2) 70%, transparent 100%);
transform: translateX(-220%) rotate(18deg);
opacity: 0;
pointer-events: none;
animation: introGoogleShine 4.8s ease-in-out infinite;
}
.intro-trust-mark-link:hover,
.intro-trust-mark-link:focus-visible {
transform: translateY(-1px) scale(1.04);
box-shadow:
inset 0 0 0 1px rgba(14, 27, 41, 0.08),
0 10px 24px rgba(17, 20, 24, 0.12);
}
.intro-trust-mark-link:focus-visible {
outline: 2px solid rgba(10, 48, 78, 0.28);
outline-offset: 3px;
}
.intro-google-logo {
display: block;
position: relative;
z-index: 1;
width: 28px;
height: auto;
}
2026-05-02 08:26:18 +12:00
.intro-trust-copy {
min-width: 0;
}
2026-05-15 01:28:10 +12:00
.intro-trust-copy-mobile {
display: none;
}
2026-05-02 08:26:18 +12:00
#intro p {
2026-05-15 01:28:10 +12:00
font-size: var(--body-lead-size);
font-weight: 700;
line-height: 1.3;
2026-05-02 08:26:18 +12:00
max-width: none;
margin: 0;
2026-05-15 01:28:10 +12:00
color: #1f2421;
2026-05-02 08:26:18 +12:00
}
.intro-trust-meta {
display: flex;
align-items: center;
justify-content: space-between;
gap: 18px;
2026-05-15 01:28:10 +12:00
margin-top: 10px;
2026-05-02 08:26:18 +12:00
}
.intro-trust-stars {
display: inline-flex;
align-items: center;
gap: 6px;
color: var(--yellow);
font-size: 14px;
}
2026-05-03 11:16:53 +12:00
.intro-trust-cta {
2026-05-02 08:26:18 +12:00
display: inline-flex;
align-items: center;
gap: 8px;
2026-05-15 01:28:10 +12:00
padding: 8px 14px;
2026-05-02 08:26:18 +12:00
border-radius: 999px;
2026-05-15 01:28:10 +12:00
background: rgba(33, 48, 33, 0.06);
2026-05-07 21:47:42 +12:00
color: var(--gw-green);
2026-05-15 01:28:10 +12:00
font-size: 14px;
2026-05-02 08:26:18 +12:00
font-weight: 700;
text-decoration: none;
box-shadow: inset 0 0 0 1px rgba(14, 27, 41, 0.08);
}
2026-05-03 11:16:53 +12:00
.intro-trust-cta .icon {
2026-05-02 08:26:18 +12:00
color: #e00706;
font-size: 20px;
}
.intro-trust-cta:focus-visible {
outline: 2px solid rgba(10, 48, 78, 0.28);
outline-offset: 3px;
}
2026-05-03 11:16:53 +12:00
@keyframes introGoogleShine {
0%,
64%,
100% {
transform: translateX(-220%) rotate(18deg);
opacity: 0;
}
72% {
opacity: 1;
}
84% {
transform: translateX(220%) rotate(18deg);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.intro-trust-mark-link,
.intro-trust-mark-link::after {
animation: none;
transition: none;
}
}
2026-05-02 08:26:18 +12:00
#promise,
2026-05-15 01:28:10 +12:00
#values {
2026-05-02 08:26:18 +12:00
background: var(--off-white);
}
#services,
2026-05-15 01:28:10 +12:00
#testimonials,
#info,
2026-05-02 09:43:32 +12:00
#newlead {
2026-05-02 08:26:18 +12:00
background: #fff;
}
footer {
2026-05-07 21:47:42 +12:00
background: var(--gw-green);
2026-05-02 08:26:18 +12:00
color: #fff;
}
#testimonials .section-heading {
text-align: center;
}
#services .section-heading {
text-align: center;
}
footer {
padding: 60px 50px 32px;
}
.testimonial-card {
2026-05-12 00:45:02 +12:00
background: linear-gradient(180deg, #ffffff 0%, var(--off-white) 100%);
border-radius: 28px;
2026-05-02 08:26:18 +12:00
padding: 36px 32px;
2026-05-12 00:45:02 +12:00
box-shadow:
inset 0 0 0 1px rgba(17, 20, 24, 0.06),
0 4px 24px rgba(0, 0, 0, 0.06);
2026-05-02 08:26:18 +12:00
transition:
transform 0.18s cubic-bezier(0.22, 1, 0.36, 1),
box-shadow 0.22s ease;
}
@media (hover: hover) {
.testimonial-card:hover {
2026-05-12 00:45:02 +12:00
transform: translateY(-2px);
box-shadow:
inset 0 0 0 1px rgba(17, 20, 24, 0.06),
0 8px 40px rgba(0, 0, 0, 0.08);
filter: brightness(1.01);
2026-05-02 08:26:18 +12:00
}
}
.testimonial-card:active {
transform: translateY(-1px) scale(0.994);
}
.stars {
color: var(--yellow);
font-size: 18px;
margin-bottom: 14px;
}
.reviewer {
font-weight: 700;
font-size: 14px;
}
.reviewer span {
font-weight: 400;
color: var(--gray);
}
.info-copy {
margin-top: 10px;
}
.info-copy a {
2026-05-07 21:47:42 +12:00
color: var(--gw-green);
2026-05-02 08:26:18 +12:00
font-weight: 600;
}
.faq details {
border-radius: 16px;
border: 1px solid rgba(33, 48, 33, 0.1);
background: #fff;
padding: 0;
margin-bottom: 10px;
transition: box-shadow 0.2s ease;
}
.faq details[open] {
box-shadow: 0 8px 24px rgba(17, 20, 24, 0.06);
2026-05-02 08:26:18 +12:00
}
.faq summary {
font-weight: 600;
font-size: 16px;
2026-05-02 08:26:18 +12:00
cursor: pointer;
list-style: none;
display: flex;
justify-content: space-between;
align-items: center;
gap: 16px;
padding: 18px 22px;
border-radius: 16px;
transition: background 0.18s ease;
2026-05-02 08:26:18 +12:00
}
.faq summary::-webkit-details-marker {
display: none;
}
.faq summary:focus-visible {
outline: 2px solid rgba(10, 48, 78, 0.28);
outline-offset: -2px;
}
.faq summary:hover {
background: rgba(33, 48, 33, 0.03);
}
.faq details[open] summary {
border-bottom: 1px solid rgba(33, 48, 33, 0.08);
border-radius: 16px 16px 0 0;
}
2026-05-02 08:26:18 +12:00
.faq summary::after {
content: '+';
flex: 0 0 auto;
width: 28px;
height: 28px;
border-radius: 50%;
background: rgba(33, 48, 33, 0.06);
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 18px;
font-weight: 400;
2026-05-07 21:47:42 +12:00
color: var(--gw-green);
transition: background 0.18s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
2026-05-02 08:26:18 +12:00
}
.faq details[open] summary::after {
content: '';
background: rgba(33, 48, 33, 0.1);
transform: rotate(180deg);
2026-05-02 08:26:18 +12:00
}
.faq details p {
margin: 0;
padding: 16px 22px 20px;
2026-05-02 08:26:18 +12:00
color: var(--gray);
2026-05-15 01:28:10 +12:00
font-size: var(--body-copy-size);
line-height: 1.65;
2026-05-02 08:26:18 +12:00
}
#instagram {
background: var(--yellow);
text-align: center;
padding: 60px 50px;
}
.instagram-blurb {
margin: -8px 0 24px;
2026-05-15 01:28:10 +12:00
font-size: var(--body-copy-size);
2026-05-02 08:26:18 +12:00
color: rgba(0, 0, 0, 0.6);
}
#instagram .btn {
2026-05-07 21:47:42 +12:00
background: var(--gw-green);
2026-05-02 08:26:18 +12:00
color: #fff;
}
.footer-logo {
display: block;
height: 30px;
width: auto;
2026-05-06 17:42:43 +12:00
margin-bottom: 18px;
}
2026-05-02 08:26:18 +12:00
.footer-brand p {
font-size: 14px;
2026-05-06 17:42:43 +12:00
line-height: 1.7;
2026-05-13 09:39:52 +12:00
opacity: 0.72;
margin-bottom: 18px;
2026-05-02 08:26:18 +12:00
white-space: pre-line;
2026-05-13 09:39:52 +12:00
max-width: 30ch;
2026-05-02 08:26:18 +12:00
}
.social-links a {
2026-05-06 17:42:43 +12:00
width: 44px;
height: 44px;
border-radius: 16px;
background: rgba(255, 255, 255, 0.08);
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
2026-05-02 08:26:18 +12:00
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
2026-05-06 17:42:43 +12:00
transition:
background 0.2s,
color 0.2s,
transform 0.16s cubic-bezier(0.22, 1, 0.36, 1);
2026-05-02 08:26:18 +12:00
}
.social-links a:hover {
background: var(--yellow);
color: #000;
2026-05-06 17:42:43 +12:00
transform: translateY(-1px);
2026-05-02 08:26:18 +12:00
}
.footer-col-label {
2026-05-13 09:39:52 +12:00
margin: 0 0 14px;
2026-05-02 08:26:18 +12:00
font-family: var(--font-head);
font-size: 10px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
2026-05-13 09:39:52 +12:00
opacity: 0.5;
2026-05-02 08:26:18 +12:00
}
.footer-nav {
list-style: none;
2026-05-07 21:47:42 +12:00
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 2px 24px;
2026-05-02 08:26:18 +12:00
}
.footer-explore .footer-nav {
grid-template-columns: 1fr;
}
2026-05-02 08:26:18 +12:00
.footer-nav li {
margin: 0;
2026-05-07 21:47:42 +12:00
min-width: 0;
2026-05-02 08:26:18 +12:00
}
.footer-nav a {
display: block;
2026-05-13 09:39:52 +12:00
padding: 8px 0;
font-size: 14px;
2026-05-02 08:26:18 +12:00
font-weight: 500;
2026-05-13 09:39:52 +12:00
opacity: 0.72;
2026-05-02 08:26:18 +12:00
transition: opacity 0.18s;
}
.footer-nav a:hover {
opacity: 1;
}
.footer-contact {
2026-05-06 17:42:43 +12:00
display: grid;
2026-05-02 08:26:18 +12:00
gap: 8px;
2026-05-13 09:39:52 +12:00
margin-top: 18px;
padding-top: 18px;
2026-05-02 08:26:18 +12:00
border-top: 1px solid rgba(255, 255, 255, 0.1);
2026-05-13 09:39:52 +12:00
max-width: 24rem;
2026-05-02 08:26:18 +12:00
}
.footer-contact-link {
display: inline-flex;
align-items: center;
gap: 8px;
2026-05-06 17:42:43 +12:00
min-height: 42px;
padding: 0 2px;
2026-05-02 08:26:18 +12:00
font-size: 13px;
font-weight: 500;
opacity: 0.7;
transition: opacity 0.18s;
}
.footer-contact-link:hover {
opacity: 1;
}
.footer-contact-link .icon {
font-size: 12px;
opacity: 0.8;
}
.footer-bottom {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
2026-05-02 08:26:18 +12:00
gap: 12px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
2026-05-06 17:42:43 +12:00
padding-top: 28px;
2026-05-02 08:26:18 +12:00
font-size: 13px;
2026-05-06 17:42:43 +12:00
opacity: 0.6;
2026-05-02 08:26:18 +12:00
}
.footer-bottom > span {
flex: 1 1 auto;
}
2026-05-02 08:26:18 +12:00
.footer-legal {
display: flex;
justify-content: flex-end;
2026-05-02 08:26:18 +12:00
gap: 20px;
2026-05-06 17:42:43 +12:00
flex-wrap: wrap;
flex: 0 0 auto;
text-align: right;
2026-05-02 08:26:18 +12:00
}
.footer-legal a {
opacity: 0.8;
transition: opacity 0.2s;
}
.footer-legal a:hover {
opacity: 1;
}
2026-05-13 00:34:34 +12:00
.footer-back-top {
2026-05-15 01:28:10 +12:00
border: none;
background: none;
color: inherit;
font: inherit;
2026-05-13 00:34:34 +12:00
font-size: 12px;
font-weight: 600;
letter-spacing: 0.04em;
text-transform: uppercase;
opacity: 0.5;
2026-05-15 01:28:10 +12:00
cursor: pointer;
2026-05-13 00:34:34 +12:00
flex: 0 0 auto;
transition: opacity 0.2s;
}
.footer-back-top:hover {
opacity: 1;
}
/* ── PageHeader shared component ──────────────────────────────────────── */
.page-header {
padding: 72px 0 80px;
}
.ph-inner {
max-width: var(--max-w);
margin: 0 auto;
padding: 0 50px;
text-align: center;
}
/* Green variant */
.page-header--green {
background: var(--gw-green);
color: #fff;
}
.page-header--green .eyebrow {
2026-05-15 01:28:10 +12:00
display: inline-block;
padding: 7px 12px;
border-radius: 999px;
background: rgba(255, 209, 0, 0.12);
box-shadow: inset 0 0 0 1px rgba(255, 209, 0, 0.2);
color: var(--yellow);
2026-05-13 00:34:34 +12:00
}
/* White variant */
.page-header--white {
background: var(--off-white);
color: var(--text);
}
/* 2-col layout when media slot is used (service pages) */
.ph-inner--grid {
display: grid;
grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
gap: 52px;
align-items: center;
text-align: left;
}
/* Title */
.ph-title {
margin: 0 0 16px;
font-family: var(--font-head);
font-size: clamp(34px, 4vw, 56px);
font-weight: 800;
line-height: 1.05;
letter-spacing: -0.04em;
}
.page-header--green .ph-title {
color: #fff;
}
.page-header--white .ph-title {
color: #000;
}
/* Subtitle */
.ph-subtitle {
font-size: 17px;
line-height: 1.6;
max-width: 520px;
margin: 0 auto;
}
.page-header--green .ph-subtitle {
color: rgba(255, 255, 255, 0.8);
}
.page-header--white .ph-subtitle {
color: var(--gray);
}
.ph-inner--grid .ph-subtitle {
margin: 0;
}
/* Media column */
.ph-media {
aspect-ratio: 4 / 3;
border-radius: 28px;
overflow: hidden;
background: #f4efe7;
box-shadow: 0 16px 40px rgba(17, 20, 24, 0.08);
}
.ph-media img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}
/* Shared chip styles — used via default slot content */
.ph-chips {
display: flex;
justify-content: center;
gap: 10px;
flex-wrap: wrap;
margin-top: 28px;
}
.ph-chip {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 9px 18px;
border-radius: 999px;
font-family: var(--font-head);
font-size: 14px;
font-weight: 700;
line-height: 1.2;
letter-spacing: 0.01em;
}
.page-header--green .ph-chip {
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.14);
color: #fff;
}
.page-header--white .ph-chip {
background: rgba(33, 48, 33, 0.07);
border: 1px solid rgba(33, 48, 33, 0.1);
color: var(--gw-green);
}
.ph-chip--link {
text-decoration: none;
transition: background 0.18s ease;
}
.page-header--green .ph-chip--link:hover {
background: rgba(255, 255, 255, 0.18);
}
.page-header--white .ph-chip--link:hover {
background: rgba(33, 48, 33, 0.12);
}
/* Responsive */
@media (max-width: 1024px) {
.ph-inner--grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
align-items: start;
}
}
@media (max-width: 768px) {
.page-header {
padding: 48px 0 56px;
}
.ph-inner {
padding: 0 24px;
}
.ph-inner--grid {
grid-template-columns: 1fr;
gap: 24px;
}
2026-05-15 01:28:10 +12:00
.ph-copy {
text-align: center;
}
2026-05-13 00:34:34 +12:00
.ph-title {
font-size: clamp(28px, 7vw, 38px);
}
2026-05-15 01:28:10 +12:00
.ph-subtitle {
margin-left: auto;
margin-right: auto;
text-align: center;
}
2026-05-13 00:34:34 +12:00
.ph-chips {
gap: 8px;
}
.ph-chip {
font-size: 13px;
padding: 8px 14px;
}
}