@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

/* common css */
:root {
    --white: #fff;
    --black: #000;

    --primary: #e43826;
    --secondary: #044338;

    --heading-font: "Plus Jakarta Sans", sans-serif;
    --body-font: "Inter", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
}

figure,
ol,
p,
ul {
    margin: 0;
    padding: 0;
}
a,
small {
    transition: 0.3s linear;
    -webkit-transition: 0.3s linear;
    text-decoration: none;
}
body {
    font-family: var(--body-font);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
html,
body {
    height: 100%;
}
img {
    max-width: 100%;
    height: auto;
}
.main-wrp {
    flex: 1 0 auto;
}
.footer {
    flex-shrink: 0;
}
/* END common css */

/* Back Button */
#backToTopBtn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--primary);
    color: var(--white);
    cursor: pointer;
    font-size: 1.125rem;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(50px);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease,
        background-color 0.3s ease-in-out;
}

#backToTopBtn:hover {
    opacity: 0.5 !important;
    border: 1px solid var(--primary);
}

#backToTopBtn.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

#backToTopBtn svg {
    width: 1.25rem;
    height: 1.25rem;
    min-width: 1.25rem;
    min-height: 1.25rem;
    stroke-width: 2;
}
/* End Back Button */

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    font-family: var(--body-font);
    transition: all 0.3s ease-in-out;
}
.btn:hover {
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.14);
    transform: translateY(-2px);
}
.btn:active {
    box-shadow: none;
    transform: translateY(0);
}
.btn:focus-visible {
    outline: 2px solid rgba(228, 56, 38, 0.34);
    outline-offset: 0.2rem;
}
.btn-transparent-primary {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.btn-transparent-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--primary);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: -1;
}
.btn-transparent-primary:hover::before {
    transform: translateX(0);
}
.btn-transparent-primary:hover {
    color: var(--white);
}
.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}
.btn-primary:hover {
    background-color: #c92d1f;
    border-color: #c92d1f;
    color: var(--white);
}
.btn-hero-secondary {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}
.btn-hero-secondary svg {
    color: currentColor;
    transition: color 0.3s ease;
}
.btn-hero-secondary svg [stroke] {
    transition: stroke 0.3s ease;
}
.btn-hero-secondary svg [fill]:not([fill="none"]) {
    transition: fill 0.3s ease;
}
.btn-hero-secondary:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--black);
}
.btn-hero-secondary:hover svg {
    color: var(--black);
}
.btn-hero-secondary:hover svg [stroke] {
    stroke: var(--black);
}
.btn-hero-secondary:hover svg [fill]:not([fill="none"]) {
    fill: var(--black);
}
.btn-white {
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid var(--white);
}
.btn-white:hover {
    background-color: transparent;
    color: var(--white);
}
/* END buttons */

/* header */
.header {
    padding: 0.5rem 0;
    position: relative;
    z-index: 100;
    background-color: var(--white);
}
.header-row {
    align-items: center;
}
.nav-logo {
    display: inline-flex;
    align-items: center;
    padding: 0.3125rem 0;
}
.nav-logo img {
    height: 52px;
}
.nav .nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav .nav-link {
    color: var(--black);
    font-weight: 400;
    font-size: 0.875rem;
    padding: 0;
    white-space: nowrap;
}
.nav .nav-link:hover {
    color: var(--primary);
}
.nav .nav-link.is-active {
    color: var(--primary);
    font-weight: 600;
}
.header .btn {
    padding: 0.625rem 1.25rem;
}
/* END Header */
/* mobile menu */
.mobile-menu-toggle {
    width: 2rem;
    height: 2rem;
    border: none;
    background: none;
    padding: 0;
    color: var(--black);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3125rem;
}
.mobile-menu-toggle span {
    width: 1.5rem;
    height: 2px;
    border-radius: 999px;
    background-color: currentColor;
}
.mobile-menu-toggle:hover {
    color: var(--primary);
}
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s linear 0.45s;
}
.mobile-menu-overlay.is-open {
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}
.mobile-menu-panel {
    width: 100%;
    height: 100%;
    padding: 1.25rem;
    background-color: var(--white);
    border-left: 4px solid var(--primary);
    box-shadow: -1.5rem 0 3rem rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-menu-overlay.is-open .mobile-menu-panel {
    transform: translateX(0);
}
.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(4, 67, 56, 0.12);
}
.mobile-menu-close {
    width: 2rem;
    height: 2rem;
    border: none;
    background: none;
    padding: 0;
    color: var(--black);
    position: relative;
    transition: color 0.3s ease-in-out;
}
.mobile-menu-close::before,
.mobile-menu-close::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.125rem;
    height: 2px;
    border-radius: 999px;
    background-color: currentColor;
}
.mobile-menu-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.mobile-menu-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.mobile-menu-close:hover {
    color: var(--primary);
}
.mobile-nav {
    padding: 2.5rem 0;
}
.mobile-nav-list {
    display: flex;
    flex-direction: column;
}
.mobile-nav-link {
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.875rem 0;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
    opacity: 0;
    transform: translateX(1.5rem);
    transition:
        color 0.3s ease-in-out,
        opacity 0.4s ease,
        transform 0.4s ease;
    transition-delay: 0s, 0s, 0s;
}
.mobile-menu-overlay.is-open .mobile-nav-link {
    opacity: 1;
    transform: translateX(0);
}
.mobile-menu-overlay.is-open .mobile-nav-list li:nth-child(2) .mobile-nav-link {
    transition-delay: 0s, 0.04s, 0.04s;
}
.mobile-menu-overlay.is-open .mobile-nav-list li:nth-child(3) .mobile-nav-link {
    transition-delay: 0s, 0.08s, 0.08s;
}
.mobile-menu-overlay.is-open .mobile-nav-list li:nth-child(4) .mobile-nav-link {
    transition-delay: 0s, 0.12s, 0.12s;
}
.mobile-menu-overlay.is-open .mobile-nav-list li:nth-child(5) .mobile-nav-link {
    transition-delay: 0s, 0.16s, 0.16s;
}
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
    color: var(--primary);
}
.mobile-nav-link:hover::after {
    opacity: 1;
    transform: translateX(0.25rem) rotate(45deg);
}
.mobile-menu-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(4, 67, 56, 0.12);
    display: grid;
    gap: 1rem;
}
.mobile-menu-kicker {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.mobile-menu-text {
    color: rgba(0, 0, 0, 0.62);
    font-family: var(--body-font);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 32rem;
}
.mobile-menu-cta {
    width: 100%;
    min-height: 3.25rem;
}
.mobile-menu-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
}
.mobile-menu-meta span {
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--body-font);
    font-size: 0.8125rem;
    font-weight: 700;
}
.mobile-menu-meta span::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(228, 56, 38, 0.12);
}
body.mobile-menu-open {
    overflow: hidden;
}
/* END mobile menu*/

/* section common */
.section-head {
    margin-bottom: 2.5rem;
}
.section-eyebrow {
    color: var(--primary);
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.8px;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.section-head h2,
.process h2,
.testimonials h2,
.about-content h2,
.cta-wrp h2 {
    color: var(--black);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 1rem;
}
.section-head p,
.about-content p,
.testimonials-intro,
.cta-wrp p {
    color: rgba(0, 0, 0, 0.58);
    font-family: var(--body-font);
    font-size: 0.9375rem;
    line-height: 1.75;
}
/* END section common */

/* hero */
.hero {
    background-color: #111;
    min-height: 75vh;
    border-radius: 1.25rem;
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    padding: 0 1.25rem;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    isolation: isolate;
    width: auto;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: var(--hero-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(26, 30, 46, 0.72);
    pointer-events: none;
    z-index: 1;
    pointer-events: none;
    z-index: 1;
}
.hero .container {
    position: relative;
    z-index: 3;
}
.hero-content {
    width: 100%;
    max-width: 50rem;
    position: relative;
    z-index: 3;
}
.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    overflow-wrap: break-word;
}
.hero h1 strong {
    color: var(--primary);
}
.hero p {
    font-size: 1.05rem;
    color: #ffffff;
    max-width: 540px;
    margin-bottom: 2rem;
    line-height: 1.65;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.35rem;
}
.hero-points,
.hero-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding: 0;
}
.hero-points .hero-stat,
.hero-stats .hero-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    padding: 0 1.4rem;
}
.hero-points .hero-stat:first-child,
.hero-stats .hero-stat:first-child {
    padding-left: 0;
}
.hero-points .hero-stat-divider,
.hero-stats .hero-stat-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
}
.hero-points .check-icon-wrap,
.hero-stats .check-icon-wrap {
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero-points .check-icon-wrap svg,
.hero-stats .check-icon-wrap svg {
    color: #fff;
}
.hero-breadcrumb {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 1rem;
}
/* END hero */

/* job offers */
.job-offers {
    background-color: #f7f7f7;
    padding: 4rem 0;
}
.job-card-row {
    row-gap: 1.5rem;
}
.home-job-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}
.home-job-card-main {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.45rem 1.35rem 1.25rem;
}
.home-job-card-top {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 1.1rem;
}
.home-job-card h3 {
    color: var(--black);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
}
.home-job-card p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.86rem;
    line-height: 1.55;
}
.home-job-card .offer-badges {
    margin-top: 1.25rem;
}
.home-job-card-workers {
    flex: 0 0 auto;
    padding-top: 0.1rem;
}
.home-job-card-button {
    border: 1px solid var(--primary);
    cursor: pointer;
    font-size: 0.72rem;
    margin-top: 1.35rem;
    min-height: 2.75rem;
    padding: 0.75rem 1rem;
    text-transform: uppercase;
    width: 100%;
}
.home-job-card-footer {
    padding: 0.9rem 1.35rem;
}
/* END job offers */

/* offer page */
.offer-page-section {
    background-color: #f3f3f3;
    padding: 4rem 0;
}
.offer-section-head {
    margin-bottom: 2rem;
}
.offer-page-row {
    row-gap: 1.5rem;
}
.offer-list,
.offer-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.offer-job-card,
.offer-contact-card,
.offer-info-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.04);
}
.offer-job-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 12rem;
    overflow: hidden;
}
.offer-job-main {
    padding: 1.5rem 1.5rem 1rem;
}
.offer-category {
    background-color: rgba(228, 56, 38, 0.08);
    border-radius: 999px;
    color: var(--primary);
    display: inline-flex;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1;
    margin-bottom: 0.7rem;
    padding: 0.38rem 0.55rem;
    text-transform: uppercase;
}
.offer-job-card h3 {
    color: var(--black);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.8rem;
}
.offer-job-card p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.86rem;
    line-height: 1.6;
    max-width: 39rem;
}
.offer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}
.offer-badges li,
.offer-tool-tags li {
    align-items: center;
    background-color: #f6f6f6;
    border-radius: 999px;
    color: rgba(0, 0, 0, 0.72);
    display: inline-flex;
    font-size: 0.72rem;
    font-weight: 700;
    gap: 0.25rem;
    line-height: 1.2;
    padding: 0.45rem 0.65rem;
}
.offer-badges li:nth-child(2),
.offer-badges li:nth-child(3) {
    background-color: #eaf7fb;
}
.offer-badges li:nth-child(4) {
    background-color: #fff4d8;
}
.offer-badges img {
    border-radius: 50%;
    height: 0.85rem;
    object-fit: cover;
    width: 0.85rem;
}
.offer-job-side {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 1rem 0;
}
.offer-workers {
    text-align: right;
}
.offer-worker-count {
    color: var(--black);
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 0.95;
}
.offer-worker-label {
    color: rgba(0, 0, 0, 0.38);
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    margin-top: 0.25rem;
    text-transform: uppercase;
}
.offer-availability-btn {
    border: 1px solid var(--primary);
    cursor: pointer;
    font-size: 0.72rem;
    min-height: 2.75rem;
    padding: 0.75rem 1rem;
    text-transform: uppercase;
    white-space: nowrap;
}
.offer-job-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.75rem;
    grid-column: 1 / -1;
    padding: 0.85rem 1.5rem;
}
.offer-job-footer span {
    color: rgba(0, 0, 0, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
}
.offer-job-footer span::before {
    background-color: var(--primary);
    border-radius: 50%;
    content: "";
    height: 0.25rem;
    width: 0.25rem;
}
.offer-sidebar {
    position: sticky;
    top: 1rem;
}
.offer-contact-card,
.offer-info-card {
    padding: 1.5rem;
}
.offer-contact-profile {
    align-items: center;
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.offer-contact-profile img {
    border-radius: 50%;
    display: block;
    flex: 0 0 4rem;
    height: 4rem;
    object-fit: cover;
    width: 4rem;
}
.offer-contact-profile h3,
.offer-info-card h3 {
    color: var(--black);
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 0.25rem;
}
.offer-contact-role {
    color: rgba(0, 0, 0, 0.48);
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}
.offer-contact-status {
    align-items: center;
    color: #1daa53;
    display: inline-flex;
    font-size: 0.72rem;
    font-weight: 800;
    gap: 0.35rem;
}
.offer-contact-status.is-offline {
    color: #e03131;
}
.offer-contact-status.is-offline {
    color: #e03131;
}
.offer-contact-status::before {
    background-color: currentColor;
    border-radius: 50%;
    content: "";
    height: 0.45rem;
    width: 0.45rem;
}
.offer-contact-card p,
.offer-brand-card p {
    color: rgba(0, 0, 0, 0.56);
    font-size: 0.82rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.offer-call-btn {
    min-height: 3rem;
    width: 100%;
}
.offer-mail-link {
    align-items: center;
    color: rgba(0, 0, 0, 0.72);
    display: inline-flex;
    font-size: 0.72rem;
    font-weight: 700;
    gap: 0.35rem;
    margin-top: 0.85rem;
    max-width: 100%;
    overflow-wrap: anywhere;
}
.offer-mail-link:hover {
    color: var(--primary);
}
.offer-info-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}
.offer-proof-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
}
.offer-proof-list li:first-child {
    padding-top: 0;
}
.offer-proof-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.offer-proof-number {
    color: var(--primary);
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.3rem;
}
.offer-proof-list span:not(.offer-proof-number) {
    color: rgba(0, 0, 0, 0.72);
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.35;
}
.offer-brand-logo {
    background-color: #e31937;
    color: var(--white);
    display: inline-flex;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 1rem;
    padding: 0.45rem 1.25rem;
    text-transform: uppercase;
}
.offer-tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.offer-tool-tags li {
    font-size: 0.68rem;
}
body.offer-modal-open {
    overflow: hidden;
}
.offer-modal {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    opacity: 0;
    padding: 0.75rem;
    pointer-events: none;
    position: fixed;
    transition: opacity 0.2s ease;
    z-index: 1000;
}
.offer-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}
.offer-modal-backdrop {
    background-color: rgba(0, 0, 0, 0.66);
    inset: 0;
    position: absolute;
}
.offer-modal-dialog {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.28);
    max-height: calc(100vh - 1.5rem);
    overflow: visible;
    position: relative;
    transform: translateY(0.75rem) scale(0.98);
    transition: transform 0.2s ease;
    width: min(100%, 52rem);
    z-index: 1;
}
.offer-modal.is-open .offer-modal-dialog {
    transform: translateY(0) scale(1);
}
.offer-modal-panel[hidden] {
    display: none !important;
}
.offer-modal-dialog--form {
    padding: 1.75rem 2.25rem 1.75rem;
}
.offer-modal-dialog--status {
    align-items: center;
    min-height: 20rem;
    padding: 3.25rem 2rem 2rem;
    text-align: center;
    width: min(100%, 56rem);
}
.offer-modal-close {
    align-items: center;
    background-color: transparent;
    border: 0;
    color: #101828;
    cursor: pointer;
    display: inline-flex;
    height: 2.25rem;
    justify-content: center;
    position: absolute;
    right: 0.9rem;
    top: 0.9rem;
    width: 2.25rem;
    z-index: 2;
}
.offer-modal-head {
    margin-bottom: 1rem;
    padding-right: 2.5rem;
}
.offer-modal-head h2,
.offer-modal-dialog--status h2 {
    color: var(--black);
    font-family: var(--heading-font);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0.35rem;
}
.offer-modal-head p,
.offer-modal-dialog--status p {
    color: rgba(0, 0, 0, 0.48);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.45;
}
.offer-modal-grid {
    display: grid;
    gap: 0.55rem 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.offer-modal-field--full {
    grid-column: 1 / -1;
}
.offer-modal-field label {
    color: var(--black);
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.35rem;
}
.offer-modal-field label span {
    color: var(--primary);
}
.offer-modal-field input,
.offer-modal-field textarea {
    background-color: #f8f8f8;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    color: var(--black);
    display: block;
    font-family: var(--body-font);
    font-size: 0.82rem;
    min-height: 2.55rem;
    outline: none;
    padding: 0.62rem 0.85rem;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
    width: 100%;
}
.offer-modal-field input:focus,
.offer-modal-field textarea:focus {
    background-color: var(--white);
    border-color: var(--primary);
}
.offer-modal-field input::placeholder,
.offer-modal-field textarea::placeholder {
    color: rgba(0, 0, 0, 0.38);
}
.offer-modal-field--date input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M8 2v4M16 2v4M3.5 9.1h17M5.5 4h13A2.5 2.5 0 0 1 21 6.5v12A2.5 2.5 0 0 1 18.5 21h-13A2.5 2.5 0 0 1 3 18.5v-12A2.5 2.5 0 0 1 5.5 4Z' stroke='%23999999' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1.25rem;
    padding-right: 3rem;
}
.offer-modal-field--date input[readonly] {
    cursor: pointer;
}
.flatpickr-calendar {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.16);
    font-family: var(--body-font);
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}
.flatpickr-day.today {
    border-color: var(--primary);
}
.flatpickr-day.today:hover {
    background-color: rgba(228, 56, 38, 0.08);
    border-color: var(--primary);
    color: var(--black);
}
.offer-modal-field.is-invalid input,
.offer-modal-field.is-invalid textarea {
    background-color: rgba(228, 56, 38, 0.04);
    border-color: var(--primary);
}
.offer-modal-form .invalid-feedback {
    color: var(--primary);
    display: block;
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 0.32rem;
    min-height: 1rem;
}
.offer-modal-field textarea {
    min-height: 4.7rem;
    resize: vertical;
}
.offer-modal-submit {
    border: 1px solid var(--primary);
    font-size: 0.92rem;
    margin-top: 0.85rem;
    min-height: 2.85rem;
    width: 100%;
}
.offer-loading-spinner {
    border: 4px solid #d9d9d9;
    border-radius: 50%;
    border-right-color: var(--primary);
    height: 3rem;
    margin: 0 auto 1.6rem;
    width: 3rem;
    animation: offerSpin 0.9s linear infinite;
}
.offer-loading-progress {
    background-color: #d9d9d9;
    border-radius: 999px;
    height: 0.28rem;
    margin: 1.8rem auto 0;
    max-width: 25rem;
    overflow: hidden;
    width: 72%;
}
.offer-loading-progress span {
    background-color: var(--primary);
    display: block;
    height: 100%;
    width: 0;
}
.offer-result-icon {
    align-items: center;
    background-color: var(--primary);
    border-radius: 50%;
    color: var(--white);
    display: inline-flex;
    height: 3.25rem;
    justify-content: center;
    margin-bottom: 1.6rem;
    width: 3.25rem;
}
.offer-modal-dialog--status p .offer-result-highlight {
    color: var(--black);
    font-weight: 800;
}
.offer-result-divider {
    background-color: rgba(0, 0, 0, 0.1);
    height: 1px;
    margin: 1.8rem auto;
    width: 6rem;
}
.offer-result-row {
    align-items: center;
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.offer-result-row span {
    color: var(--black);
    font-size: 1.05rem;
    font-weight: 500;
}
.offer-result-value {
    color: var(--primary);
    font-size: 1.05rem;
    font-weight: 800;
}
.offer-result-close {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: var(--black);
    min-height: 3.5rem;
    min-width: 8rem;
}
.offer-result-close:hover {
    border-color: var(--primary);
    color: var(--primary);
}
@keyframes offerSpin {
    to {
        transform: rotate(360deg);
    }
}
/* END offer page */

/* services page */
.services-intro-section {
    padding: 0 0 4.5rem;
}
.services-intro-grid {
    align-items: center;
    display: grid;
    gap: 4rem;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}
.services-intro-content h2,
.service-band-content h2,
.services-contact-panel h2 {
    color: var(--black);
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 1rem;
}
.services-intro-copy {
    display: grid;
    gap: 0.85rem;
}
.services-intro-copy p,
.service-band-content p,
.services-contact-panel p {
    color: rgba(0, 0, 0, 0.6);
    font-family: var(--body-font);
    font-size: 0.9375rem;
    line-height: 1.75;
}
.services-intro-copy p:first-child {
    color: var(--black);
    font-weight: 700;
}
.services-intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.services-intro-image,
.service-band-image {
    background-color: #e7e7e7;
    border-radius: 8px;
    overflow: hidden;
}
.services-intro-image {
    aspect-ratio: 1.25 / 1;
}
.services-intro-image img,
.service-band-image img {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}
.services-showcase-section {
    padding-bottom: 0;
}
.service-band {
    padding: 4.75rem 0;
}
.service-band--muted {
    background-color: #f3f3f3;
}
.service-band-grid {
    align-items: center;
    display: grid;
    gap: 4rem;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}
.service-band--reverse .service-band-image {
    order: 2;
}
.service-band--reverse .service-band-content {
    justify-self: end;
    order: 1;
    text-align: right;
}
.service-band-image {
    aspect-ratio: 1.12 / 1;
}
.service-image-splide,
.service-image-splide .splide__track,
.service-image-splide .splide__list,
.service-image-splide .splide__slide {
    height: 100%;
}
.service-image-splide .splide__arrow {
    background-color: rgba(255, 255, 255, 0.92);
    height: 2.75rem;
    opacity: 1;
    width: 2.75rem;
}
.service-image-splide .splide__arrow svg {
    fill: var(--black);
    height: 1rem;
    width: 1rem;
}
.service-image-splide .splide__pagination {
    bottom: 1rem;
}
.service-image-splide .splide__pagination__page {
    background-color: rgba(255, 255, 255, 0.75);
    opacity: 1;
}
.service-image-splide .splide__pagination__page.is-active {
    background-color: var(--primary);
    transform: scale(1);
}
.service-band-content {
    max-width: 36rem;
}
.service-index {
    align-items: center;
    color: var(--primary);
    display: inline-flex;
    font-size: 0.75rem;
    font-weight: 800;
    gap: 0.55rem;
    letter-spacing: 0.18em;
    line-height: 1;
    margin-bottom: 0.9rem;
}
.service-index::after {
    background-color: currentColor;
    content: "";
    height: 1px;
    width: 2.75rem;
}
.service-band-content h2 {
    font-size: 2.2rem;
    margin-bottom: 0.85rem;
}
.service-band-link {
    margin-top: 1.15rem;
}
.services-contact-section {
    background-color: #e7e7e7;
    padding: 4.75rem 0;
}
.services-contact-panel {
    margin: 0 auto;
    max-width: 44rem;
    text-align: center;
}
.services-contact-panel h2 {
    margin-bottom: 0.65rem;
}
.services-contact-panel p {
    margin: 0 auto;
    max-width: 32rem;
}
.services-static-form {
    margin: 2rem auto 0;
    max-width: 34rem;
}
.services-form-grid {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.services-static-form input,
.services-static-form textarea {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    color: var(--black);
    display: block;
    font-family: var(--body-font);
    font-size: 0.82rem;
    min-height: 3rem;
    outline: none;
    padding: 0.85rem 1rem;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
    width: 100%;
}
.services-static-form textarea {
    margin-top: 0.8rem;
    min-height: 6rem;
    resize: vertical;
}
.services-static-form input:focus,
.services-static-form textarea:focus {
    border-color: var(--primary);
}
.services-static-form button {
    margin-top: 1rem;
    min-width: 7rem;
}
/* END services page */

/* documents page */
.documents-section {
    padding: 0 0 5rem;
}
.documents-content {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
}
.documents-content .documents-description > :first-child {
    margin-top: 0;
}
.documents-content .documents-description > :last-child {
    margin-bottom: 0;
}
.documents-content h2 {
    color: var(--black);
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.documents-content h2:not(:first-child) {
    margin-top: 2.5rem;
}
.documents-content h3 {
    color: var(--black);
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.35;
    margin: 2rem 0 0.55rem;
}
.documents-content h4,
.documents-content h5,
.documents-content h6 {
    color: var(--black);
    font-family: var(--heading-font);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.4;
    margin: 1.5rem 0 0.45rem;
}
.documents-content p,
.documents-content ul,
.documents-content ol,
.documents-content blockquote,
.documents-content table {
    color: rgba(0, 0, 0, 0.62);
    font-family: var(--body-font);
    font-size: 0.9375rem;
    line-height: 1.75;
    margin-bottom: 0.85rem;
}
.documents-content ul,
.documents-content ol {
    margin-bottom: 1rem;
    padding-left: 1.35rem;
}
.documents-content ul {
    list-style: disc;
}
.documents-content ol {
    list-style: decimal;
}
.documents-content li {
    margin-bottom: 0.35rem;
}
.documents-content li::marker {
    color: var(--primary);
    font-weight: 700;
}
.documents-content strong,
.documents-content b {
    color: var(--black);
    font-weight: 800;
}
.documents-content em,
.documents-content i {
    font-style: italic;
}
.documents-content blockquote {
    background-color: #f5f5f5;
    border-left: 3px solid var(--primary);
    border-radius: 0 8px 8px 0;
    color: rgba(0, 0, 0, 0.72);
    margin: 1.5rem 0;
    padding: 1rem 1.15rem;
}
.documents-content hr {
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    margin: 2rem 0;
    opacity: 1;
}
.documents-content img {
    border-radius: 10px;
    display: block;
    height: auto;
    margin: 1.25rem 0;
    max-width: 100%;
}
.documents-content table {
    border-collapse: collapse;
    margin: 1.5rem 0;
    width: 100%;
}
.documents-content th,
.documents-content td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0.95rem;
    text-align: left;
    vertical-align: top;
}
.documents-content th {
    color: var(--black);
    font-weight: 800;
}
.documents-content .documents-intro {
    color: var(--black);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.documents-content a {
    color: var(--primary);
    font-weight: 700;
}
.documents-content a:hover {
    color: #c92d1f;
}
/* END documents page */

/* process */
.process {
    background-color: #f7f7f7;
}
.process-wrp {
    background-color: #f7f7f7;
    border-radius: 14px;
    padding: 4rem 2.5rem;
}
.process-row {
    row-gap: 1.5rem;
}
.process-card {
    min-height: 100%;
    background-color: var(--white);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
}
.process-card-arrow {
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #f7f7f7;
    align-items: center;
    justify-content: center;
}
.process-card-arrow svg {
    display: block;
}
.process-number {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    font-weight: 700;
}
.process-card h3 {
    color: var(--black);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    font-family: var(--heading-font);
}
.process-card p {
    color: rgba(0, 0, 0, 0.5);
    font-family: var(--body-font);
    font-size: 0.875rem;
    line-height: 1.55;
}
/* END process */

/* testimonials */
.testimonials {
    padding: 4rem 0;
}
.testimonials-wrp {
    background-color: #0e0e0e;
    border-radius: 14px;
    padding: 4.5rem 3rem;
    position: relative;
    overflow: hidden;
}
.testimonials-wrp::before {
    content: "";
    position: absolute;
    top: 0rem;
    left: -2rem;
    width: 658px;
    height: 100%;
    background-image: url("../images/paw.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top left;
    pointer-events: none;
}
.testimonials-wrp > .row {
    position: relative;
    z-index: 1;
}
.testimonials h2 {
    color: var(--white);
    margin-bottom: 0;
}
.testimonials-intro {
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 0;
}
.testimonials-splide {
    margin-top: 4.5rem;
}
.testimonials-splide .splide__arrow--prev {
    left: -1.5rem;
}
.testimonials-splide .splide__arrow--next {
    right: -1.5rem;
}
.testimonials-splide .splide__arrow svg {
    fill: transparent;
    width: 1.5rem;
    height: 1.5rem;
}
.testimonials-splide .splide__arrow {
    width: 3rem;
    height: 3rem;
    background: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.testimonials-splide .splide__arrow:not([disabled]) {
    opacity: 1;
}
.testimonial-card {
    min-height: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(
        111deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(93, 93, 93, 0.15) 100%
    );
    backdrop-filter: blur(44px);
    padding: 2rem;
}
.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}
.stars svg {
    color: #ffc444;
    flex: 0 0 auto;
}
.stars .is-filled {
    color: #ffc444;
}
.stars .is-empty {
    color: rgba(255, 255, 255, 0.24);
}
.testimonial-copy {
    margin-bottom: 1rem;
}
.testimonial-copy .testimonial-text {
    margin-bottom: 0.55rem;
}
.testimonial-copy:not(.is-expanded) .testimonial-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    overflow: hidden;
}
.testimonial-copy:not(.is-overflowing) .testimonial-toggle {
    display: none;
}
.testimonial-toggle {
    appearance: none;
    background: none;
    border: 0;
    color: var(--white);
    cursor: pointer;
    font-family: var(--body-font);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 0;
    transition: color 0.3s ease;
}
.testimonial-toggle:hover {
    color: #ffc444;
}
.testimonial-toggle:focus-visible {
    outline: 2px solid rgba(255, 196, 68, 0.55);
    outline-offset: 0.2rem;
}
.testimonial-card p {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--body-font);
    font-size: 0.875rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}
.testimonial-author {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
}
.stats-row {
    row-gap: 1.5rem;
    margin-top: 4.5rem;
}
.stat-item {
    text-align: center;
}
.stat-number {
    color: var(--white);
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.7rem;
}
.stat-item span:not(.stat-number) {
    color: rgba(255, 255, 255, 0.48);
    display: block;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
/* END testimonials */

/* about */
.about-section {
    padding: 4rem 0;
    margin-bottom: 2rem;
}
.about-row {
    row-gap: 2.5rem;
}
.about-image {
    min-height: 31rem;
    border-radius: 14px;
    position: relative;
    background-color: #d8d8d8;
    background-image: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.02),
        rgba(0, 0, 0, 0.16)
    );
    background-size: cover;
    background-position: center;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.12);
    transform: rotate(3deg);
    transform-origin: top left;
}
.about-logo-badge {
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 50%;
    background-color: var(--white);
    position: absolute;
    left: 50%;
    bottom: -3rem;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.16);
    transform: translateX(-50%) rotate(-3deg);
}
.about-logo-badge img {
    max-width: 4.5rem;
}
.about-content h2 {
    margin-bottom: 1.25rem;
}
.about-content p + p {
    margin-top: 1rem;
}
.about-list {
    display: grid;
    gap: 0.65rem;
    margin-top: 1.25rem;
}
.about-list li {
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
}
.about-list li::before {
    content: "";
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'><rect x='4' y='5' width='12' height='10' fill='white'/><path fill-rule='evenodd' clip-rule='evenodd' d='M1.0415 10C1.0415 14.9476 5.05229 18.9584 9.99984 18.9584C14.9474 18.9584 18.9582 14.9476 18.9582 10C18.9582 5.05247 14.9474 1.04169 9.99984 1.04169C5.05229 1.04169 1.0415 5.05247 1.0415 10ZM13.8963 6.88573C14.2355 7.19672 14.2584 7.72386 13.9475 8.06313L9.36417 13.0631C9.2105 13.2307 8.99517 13.3282 8.76792 13.3332C8.54067 13.3381 8.3213 13.25 8.16058 13.0893L6.07725 11.0059C5.75181 10.6805 5.75181 10.1529 6.07725 9.82744C6.40269 9.50202 6.93032 9.50202 7.25576 9.82744L8.72367 11.2954L12.7188 6.93692C13.0298 6.59765 13.557 6.57474 13.8963 6.88573Z' fill='%23E43826'/></svg>");
    background-repeat: no-repeat;
    background-size: contain;
}
/* END about */

/* about page */
.about-page-hero {
    padding: 4.5rem 0 3.75rem;
}
.about-page-hero h1,
.about-page-hero p,
.about-page-statement,
.about-page-statement *,
.about-story-content,
.about-story-content * {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
}
/* .breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(0, 0, 0, 0.35);
    font-family: var(--body-font);
    font-size: 0.8125rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.breadcrumb-nav a {
    color: rgba(0, 0, 0, 0.35);
}
.breadcrumb-nav a:hover,
.breadcrumb-nav span {
    color: var(--primary);
}
.breadcrumb-nav span::before {
    content: ">";
    color: rgba(0, 0, 0, 0.25);
    margin-right: 0.5rem;
} */

.about-page-hero h1 {
    color: var(--black);
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1rem;
}
.about-page-hero p {
    color: rgba(0, 0, 0, 0.52);
    font-family: var(--body-font);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 auto;
}
.about-page-statement {
    color: rgba(0, 0, 0, 0.16);
    font-family: var(--heading-font);
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.35;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4.25rem;
    max-width: 78rem;
}
.about-page-statement strong {
    color: inherit;
    font-weight: 800;
}
.about-page-statement .fill-char {
    color: rgba(0, 0, 0, 0.15);
    transition: color 0.25s ease;
    display: inline;
}
.about-page-statement .fill-char.is-filled {
    color: #0e0e0e;
}
.about-page-photo {
    padding-bottom: 1.5rem;
}
.about-page-photo .container {
    aspect-ratio: 9 / 4;
    overflow: hidden;
    border-radius: 14px;
}
.about-page-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 14px;
}
.about-story-section {
    padding: 6rem 0 4rem;
}
.about-story-row {
    row-gap: 3rem;
}
.about-story-content h2 {
    color: var(--black);
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 1.25rem;
}
.about-story-content p {
    color: rgba(0, 0, 0, 0.62);
    font-family: var(--body-font);
    font-size: 0.9375rem;
    line-height: 1.75;
    margin-bottom: 0;
}
.about-story-copy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
}
.about-story-visual {
    min-height: 36rem;
    position: relative;
}
.about-story-main,
.about-story-small {
    display: block;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.14);
}
.about-story-main {
    width: 88%;
    height: 34rem;
    margin-left: auto;
    transform: rotate(3deg);
}
.about-story-small {
    width: 42%;
    height: 15rem;
    position: absolute;
    left: 0;
    bottom: 1.5rem;
    transform: rotate(-2deg);
}
.about-timeline-section {
    padding: 2rem 0 4rem;
}
.about-timeline-wrp {
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}
.about-timeline-wrp > * {
    position: relative;
    z-index: 1;
}
.about-timeline-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3.25rem;
}
.about-timeline-item {
    display: grid;
    grid-template-columns: 4rem minmax(0, 1fr);
    column-gap: 1.5rem;
    align-items: stretch;
}
.about-timeline-rail {
    position: relative;
    display: flex;
    justify-content: center;
}
.about-timeline-rail::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: -2rem;
    width: 2px;
    background-color: var(--primary);
}
.about-timeline-item:last-child .about-timeline-rail::before {
    bottom: 0;
}
.about-timeline-dot {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--primary);
    margin-top: 2.15rem;
    position: relative;
    z-index: 1;
}
.about-timeline-dot::before {
    content: "";
    position: absolute;
    inset: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(228, 56, 38, 0.22);
    transform: translate(-50%, -50%) scale(1);
    z-index: -1;
    animation: aboutTimelinePulse 2.4s ease-out infinite;
}
@keyframes aboutTimelinePulse {
    0% {
        opacity: 0.75;
        transform: translate(-50%, -50%) scale(1);
    }
    70% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2.8);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2.8);
    }
}
.about-timeline-card {
    background-color: var(--white);
    border-radius: 18px;
    display: grid;
    grid-template-columns: minmax(15rem, 20rem) minmax(0, 1fr);
    min-height: 16rem;
    overflow: hidden;
}
.about-timeline-item.is-reversed .about-timeline-card {
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 20rem);
}
.about-timeline-item.is-reversed .about-timeline-visual {
    order: 2;
}
.about-timeline-item.is-reversed .about-timeline-content {
    order: 1;
}
.about-timeline-item.is-without-image .about-timeline-card {
    grid-template-columns: 1fr;
}
.about-timeline-visual {
    position: relative;
    min-height: 100%;
    background-color: #ececec;
}
.about-timeline-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-timeline-content {
    padding: 2rem 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f7f7f7;
}
.about-timeline-year {
    align-self: flex-start;
    background-color: var(--primary);
    border-radius: 999px;
    color: var(--white);
    display: inline-flex;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    margin-bottom: 1rem;
    padding: 0.55rem 0.9rem;
}
.about-timeline-content h3 {
    color: var(--black);
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.85rem;
}
.about-timeline-content p {
    color: rgba(0, 0, 0, 0.62);
    font-family: var(--body-font);
    font-size: 0.9375rem;
    line-height: 1.75;
    margin-bottom: 0;
}
.about-stats-wrp {
    background-color: #0e0e0e;
    border-radius: 14px;
    overflow: hidden;
    padding: 4.5rem 3rem;
    position: relative;
}
.about-stats-wrp::before {
    content: "";
    position: absolute;
    top: 0rem;
    left: -2rem;
    width: 658px;
    height: 100%;
    background-image: url("../images/paw.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
    pointer-events: none;
}
.about-stats-wrp .stats-row {
    margin-top: 0;
    position: relative;
    z-index: 1;
}
/* END about page */

/* contact page */
.contact-hero-section {
    padding: 0 0 4.5rem;
}
.contact-hero-wrp {
    background-color: #0e0e0e;
    border-radius: 1.25rem;
    min-height: 17.5rem;
    overflow: hidden;
    padding: 5rem 0 3rem;
    position: relative;
    margin-left: 1.25rem;
    margin-right: 1.25rem;
}
.contact-hero-wrp::before {
    content: "";
    position: absolute;
    inset: -4rem auto 0 0rem;
    width: 36rem;
    background-image: url("../images/paw.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top left;
    opacity: 1;
    pointer-events: none;
}
.contact-hero-wrp::after {
    content: "";
    position: absolute;
    inset: auto 0rem 0rem auto;
    width: 36rem;
    height: 15.5rem;
    background-image: url("../images/bear-full-opacity.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
    opacity: 1;
    pointer-events: none;
}
/* .contact-hero-wrp .breadcrumb-nav,
.contact-hero-wrp h1 {
    position: relative;
    z-index: 1;
}
.breadcrumb-nav--light,
.breadcrumb-nav--light a {
    color: rgba(255, 255, 255, 0.42);
}
.breadcrumb-nav--light span::before {
    color: rgba(255, 255, 255, 0.28);
} */
.contact-hero-wrp h1 {
    color: var(--white);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1;
}
.contact-team-section {
    padding: 0 0 4rem;
}
.contact-team-head {
    margin-bottom: 2.25rem;
}
.contact-team-head--secondary {
    margin-top: 2.5rem;
}
.contact-team-head h2 {
    color: var(--black);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.18;
}
.contact-team-row {
    row-gap: 2rem;
}
.contact-person {
    isolation: isolate;
    padding-top: 10rem;
    position: relative;
}
.contact-person-photo {
    border-radius: 50%;
    height: 11.25rem;
    left: 50%;
    overflow: hidden;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 11.25rem;
    z-index: 0;
}
.contact-person-photo img {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}
.contact-person-card {
    background-color: #f6f6f6;
    border-radius: 6px;
    min-height: 11.5rem;
    padding: 3.1rem 1.75rem 1.75rem;
    position: relative;
    z-index: 1;
}
.contact-person-heading {
    align-items: flex-start;
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
    margin-bottom: 0.3rem;
}
.contact-person-heading h3 {
    color: var(--black);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
}
.contact-flags {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    justify-content: flex-end;
    padding-top: 0.1rem;
}
.contact-flags img {
    border-radius: 50%;
    display: block;
    flex: 0 0 1.1rem;
    height: 1.1rem;
    object-fit: cover;
    width: 1.1rem;
}
.contact-person-role {
    color: rgba(0, 0, 0, 0.4);
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 1.1rem;
    text-transform: uppercase;
}
.contact-person-card a {
    color: var(--black);
    display: block;
    font-size: 0.76rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}
.contact-person-card a + a {
    margin-top: 0.6rem;
}
.contact-person-card a:hover {
    color: var(--primary);
}
.contact-map-section {
    padding: 0 0 4.75rem;
}
.contact-map-wrp {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}
.contact-map {
    width: 100%;
}
.contact-map-card {
    display: none;
}
.contact-map-popup {
    font-size: 1.25rem;
    color: var(--black);
    line-height: 1.2;
}
.contact-form-section {
    padding: 0 0 5rem;
}
.contact-form-row {
    align-items: stretch;
    row-gap: 2rem;
}
.contact-info-card,
.contact-form-card {
    border-radius: 14px;
    height: 100%;
}
.contact-info-card {
    background-color: #0e0e0e;
    color: var(--white);
    padding: 2.5rem 2rem;
    height: auto;
    position: sticky;
    top: 1rem;
}
.contact-info-card h2,
.contact-form-card h2 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.7rem;
}
.contact-info-card ul {
    display: flex;
    flex-direction: column;
    gap: 1.55rem;
}
.contact-info-card li {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
}
.contact-info-icon {
    align-items: center;
    background: rgba(228, 56, 38, 0.1);
    border-radius: 6px;
    color: var(--primary);
    display: inline-flex;
    flex: 0 0 2.75rem;
    height: 3rem;
    justify-content: center;
    width: 3rem;
}
.contact-info-card small {
    color: rgba(255, 255, 255, 0.32);
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.2;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}
.contact-info-card span:not(.contact-info-icon),
.contact-info-card a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.86rem;
    line-height: 1.55;
}
.contact-info-card a:hover {
    color: var(--primary);
}
.contact-form-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 40px 32px;
}
.contact-input-row {
    row-gap: 1.1rem;
}
.contact-form-card label {
    color: var(--black);
    display: block;
    font-size: 0.76rem;
    font-weight: 700;
    margin: 0 0 0.45rem;
}
.contact-form-card label span {
    color: var(--primary);
}
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    background-color: #f7f7f7;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    color: var(--black);
    display: block;
    font-family: var(--body-font);
    font-size: 0.82rem;
    margin-bottom: 1.1rem;
    outline: none;
    padding: 0.95rem 1rem;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
    width: 100%;
}
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
    background-color: var(--white);
    border-color: var(--primary);
}
.contact-form-card textarea {
    min-height: 10rem;
    resize: vertical;
}
.contact-form-card .btn {
    margin-top: 0.25rem;
    width: 100%;
}
.contact-form-card p {
    color: rgba(0, 0, 0, 0.54);
    font-size: 0.7rem;
    line-height: 1.5;
    margin-top: 1rem;
    text-align: center;
}

/* custom select */
.custom-select-hidden {
    display: none !important;
}
.custom-select {
    background-color: #f7f7f7;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    color: var(--black);
    cursor: pointer;
    font-family: var(--body-font);
    font-size: 0.82rem;
    margin-bottom: 1.1rem;
    padding: 0.95rem 2.5rem 0.95rem 1rem;
    position: relative;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
    user-select: none;
    width: 100%;
}
.custom-select:focus {
    background-color: var(--white);
    border-color: var(--primary);
    outline: none;
}
.custom-select.is-open {
    background-color: var(--white);
    border-color: var(--primary);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.custom-select.is-filled .custom-select-trigger {
    color: var(--black);
}
.custom-select-trigger {
    color: rgba(0, 0, 0, 0.4);
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.custom-select-arrow {
    color: rgba(0, 0, 0, 0.45);
    pointer-events: none;
    position: absolute;
    right: 0.85rem;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition:
        transform 0.2s ease,
        color 0.2s ease;
}
.custom-select.is-open .custom-select-arrow {
    color: var(--primary);
    transform: translateY(-50%) rotate(180deg);
}
.custom-select-list {
    background-color: var(--white);
    border: 1px solid var(--primary);
    border-top: none;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    left: -1px;
    margin: 0;
    max-height: 14rem;
    overflow-y: auto;
    padding: 0.25rem 0;
    position: absolute;
    top: 100%;
    width: calc(100% + 2px);
    z-index: 50;
    display: none;
}
.custom-select.is-open .custom-select-list {
    display: block;
}
.custom-select-option {
    color: rgba(0, 0, 0, 0.55);
    cursor: pointer;
    font-size: 0.82rem;
    padding: 0.7rem 1rem;
    transition:
        background-color 0.15s ease,
        color 0.15s ease;
}
.custom-select-option:first-child {
    color: rgba(0, 0, 0, 0.38);
    font-style: italic;
}
.custom-select-option:hover,
.custom-select-option:focus {
    background-color: rgba(228, 56, 38, 0.06);
    color: var(--primary);
}
.custom-select-option.is-selected {
    color: var(--primary);
    font-weight: 600;
}
/* END custom select */

/* validation feedback */
.contact-form-card .form-field input,
.contact-form-card .form-field textarea,
.contact-form-card .form-field .custom-select,
.contact-input-row .col-md-6 input {
    margin-bottom: 0;
}
.contact-form-card .invalid-feedback {
    color: var(--primary);
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.85rem;
    margin-top: 0.3rem;
    min-height: 1em;
}
.contact-input-row .col-md-6 .invalid-feedback {
    margin-bottom: 0.55rem;
}

/* contact response */
#contactResponse {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    padding: 2rem 0;
    text-align: center;
}
#contactResponse p {
    color: var(--black);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.55;
    margin: 0;
}
/* END contact page */

/* projects page */
.project-gallery-item img,
.project-reference-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.projects-gallery-section {
    padding: 0 0 5rem;
}
.projects-gallery-head {
    margin-bottom: 1.75rem;
}
.projects-filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.projects-filter-list button {
    appearance: none;
    background-color: #ececec;
    border: 0;
    border-radius: 4px;
    color: rgba(0, 0, 0, 0.72);
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.55rem 0.95rem;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}
.projects-filter-list button:hover {
    background-color: rgba(228, 56, 38, 0.12);
    color: var(--primary);
}
.projects-filter-list .is-active {
    background-color: var(--primary);
    color: var(--white);
}
.projects-gallery-grid {
    position: relative;
}
.projects-gallery-grid::after {
    clear: both;
    content: "";
    display: block;
}
.project-gallery-sizer,
.project-gallery-item {
    width: calc((100% - 2.25rem) / 4);
}
.project-gallery-gutter-sizer {
    width: 0.75rem;
}
.project-gallery-item {
    aspect-ratio: 4/3;
    background-color: #f3f3f3;
    border-radius: 6px;
    display: block;
    float: left;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.project-gallery-item.is-hidden {
    display: none;
}
.project-gallery-item--tall {
    aspect-ratio: 3/5;
}
.project-references-section {
    padding: 5rem 0;
}
.project-reference-list {
    display: grid;
    gap: 5.5rem;
}
.project-reference {
    align-items: center;
    display: grid;
    gap: 4rem;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}
.project-reference--reverse .project-reference-content {
    order: 2;
}
.project-reference--reverse .project-reference-image {
    order: 1;
}
.project-reference-content h3 {
    color: var(--black);
    font-size: 1.35rem;
    margin-bottom: 1rem;
}
.project-reference-content ul {
    display: grid;
    gap: 0.45rem;
    list-style: none;
    margin-bottom: 1.4rem;
    padding-left: 0;
}
.project-reference-content li {
    color: rgba(0, 0, 0, 0.62);
    font-family: var(--body-font);
    font-size: 0.86rem;
    line-height: 1.65;
    padding-left: 1rem;
    position: relative;
}
.project-reference-content li::before {
    background: rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    content: "";
    height: 0.35rem;
    left: 0;
    position: absolute;
    top: 0.62em;
    width: 0.35rem;
}
.project-reference-location {
    align-items: center;
    display: flex;
    gap: 0.7rem;
}
.project-reference-location img {
    border-radius: 50%;
    height: 1.5rem;
    width: 1.5rem;
}
.project-reference-place {
    color: var(--black);
    display: block;
    font-size: 0.9rem;
}
.project-reference-location span:not(.project-reference-place) {
    color: rgba(0, 0, 0, 0.55);
    display: block;
    font-family: var(--body-font);
    font-size: 0.78rem;
    line-height: 1.45;
}
.project-reference-image {
    border-radius: 10px;
    display: block;
    height: 19rem;
    overflow: hidden;
}
/* END projects page */

/* faq page */
.faq-section {
    padding: 0 0 4rem;
}
.faq-section-head {
    margin-bottom: 2rem;
}
.faq-accordion {
    display: grid;
    gap: 0.85rem;
}
.faq-accordion .accordion-item {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.04);
    overflow: hidden;
}
.faq-accordion .accordion-button {
    background-color: #f7f7f7;
    box-shadow: none;
    color: var(--black);
    font-size: 1rem;
    font-weight: 700;
    gap: 1rem;
    line-height: 1.35;
    padding: 1.25rem 1.35rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #0e0e0e;
    color: var(--white);
}
.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}
.faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(228, 56, 38, 0.18);
}
.faq-accordion .accordion-body {
    color: rgba(0, 0, 0, 0.62);
    font-family: var(--body-font);
    font-size: 0.92rem;
    line-height: 1.75;
    padding: 1.15rem 1.35rem 1.3rem;
}
/* END faq page */

/* error page */
.error-page-section {
    padding: 4rem 0;
}
.error-page-wrp {
    background-color: #101010;
    background-position: center;
    background-size: cover;
    border-radius: 1.5rem;
    min-height: 36rem;
    overflow: hidden;
    padding: 5.5rem 3rem;
    position: relative;
}
.error-page-wrp::after {
    background: radial-gradient(
        circle at 18% 34%,
        rgba(228, 56, 38, 0.24),
        transparent 30%
    );
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}
.error-page-row {
    min-height: 25rem;
    position: relative;
    z-index: 1;
}
.error-page-content {
    max-width: 42rem;
}
.error-page-content h1 {
    color: var(--white);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.25rem;
}
.error-page-content p {
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--body-font);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    max-width: 34rem;
}
.error-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.4rem;
}
.error-page-actions .btn-hero-secondary {
    color: var(--white);
}
.error-page-actions .btn-hero-secondary:hover {
    color: var(--black);
}
.error-page-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
}
.error-page-points li {
    color: rgba(255, 255, 255, 0.86);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-family: var(--body-font);
    font-size: 0.8125rem;
    font-weight: 600;
}
.error-page-points li::before {
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 0.25rem rgba(228, 56, 38, 0.16);
    content: "";
    height: 0.45rem;
    width: 0.45rem;
}
.error-page-panel {
    background-color: rgba(255, 255, 255, 0.94);
    border-radius: 12px;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.22);
    padding: 2rem;
    position: relative;
}
.error-page-code {
    color: var(--primary);
    display: block;
    font-family: var(--heading-font);
    font-size: 8rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.82;
    margin-bottom: 1.5rem;
}
.error-page-card {
    background-color: #f7f7f7;
    border-radius: 8px;
    padding: 1.25rem;
}
.error-page-card span {
    color: rgba(0, 0, 0, 0.48);
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}
.error-page-card strong {
    color: var(--black);
    display: block;
    font-family: var(--heading-font);
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.1;
}
.error-page-links {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.error-page-links a {
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: rgba(0, 0, 0, 0.72);
    display: flex;
    font-size: 0.875rem;
    font-weight: 800;
    justify-content: space-between;
    padding-top: 0.75rem;
}
.error-page-links a::after {
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    content: "";
    height: 0.5rem;
    transform: rotate(45deg);
    width: 0.5rem;
}
.error-page-links a:hover {
    color: var(--primary);
}
/* END error page */

/* cta */
.cta-section {
    padding: 4rem 0;
}
.cta-deco {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}
.cta-deco--left {
    left: 0;
}
.cta-deco--right {
    right: 0rem;
    width: 36rem;
}
.cta-wrp {
    background-color: var(--primary);
    border-radius: 14px;
    min-height: 17rem;
    padding: 6rem 2.5rem;
    text-align: start;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
    position: relative;
    overflow: hidden;
}
.cta-wrp h2,
.cta-wrp p,
.cta-wrp .btn {
    position: relative;
    z-index: 1;
}
.cta-wrp h2 {
    color: var(--white);
    margin-bottom: 1rem;
}
.cta-wrp p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 30rem;
    margin-bottom: 1.5rem;
}
.cta-wrp .btn-white:hover {
    background-color: #0e0e0e;
    border-color: #0e0e0e;
    color: var(--white);
    box-shadow: 0 0.9rem 1.8rem rgba(0, 0, 0, 0.22);
}
/* END cta */

/* footer */
/* .site-footer {
    background-color: #070707;
    color: rgba(255, 255, 255, 0.62);
    padding: 4.5rem 0 1.75rem;
}
.footer-main-row {
    row-gap: 2.5rem;
}
.footer-logo {
    display: inline-flex;
    margin-bottom: 1.25rem;
}
.footer-logo img {
    filter: brightness(0) invert(1);
    height: 54px;
}
.site-footer p {
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--body-font);
    font-size: 0.875rem;
    line-height: 1.75;
    max-width: 20rem;
}
.site-footer h3 {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.footer-list,
.footer-contact-list {
    display: grid;
    gap: 0.65rem;
}
.footer-list a,
.footer-contact-list a,
.footer-contact-list li {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--body-font);
    font-size: 0.875rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.footer-contact-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-hours-item {
    gap: 1.5rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}
.footer-list a:hover,
.footer-contact-list a:hover {
    color: var(--primary);
}
.footer-contact-list li span {
    color: rgba(255, 255, 255, 0.7);
}
.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.footer-socials a {
    width: 3rem;
    height: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.72);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
}
.footer-socials a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.footer-bottom-row {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 4rem;
    padding-top: 1.5rem;
    row-gap: 1rem;
}
.footer-bottom-row p {
    max-width: none;
    margin-bottom: 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.3);
}
.footer-bottom-row ul {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}
.footer-bottom-row a {
    color: rgba(255, 255, 255, 0.3);
    font-family: var(--body-font);
    font-size: 0.8125rem;
}
.footer-bottom-row a:hover {
    color: var(--primary);
} */
 /* ─── FOOTER ─── */
.site-footer { background: #0e1220; padding: 64px 0 0; }
.site-footer .footer-logo { height: 54px; filter: brightness(0) invert(1); margin-bottom: 1rem; display: block; }
.site-footer .footer-desc { font-size: 0.85rem; color: #c9d1dc; line-height: 1.65; max-width: 230px; }
.site-footer h6 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #9ca3af; margin-bottom: 1.1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { color: #c9d1dc; font-size: 0.875rem; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 9px; font-size: 0.875rem; color: #c9d1dc; margin-bottom: 0.75rem; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a{color: rgb(201, 209, 220); text-decoration: none; transition: color 0.2s;}
.footer-hours { font-size: 0.875rem; color: #c9d1dc; margin-bottom: 0.4rem; }
.footer-hours span { color: #c9d1dc; font-weight: 500; }
.footer-social { display: flex; gap: 10px; margin-top: 1.1rem; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.footer-social a:hover { background: var(--red); }
.footer-social a svg { stroke: #9ca3af; fill: none; transition: stroke 0.2s; }
.footer-social a:hover svg { stroke: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 18px 0; margin-top: 48px; }
.footer-bottom p { font-size: 0.78rem; color: #4b5563; margin: 0; }
.footer-bottom a { color: #4b5563; text-decoration: none; transition: color 0.2s; font-size: 0.75rem; }
.footer-bottom a:hover { color: #9ca3af; }
/* END footer */

/* page hero */
.page-hero {
    background: #1a1e2e;
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
}
.page-hero .breadcrumb-nav {
    justify-content: flex-start;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.2rem;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60'><path d='M0 60L60 0' stroke='rgba(255,255,255,.03)' stroke-width='1'/></svg>")
        repeat;
}

.page-hero::after {
    content: "";
    position: absolute;
    right: -11.875rem;
    bottom: 0;
    width: 420px;
    height: 100%;
    background: url("../images/bear-full-opacity.svg") no-repeat bottom right /
        contain;
    pointer-events: none;
}

@media (max-width: 991px) {
    .page-hero::after {
        width: 200px;
        opacity: 0.05;
        right: 0;
    }
}
@media (max-width: 575px) {
    .page-hero::after {
        display: none;
    }
}

.page-hero-inner {
    position: relative;
    padding: 3rem 0 3.5rem;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.2rem;
}

.breadcrumb-nav a {
    color: var(--primary);
    text-decoration: none;
}
.breadcrumb-nav a:hover {
    color: #ff6b62;
}
.breadcrumb-nav span {
    color: rgba(255, 255, 255, 0.2);
}

.page-hero h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.page-hero .hero-sub {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    max-width: 580px;
    line-height: 1.7;
    margin: 0;
}
p.hero-sub {
    min-height: 78px;
}