2026-05-27 20:58:19 -08:00
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Hedvig+Letters+Sans:wght@400;500;600&display=swap');
|
|
|
|
|
|
2026-05-16 10:45:33 -08:00
|
|
|
@tailwind base;
|
|
|
|
|
@tailwind components;
|
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
|
|
|
|
@layer base {
|
2026-06-03 18:12:53 -08:00
|
|
|
html {
|
|
|
|
|
background-color: theme('colors.pt-blue.400');
|
2026-06-03 21:14:39 -08:00
|
|
|
scroll-behavior: smooth;
|
|
|
|
|
}
|
2026-05-16 10:45:33 -08:00
|
|
|
/* Neutralise any theme container constraints */
|
|
|
|
|
.page-wrapper {
|
|
|
|
|
max-width: none;
|
|
|
|
|
padding-inline: 0;
|
|
|
|
|
}
|
|
|
|
|
/* Hide Olivero/theme chrome we don't use */
|
|
|
|
|
.site-header,
|
|
|
|
|
.sticky-header-toggle,
|
|
|
|
|
.social-bar {
|
|
|
|
|
display: none !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@layer components {
|
2026-06-05 01:01:03 -08:00
|
|
|
/* Shared design tokens */
|
|
|
|
|
.rpt-link {
|
|
|
|
|
@apply text-pt-blue-500 hover:underline;
|
|
|
|
|
}
|
|
|
|
|
.rpt-btn {
|
|
|
|
|
@apply inline-flex items-center gap-3 px-5 py-3 bg-pt-blue-500 text-white text-[15px] font-medium no-underline transition-colors hover:bg-pt-blue-600;
|
|
|
|
|
}
|
|
|
|
|
.rpt-section {
|
|
|
|
|
@apply py-16 px-6 bg-white;
|
|
|
|
|
}
|
|
|
|
|
.rpt-container {
|
|
|
|
|
@apply max-w-[1040px] mx-auto;
|
|
|
|
|
}
|
|
|
|
|
.rpt-heading-lg {
|
|
|
|
|
@apply text-2xl font-normal text-gray-900;
|
|
|
|
|
}
|
|
|
|
|
.rpt-heading-md {
|
|
|
|
|
@apply text-xl font-normal mb-3;
|
|
|
|
|
}
|
|
|
|
|
.rpt-body-text {
|
|
|
|
|
@apply text-[15px] text-gray-600 leading-relaxed;
|
|
|
|
|
}
|
|
|
|
|
.rpt-eyebrow {
|
|
|
|
|
@apply text-xs tracking-widest uppercase text-pt-blue-500 font-semibold;
|
|
|
|
|
}
|
|
|
|
|
/* Service/info card */
|
|
|
|
|
.rpt-card {
|
|
|
|
|
@apply flex flex-col border border-pt-blue-200 bg-white overflow-hidden;
|
|
|
|
|
}
|
|
|
|
|
.rpt-card__body {
|
|
|
|
|
@apply flex flex-col gap-4 p-6 flex-1;
|
|
|
|
|
}
|
|
|
|
|
.rpt-card__img {
|
|
|
|
|
@apply w-full h-48 object-cover;
|
|
|
|
|
}
|
|
|
|
|
/* Rounded info card (about page pillars, etc.) */
|
|
|
|
|
.rpt-card-rounded {
|
|
|
|
|
@apply bg-white p-6 rounded-xl border border-pt-blue-200;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-16 10:45:33 -08:00
|
|
|
/* Mobile nav: max-height slide can't be expressed with utilities alone */
|
2026-05-24 18:23:05 -08:00
|
|
|
@media (max-width: calc(theme('screens.md') - 1px)) {
|
2026-05-16 10:45:33 -08:00
|
|
|
#rpt-main-nav {
|
|
|
|
|
flex: none;
|
2026-05-24 18:23:05 -08:00
|
|
|
position: static;
|
|
|
|
|
order: 10;
|
|
|
|
|
width: 100%;
|
2026-05-16 10:45:33 -08:00
|
|
|
background: #fff;
|
2026-06-03 18:12:53 -08:00
|
|
|
border-top: 1px solid theme('colors.gray.200');
|
2026-05-16 10:45:33 -08:00
|
|
|
max-height: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transition: max-height 0.3s ease, opacity 0.25s ease;
|
|
|
|
|
}
|
|
|
|
|
#rpt-main-nav.is-open {
|
|
|
|
|
max-height: 500px;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
#rpt-main-nav ul {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: stretch;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Hamburger open-state animation */
|
|
|
|
|
.rpt-header__hamburger[aria-expanded="true"] span:nth-child(1) {
|
|
|
|
|
width: 100% !important;
|
|
|
|
|
transform: translateY(10px) rotate(45deg);
|
|
|
|
|
}
|
|
|
|
|
.rpt-header__hamburger[aria-expanded="true"] span:nth-child(2) {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
.rpt-header__hamburger[aria-expanded="true"] span:nth-child(3) {
|
|
|
|
|
width: 100% !important;
|
|
|
|
|
transform: translateY(-10px) rotate(-45deg);
|
|
|
|
|
}
|
|
|
|
|
}
|