/* =========================================================
   CORE INNER PAGES
   About and Contact
   Existing .site-page-hero controls the hero background
   and decorative pseudo-elements.
========================================================= */


/* =========================================================
   CENTRAL PAGE HERO BANNER
========================================================= */

.page-hero-banner {
    position: relative;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-hero-banner.has-page-hero-image {
    background-image:
        linear-gradient(
            90deg,
            rgb(7 40 32 / 92%) 0%,
            rgb(7 40 32 / 76%) 52%,
            rgb(7 40 32 / 40%) 100%
        ),
        var(--page-hero-image);

    background-position:
        center,
        var(--page-hero-position, center center);

    background-repeat:
        no-repeat,
        no-repeat;

    background-size:
        cover,
        cover;
}

.page-hero-banner.has-page-hero-image
.core-page-eyebrow,

.page-hero-banner.has-page-hero-image
.core-page-hero-content h1 {
    color: #ffffff;
}

.page-hero-banner.has-page-hero-image
.core-page-hero-content > p {
    color: rgb(255 255 255 / 84%);
}

.page-hero-banner.has-page-hero-image
.core-page-hero-tags span {
    border-color: rgb(255 255 255 / 22%);
    background: rgb(255 255 255 / 12%);
    color: #ffffff;
}

.page-hero-banner.has-page-hero-image
.core-page-hero-tags i {
    color: #f4c95d;
}



/* =========================================================
   GLOBAL PAGE HERO EYEBROW
========================================================= */

.page-hero-banner .core-page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #ffffff;

    font-size: 11px;
    font-weight: 850;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.page-hero-banner .core-page-eyebrow::before {
    content: "";

    width: 25px;
    height: 2px;

    display: block;
    flex: 0 0 25px;

    border-radius: 999px;

    background: #e07a3f;
}





/* =========================================================
   CENTRAL DYNAMIC PAGE HERO
========================================================= */



/* =========================================================
   UNIVERSAL DYNAMIC HERO TEXT COLOURS
   Image available  = white text
   No image         = existing dark text
========================================================= */

/* Heading */

.site-page-hero.page-hero-banner.has-page-hero-image h1,
.site-page-hero.page-hero-banner.has-page-hero-image h2 {
    color: #ffffff !important;

    text-shadow:
        0 2px 16px
        rgba(0, 0, 0, 0.18);
}


/* Description */

.site-page-hero.page-hero-banner.has-page-hero-image p {
    color: rgba(255, 255, 255, 0.82) !important;
}


/* Eyebrow — works for Core, Projects, Designs and other apps */

.site-page-hero.page-hero-banner.has-page-hero-image
:is(
    .core-page-eyebrow,
    [class*="eyebrow"]
) {
    color: #ffffff !important;
}


/* Orange eyebrow line */

.site-page-hero.page-hero-banner
:is(
    .core-page-eyebrow,
    [class*="eyebrow"]
)::before {
    background: #e07a3f !important;
}


/* Breadcrumb container */

.site-page-hero.page-hero-banner.has-page-hero-image
:is(
    .breadcrumb,
    .breadcrumbs,
    [class*="breadcrumb"]
) {
    color: rgba(255, 255, 255, 0.72) !important;
}


/* Breadcrumb links and text */

.site-page-hero.page-hero-banner.has-page-hero-image
:is(
    .breadcrumb,
    .breadcrumbs,
    [class*="breadcrumb"]
)
:is(
    a,
    span,
    li
) {
    color: rgba(255, 255, 255, 0.72) !important;
}

.site-page-hero.page-hero-banner.has-page-hero-image
:is(
    .breadcrumb,
    .breadcrumbs,
    [class*="breadcrumb"]
)
a:hover {
    color: #ffffff !important;
}


/* Breadcrumb active/current item */

.site-page-hero.page-hero-banner.has-page-hero-image
:is(
    .breadcrumb,
    .breadcrumbs,
    [class*="breadcrumb"]
)
:is(
    .active,
    [aria-current="page"]
) {
    color: #ffffff !important;
}




/* =========================================================
   UNIVERSAL HERO BUTTONS
========================================================= */

.site-page-hero .page-hero-primary-action,
.site-page-hero .page-hero-secondary-action {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 12px 20px;

    border-radius: 8px;

    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


/* Primary orange button */

.site-page-hero .page-hero-primary-action {
    border: 1px solid #e7783c;

    background: #e7783c;
    color: #ffffff !important;
}

.site-page-hero .page-hero-primary-action:hover,
.site-page-hero .page-hero-primary-action:focus-visible {
    border-color: #d8662d;

    background: #d8662d;
    color: #ffffff !important;

    transform: translateY(-2px);
}


/* Secondary button without image */

.site-page-hero .page-hero-secondary-action {
    border: 1px solid #0f6e56;

    background: transparent;
    color: #0f6e56 !important;
}


/* Secondary button when banner image is available */

.site-page-hero.has-page-hero-image
.page-hero-secondary-action {
    border-color: rgba(255, 255, 255, 0.72);

    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;

    backdrop-filter: blur(5px);
}

.site-page-hero.has-page-hero-image
.page-hero-secondary-action:hover,
.site-page-hero.has-page-hero-image
.page-hero-secondary-action:focus-visible {
    border-color: #ffffff;

    background: #ffffff;
    color: #0f6e56 !important;

    transform: translateY(-2px);
}




.site-page-hero.page-hero-banner {
    position: relative;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* =========================================================
   DEFAULT HERO — NO IMAGE
   Keep the original light background and dark text
========================================================= */

.site-page-hero.page-hero-banner
.core-page-eyebrow {
    color: #0f6e56;
}

.site-page-hero.page-hero-banner
.core-page-hero-content h1 {
    color: #1a1a1a;
}

.site-page-hero.page-hero-banner
.core-page-hero-content > p {
    color: #6b6b6b;
}

.site-page-hero.page-hero-banner
.core-page-hero-tags span {
    border-color: #dfe8e3;
    background: rgba(255, 255, 255, 0.75);
    color: #3d3d3d;
}

.site-page-hero.page-hero-banner
.core-page-hero-tags i {
    color: #0f6e56;
}


/* =========================================================
   HERO WITH DYNAMIC IMAGE
========================================================= */

.site-page-hero.page-hero-banner.has-page-hero-image {
    background-image:
        linear-gradient(
            90deg,
            rgba(7, 40, 32, 0.92) 0%,
            rgba(7, 40, 32, 0.76) 52%,
            rgba(7, 40, 32, 0.40) 100%
        ),
        var(--page-hero-image);

    background-position:
        center,
        var(--page-hero-position, center center);

    background-repeat:
        no-repeat,
        no-repeat;

    background-size:
        cover,
        cover;

    border-bottom-color:
        rgba(255, 255, 255, 0.10);
}


/* White eyebrow text */

.site-page-hero.page-hero-banner.has-page-hero-image
.core-page-eyebrow {
    color: #ffffff;
}


/* White heading */

.site-page-hero.page-hero-banner.has-page-hero-image
.core-page-hero-content h1 {
    color: #ffffff;
}


/* Soft white paragraph */

.site-page-hero.page-hero-banner.has-page-hero-image
.core-page-hero-content > p {
    color: rgba(255, 255, 255, 0.84);
}


/* Hero tags */

.site-page-hero.page-hero-banner.has-page-hero-image
.core-page-hero-tags span {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;

    backdrop-filter: blur(5px);
}

.site-page-hero.page-hero-banner.has-page-hero-image
.core-page-hero-tags i {
    color: #f4c95d;
}


/* =========================================================
   EYEBROW ORANGE LINE
========================================================= */

.site-page-hero.page-hero-banner
.core-page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    font-size: 11px;
    font-weight: 850;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-page-hero.page-hero-banner
.core-page-eyebrow::before {
    width: 25px;
    height: 2px;

    display: block;
    flex: 0 0 25px;

    border-radius: 999px;

    background: #e07a3f;

    content: "";
}


/* =========================================================
   CONTENT LAYER
========================================================= */

.site-page-hero .container,
.site-page-hero .site-container {
    position: relative;
    z-index: 2;
}


/* Hide light decorative circles when image exists */

.site-page-hero.page-hero-banner.has-page-hero-image::before,
.site-page-hero.page-hero-banner.has-page-hero-image::after {
    opacity: 0;
}






/* =========================================================
   CENTRAL DYNAMIC PAGE HERO
   ---------------------------------------------------------
   No image:
   - Existing light .site-page-hero background
   - Dark heading and paragraph

   Image available:
   - Uploaded banner image
   - Dark gradient overlay
   - White hero text
========================================================= */

.site-page-hero.dynamic-page-hero {
    --dynamic-hero-heading: #1a1a1a;
    --dynamic-hero-text: #6b6b6b;
    --dynamic-hero-eyebrow: #0f6e56;
    --dynamic-hero-highlight: #0f6e56;
    --dynamic-hero-meta-title: #1a1a1a;
    --dynamic-hero-meta-text: #5f6d67;
    --dynamic-hero-icon: #0f6e56;
    --dynamic-hero-border: rgba(15, 110, 86, 0.18);
    --dynamic-hero-secondary-bg: transparent;
    --dynamic-hero-secondary-text: #0f6e56;

    position: relative;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* =========================================================
   DYNAMIC BANNER IMAGE
========================================================= */

.site-page-hero.dynamic-page-hero.has-page-hero-image {
    --dynamic-hero-heading: #ffffff;
    --dynamic-hero-text: rgba(255, 255, 255, 0.84);
    --dynamic-hero-eyebrow: #ffffff;
    --dynamic-hero-highlight: #f4c95d;
    --dynamic-hero-meta-title: #ffffff;
    --dynamic-hero-meta-text: rgba(255, 255, 255, 0.76);
    --dynamic-hero-icon: #f4c95d;
    --dynamic-hero-border: rgba(255, 255, 255, 0.25);
    --dynamic-hero-secondary-bg: rgba(255, 255, 255, 0.08);
    --dynamic-hero-secondary-text: #ffffff;

    background-image:
        linear-gradient(
            90deg,
            rgba(5, 35, 28, 0.94) 0%,
            rgba(5, 35, 28, 0.80) 50%,
            rgba(5, 35, 28, 0.48) 100%
        ),
        var(--page-hero-image);

    background-position:
        center,
        var(--page-hero-position, center center);

    background-repeat:
        no-repeat,
        no-repeat;

    background-size:
        cover,
        cover;

    border-bottom-color:
        rgba(255, 255, 255, 0.10);
}


/* Hide default light hero circles when an image exists */

.site-page-hero.dynamic-page-hero.has-page-hero-image::before,
.site-page-hero.dynamic-page-hero.has-page-hero-image::after {
    opacity: 0;
}


/* =========================================================
   HERO CONTENT LAYER
========================================================= */

.site-page-hero.dynamic-page-hero
.site-container,

.site-page-hero.dynamic-page-hero
.container {
    position: relative;
    z-index: 2;
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-content {
    position: relative;
    z-index: 2;
}


/* =========================================================
   HERO EYEBROW
========================================================= */

.site-page-hero.dynamic-page-hero
.dynamic-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--dynamic-hero-eyebrow);

    font-size: 11px;
    font-weight: 850;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    transition:
        color 0.2s ease;
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-eyebrow::before {
    width: 25px;
    height: 2px;

    display: block;
    flex: 0 0 25px;

    border-radius: 999px;

    background: #e07a3f;

    content: "";
}


/* =========================================================
   HERO HEADING
========================================================= */

.site-page-hero.dynamic-page-hero
.dynamic-hero-content > h1,

.site-page-hero.dynamic-page-hero
.dynamic-hero-content > h2 {
    color: var(--dynamic-hero-heading);

    transition:
        color 0.2s ease;
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-highlight {
    color: var(--dynamic-hero-highlight);

    transition:
        color 0.2s ease;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.site-page-hero.dynamic-page-hero
.dynamic-hero-content > p {
    color: var(--dynamic-hero-text);

    transition:
        color 0.2s ease;
}


/* =========================================================
   HERO BREADCRUMB
========================================================= */

.site-page-hero.dynamic-page-hero
.dynamic-hero-breadcrumb {
    color: var(--dynamic-hero-text);
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-breadcrumb a {
    color: var(--dynamic-hero-eyebrow);

    text-decoration: none;
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-breadcrumb i {
    color: var(--dynamic-hero-text);
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-breadcrumb > span {
    color: var(--dynamic-hero-heading);
}

.site-page-hero.dynamic-page-hero.has-page-hero-image
.dynamic-hero-breadcrumb a:hover,

.site-page-hero.dynamic-page-hero.has-page-hero-image
.dynamic-hero-breadcrumb a:focus-visible {
    color: #ffffff;
}


/* =========================================================
   PRIMARY HERO ACTION
========================================================= */

.site-page-hero.dynamic-page-hero
.dynamic-hero-primary-action {
    border-color: #e7783c;

    background: #e7783c;
    color: #ffffff;
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-primary-action:hover,

.site-page-hero.dynamic-page-hero
.dynamic-hero-primary-action:focus-visible {
    border-color: #d8662d;

    background: #d8662d;
    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   SECONDARY HERO ACTION
========================================================= */

.site-page-hero.dynamic-page-hero
.dynamic-hero-secondary-action {
    border-color:
        var(--dynamic-hero-border);

    background:
        var(--dynamic-hero-secondary-bg);

    color:
        var(--dynamic-hero-secondary-text);

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.site-page-hero.dynamic-page-hero.has-page-hero-image
.dynamic-hero-secondary-action {
    backdrop-filter: blur(5px);
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-secondary-action:hover,

.site-page-hero.dynamic-page-hero
.dynamic-hero-secondary-action:focus-visible {
    border-color: #0f6e56;

    background: #0f6e56;
    color: #ffffff;

    transform: translateY(-2px);
}

.site-page-hero.dynamic-page-hero.has-page-hero-image
.dynamic-hero-secondary-action:hover,

.site-page-hero.dynamic-page-hero.has-page-hero-image
.dynamic-hero-secondary-action:focus-visible {
    border-color: #ffffff;

    background: #ffffff;
    color: #0f6e56;
}


/* =========================================================
   HERO META, STATS AND BENEFITS
========================================================= */

.site-page-hero.dynamic-page-hero
.dynamic-hero-meta {
    color: var(--dynamic-hero-meta-text);
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-meta strong {
    color: var(--dynamic-hero-meta-title);
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-meta span {
    color: var(--dynamic-hero-meta-text);
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-meta i {
    color: var(--dynamic-hero-icon);
}


/* =========================================================
   HERO SIDE PANEL
   This remains readable over both light and image heroes.
========================================================= */

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel {
    border:
        1px solid
        rgba(15, 110, 86, 0.13);

    background: #ffffff;

    color: #1a1a1a;
}

.site-page-hero.dynamic-page-hero.has-page-hero-image
.dynamic-hero-panel {
    border-color:
        rgba(255, 255, 255, 0.30);

    background:
        rgba(255, 255, 255, 0.94);

    box-shadow:
        0 22px 54px
        rgba(0, 0, 0, 0.22);

    backdrop-filter: blur(10px);
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel h2,

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel h3,

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel strong {
    color: #1a1a1a;
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel p,

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel span {
    color: #626f69;
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel a {
    color: #0f6e56;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.site-page-hero.dynamic-page-hero
.dynamic-hero-primary-action:focus-visible,

.site-page-hero.dynamic-page-hero
.dynamic-hero-secondary-action:focus-visible {
    outline:
        3px solid
        rgba(224, 122, 63, 0.30);

    outline-offset: 3px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .site-page-hero.dynamic-page-hero.has-page-hero-image {
        background-image:
            linear-gradient(
                rgba(5, 35, 28, 0.90),
                rgba(5, 35, 28, 0.80)
            ),
            var(--page-hero-image);

        background-position:
            center,
            var(--page-hero-position, center center);
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .site-page-hero.dynamic-page-hero
    .dynamic-hero-primary-action,

    .site-page-hero.dynamic-page-hero
    .dynamic-hero-secondary-action {
        transition: none;
    }

}




/* =========================================================
   DYNAMIC HERO MAIN CONTENT
   White only for the main left-side content
========================================================= */

.site-page-hero.dynamic-page-hero.has-page-hero-image
.dynamic-hero-content > h1,

.site-page-hero.dynamic-page-hero.has-page-hero-image
.dynamic-hero-content > h2 {
    color: #ffffff !important;
}

.site-page-hero.dynamic-page-hero.has-page-hero-image
.dynamic-hero-content > p {
    color: rgba(255, 255, 255, 0.84) !important;
}

.site-page-hero.dynamic-page-hero.has-page-hero-image
.dynamic-hero-content
.dynamic-hero-highlight {
    color: #f4c95d !important;
}


/* =========================================================
   DYNAMIC HERO SIDE PANEL
   Always use dark readable text
========================================================= */

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel {
    border:
        1px solid
        rgba(15, 110, 86, 0.14);

    background: #ffffff;
    color: #1a1a1a;
}

.site-page-hero.dynamic-page-hero.has-page-hero-image
.dynamic-hero-panel {
    border-color:
        rgba(255, 255, 255, 0.30);

    background:
        rgba(255, 255, 255, 0.95);

    color: #1a1a1a;

    box-shadow:
        0 22px 54px
        rgba(0, 0, 0, 0.22);

    backdrop-filter: blur(10px);
}


/* Panel headings */

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel h1,

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel h2,

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel h3,

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel h4 {
    color: #1a1a1a !important;
}


/* Panel descriptions */

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel > p,

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel p {
    color: #65716c !important;
}


/* Panel labels */

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.resource-visual-badge,

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.pkg-hero-card-label {
    color: #64716b !important;
}


/* Panel links */

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel a {
    color: #0f6e56 !important;
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel a:hover,

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel a:focus-visible {
    color: #084d3c !important;
}


/* Panel icons */

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.resource-visual-icon,

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.pkg-hero-card-icon {
    background: #0f6e56;
    color: #ffffff;
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.resource-visual-icon i,

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.pkg-hero-card-icon i {
    color: #ffffff !important;
}


/* Resource panel tags */

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.resource-visual-tags span {
    border:
        1px solid
        #dce6e1;

    background: #ffffff;
    color: #586760 !important;
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.resource-visual-tags i {
    color: #0f6e56 !important;
}


/* Package panel offer section */

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.pkg-hero-offer-link,

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.pkg-hero-offer-link span {
    color: #65716c !important;
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.pkg-hero-offer-link i {
    color: #e07a3f !important;
}






/* =========================================================
   core pages
========================================================= */


.core-page {
    --core-heading: #1a1a1a;
    --core-subheading: #3d3d3d;
    --core-text: #6b6b6b;
    --core-caption: #929292;
    --core-primary: #0f6e56;
    --core-primary-dark: #084d3c;
    --core-accent: #e07a3f;
    --core-yellow: #f4c95d;
    --core-light: #f5f8f6;
    --core-border: #dfe8e3;
    --core-white: #ffffff;

    overflow: hidden;
    color: var(--core-text);
}

.core-page *,
.core-page *::before,
.core-page *::after {
    box-sizing: border-box;
}

.core-page .site-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.core-page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.core-page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--core-primary);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.core-page-eyebrow::before {
    width: 25px;
    height: 2px;
    background: var(--core-accent);
    content: "";
}

.core-page-hero-content h1 {
    max-width: 830px;
    margin: 14px 0 15px;
    color: var(--core-heading);
    font-size: clamp(32px, 4.2vw, 50px);
    font-weight: 850;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.core-page-hero-content > p {
    max-width: 710px;
    margin: 0;
    color: var(--core-text);
    font-size: 13px;
    font-weight: 550;
    line-height: 1.8;
}

.core-page-hero-tags {
    display: flex;
    gap: 9px;
    margin-top: 23px;
    flex-wrap: wrap;
}

.core-page-hero-tags span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border: 1px solid var(--core-border);
    border-radius: 999px;
    background: rgb(255 255 255 / 75%);
    color: var(--core-subheading);
    font-size: 9px;
    font-weight: 750;
}

.core-page-hero-tags i {
    color: var(--core-primary);
}


/* =========================================================
   COMMON SECTION
========================================================= */

.core-page-section {
    padding: 76px 0;
}

.core-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 31px;
}

.core-section-header > div {
    max-width: 670px;
}

.core-section-header > div > span,
.core-story-heading > span,
.core-contact-process-layout > div:first-child > span {
    color: var(--core-primary);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.core-section-header h2,
.core-story-heading h2,
.core-contact-process-layout > div:first-child h2 {
    margin: 8px 0 0;
    color: var(--core-heading);
    font-size: clamp(25px, 3vw, 37px);
    font-weight: 850;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.core-section-header > p {
    max-width: 410px;
    margin: 0;
    font-size: 10px;
    font-weight: 550;
    line-height: 1.75;
}




/* =========================================================
   ABOUT PAGE HERO TEXT
========================================================= */

.about-page-hero .core-page-eyebrow,
.about-page-hero .core-page-hero-content h1,
.about-page-hero .core-page-hero-content > p {
    color: var(--core-white);
}

.about-page-hero .core-page-eyebrow::before {
    background: var(--core-accent);
}

.about-page-hero .core-page-hero-tags span {
    border-color: rgb(255 255 255 / 24%);
    background: rgb(255 255 255 / 12%);
    color: var(--core-white);
}

.about-page-hero .core-page-hero-tags i {
    color: var(--core-yellow);
}




/* =========================================================
   ABOUT CARDS
========================================================= */

.core-about-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.core-info-card {
    position: relative;
    overflow: hidden;
    padding: 29px;
    border: 1px solid var(--core-border);
    border-radius: 16px;
    background: var(--core-white);
    transition:
        transform 170ms ease,
        box-shadow 170ms ease,
        border-color 170ms ease;
}

.core-info-card:hover {
    border-color: rgb(15 110 86 / 32%);
    box-shadow: 0 20px 48px rgb(28 58 43 / 9%);
    transform: translateY(-4px);
}

.core-info-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: #eaf2ee;
    color: var(--core-primary);
    font-size: 19px;
}

.core-info-card-number {
    position: absolute;
    top: 20px;
    right: 23px;
    color: rgb(15 110 86 / 12%);
    font-size: 31px;
    font-weight: 900;
}

.core-info-card h3 {
    margin: 21px 0 9px;
    color: var(--core-heading);
    font-size: 16px;
    font-weight: 850;
    line-height: 1.3;
}

.core-info-card p {
    margin: 0;
    font-size: 10px;
    font-weight: 550;
    line-height: 1.75;
}


/* =========================================================
   ABOUT STORY
========================================================= */

.core-story-section {
    padding: 76px 0;
    background: var(--core-light);
}

.core-story-layout {
    display: grid;
    grid-template-columns:
        minmax(270px, 0.72fr)
        minmax(0, 1.28fr);
    align-items: start;
    gap: 60px;
}

.core-story-heading p {
    margin: 13px 0 0;
    font-size: 10px;
    font-weight: 550;
    line-height: 1.75;
}

.core-story-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.core-story-list article {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px;
    border: 1px solid var(--core-border);
    border-radius: 14px;
    background: var(--core-white);
}

.core-story-list article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    border-radius: 11px;
    background: var(--core-primary);
    color: var(--core-white);
    font-size: 10px;
    font-weight: 850;
    flex: 0 0 auto;
}

.core-story-list h3 {
    margin: 0 0 6px;
    color: var(--core-heading);
    font-size: 12px;
    font-weight: 850;
}

.core-story-list p {
    margin: 0;
    font-size: 8px;
    font-weight: 550;
    line-height: 1.65;
}


/* =========================================================
   CONTACT CARDS
========================================================= */

.core-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.core-contact-card {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 29px;
    border: 1px solid var(--core-border);
    border-radius: 16px;
    background: var(--core-white);
    transition:
        transform 170ms ease,
        box-shadow 170ms ease;
}

.core-contact-card:hover {
    box-shadow: 0 20px 48px rgb(28 58 43 / 9%);
    transform: translateY(-4px);
}

.core-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 49px;
    height: 49px;
    border-radius: 14px;
    background: #eaf2ee;
    color: var(--core-primary);
    font-size: 19px;
}

.core-contact-label {
    margin-top: 19px;
    color: var(--core-primary);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.core-contact-card h3 {
    margin: 7px 0 9px;
    color: var(--core-heading);
    font-size: 18px;
    font-weight: 850;
    line-height: 1.25;
}

.core-contact-card > p {
    margin: 0;
    font-size: 9px;
    font-weight: 550;
    line-height: 1.75;
}

.core-contact-links {
    display: grid;
    gap: 9px;
    width: 100%;
    margin-top: auto;
    padding-top: 21px;
}

.core-contact-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 41px;
    padding: 9px 12px;
    border: 1px solid var(--core-border);
    border-radius: 9px;
    background: var(--core-light);
    color: var(--core-subheading);
    font-size: 9px;
    font-weight: 750;
    word-break: break-word;
    transition:
        border-color 160ms ease,
        background 160ms ease,
        color 160ms ease;
}

.core-contact-links a:hover {
    border-color: var(--core-primary);
    background: var(--core-primary);
    color: var(--core-white);
}


/* =========================================================
   CONTACT CHECKLIST
========================================================= */

.core-contact-process {
    padding: 76px 0;
    background: var(--core-light);
}

.core-contact-process-layout {
    display: grid;
    grid-template-columns:
        minmax(270px, 0.72fr)
        minmax(0, 1.28fr);
    align-items: start;
    gap: 60px;
}

.core-contact-process-layout > div:first-child p {
    margin: 13px 0 0;
    font-size: 10px;
    line-height: 1.75;
}

.core-contact-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.core-contact-checklist article {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 15px;
    border: 1px solid var(--core-border);
    border-radius: 12px;
    background: var(--core-white);
    color: var(--core-subheading);
    font-size: 9px;
    font-weight: 700;
}

.core-contact-checklist i {
    color: var(--core-primary);
    font-size: 16px;
}






/* =========================================================
   CONTACT PAGE HERO TEXT
========================================================= */

.contact-page-hero .core-page-eyebrow,
.contact-page-hero .core-page-hero-content h1 {
    color: var(--core-white);
}

.contact-page-hero .core-page-hero-content > p {
    color: rgb(255 255 255 / 82%);
}

.contact-page-hero .core-page-hero-tags span {
    border-color: rgb(255 255 255 / 22%);
    background: rgb(255 255 255 / 12%);
    color: var(--core-white);
}

.contact-page-hero .core-page-hero-tags i {
    color: var(--core-yellow);
}


/* =========================================================
   CONTACT OPTIONS
========================================================= */

.contact-options-section {
    background: var(--core-white);
}

.contact-option-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.contact-option-card {
    position: relative;

    min-width: 0;
    min-height: 310px;

    display: flex;
    flex-direction: column;

    padding: 25px;

    overflow: hidden;

    border:
        1px solid
        var(--core-border);

    border-radius: 16px;

    background: var(--core-white);

    box-shadow:
        0 12px 32px
        rgb(8 77 60 / 7%);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.contact-option-card::before {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--core-primary),
            var(--core-accent)
        );

    opacity: 0;

    content: "";

    transition: opacity 0.25s ease;
}

.contact-option-card:hover {
    border-color:
        rgb(15 110 86 / 27%);

    box-shadow:
        0 18px 44px
        rgb(8 77 60 / 12%);

    transform: translateY(-4px);
}

.contact-option-card:hover::before {
    opacity: 1;
}

.contact-option-icon {
    width: 48px;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border:
        1px solid
        rgb(15 110 86 / 12%);

    border-radius: 13px;

    background: #eaf3ef;
    color: var(--core-primary);

    font-size: 19px;
}

.contact-option-label {
    color: var(--core-primary);

    font-size: 9px;
    font-weight: 850;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-option-card h3 {
    margin: 8px 0 0;

    color: var(--core-heading);

    font-size: 17px;
    font-weight: 850;
    line-height: 1.35;
}

.contact-option-card > p {
    margin: 12px 0 0;

    color: var(--core-text);

    font-size: 11px;
    line-height: 1.75;
}

.contact-option-actions {
    display: grid;
    gap: 8px;

    margin-top: auto;
    padding-top: 22px;
}

.contact-option-primary,
.contact-option-secondary {
    min-height: 41px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    padding: 10px 12px;

    border-radius: 8px;

    font-size: 10px;
    font-weight: 800;
    line-height: 1.3;

    text-align: center;
    text-decoration: none;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.contact-option-primary {
    border:
        1px solid
        var(--core-primary);

    background: var(--core-primary);
    color: var(--core-white);
}

.contact-option-primary:hover,
.contact-option-primary:focus-visible {
    border-color: var(--core-primary-dark);

    background: var(--core-primary-dark);
    color: var(--core-white);

    transform: translateY(-1px);
}

.contact-option-secondary {
    border:
        1px solid
        var(--core-border);

    background: var(--core-white);
    color: var(--core-primary);
}

.contact-option-secondary:hover,
.contact-option-secondary:focus-visible {
    border-color: var(--core-primary);

    background: var(--core-light);
    color: var(--core-primary-dark);
}


/* =========================================================
   LOCATION AND MAP
========================================================= */

.contact-location-section {
    padding: 78px 0;

    background: var(--core-light);
}

.contact-location-layout {
    display: grid;

    grid-template-columns:
        minmax(300px, 0.82fr)
        minmax(520px, 1.18fr);

    align-items: center;
    gap: 58px;
}

.contact-location-content {
    min-width: 0;
}

.contact-location-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--core-primary);

    font-size: 9px;
    font-weight: 850;
    line-height: 1.4;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.contact-location-eyebrow::before {
    width: 25px;
    height: 2px;

    background: var(--core-accent);

    content: "";
}

.contact-location-content h2 {
    margin: 10px 0 0;

    color: var(--core-heading);

    font-size: clamp(26px, 3.2vw, 39px);
    font-weight: 850;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.contact-location-content > p {
    margin: 16px 0 0;

    color: var(--core-text);

    font-size: 11.5px;
    line-height: 1.8;
}

.contact-location-details {
    display: grid;
    gap: 0;

    margin: 27px 0 0;

    font-style: normal;
}

.contact-location-item {
    display: grid;

    grid-template-columns:
        39px
        minmax(0, 1fr);

    align-items: start;
    gap: 12px;

    padding: 14px 0;

    border-bottom:
        1px solid
        var(--core-border);
}

.contact-location-item:last-child {
    border-bottom: 0;
}

.contact-location-item > span {
    width: 39px;
    height: 39px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #e5f0ec;
    color: var(--core-primary);

    font-size: 15px;
}

.contact-location-item small,
.contact-location-item strong,
.contact-location-item a {
    display: block;
}

.contact-location-item small {
    margin-bottom: 3px;

    color: var(--core-caption);

    font-size: 8px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-location-item strong,
.contact-location-item a {
    overflow-wrap: anywhere;

    color: var(--core-subheading);

    font-size: 10.5px;
    font-weight: 750;
    line-height: 1.55;

    text-decoration: none;
}

.contact-location-item a:hover,
.contact-location-item a:focus-visible {
    color: var(--core-primary);
}

.contact-location-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;

    margin-top: 25px;
}

.contact-location-primary,
.contact-location-secondary {
    min-height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 11px 15px;

    border-radius: 9px;

    font-size: 10px;
    font-weight: 800;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.contact-location-primary {
    border:
        1px solid
        var(--core-primary);

    background: var(--core-primary);
    color: var(--core-white);
}

.contact-location-primary:hover,
.contact-location-primary:focus-visible {
    border-color: var(--core-primary-dark);

    background: var(--core-primary-dark);
    color: var(--core-white);

    transform: translateY(-1px);
}

.contact-location-secondary {
    border:
        1px solid
        var(--core-border);

    background: var(--core-white);
    color: var(--core-primary);
}

.contact-location-secondary:hover,
.contact-location-secondary:focus-visible {
    border-color: var(--core-primary);

    color: var(--core-primary-dark);
}


/* =========================================================
   GOOGLE MAP
========================================================= */

.contact-map-wrap {
    position: relative;

    min-width: 0;
}

.contact-map-wrap::before {
    position: absolute;
    top: -12px;
    right: -12px;

    width: 100px;
    height: 100px;

    border-top:
        3px solid
        var(--core-accent);

    border-right:
        3px solid
        var(--core-accent);

    border-radius: 0 17px 0 0;

    content: "";
}

.contact-map {
    position: relative;
    z-index: 1;

    width: 100%;
    height: 420px;

    display: block;

    border: 0;
    border-radius: 17px;

    background: #e7eeeb;

    box-shadow:
        0 20px 50px
        rgb(8 77 60 / 14%);
}

.contact-map-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 15px;

    border:
        1px solid
        rgb(255 255 255 / 12%);

    border-radius: 10px;

    background:
        rgb(8 77 60 / 94%);

    box-shadow:
        0 12px 28px
        rgb(8 77 60 / 25%);

    backdrop-filter: blur(8px);
}

.contact-map-badge > span {
    width: 34px;
    height: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background:
        rgb(255 255 255 / 10%);

    color: #f3a173;

    font-size: 14px;
}

.contact-map-badge strong,
.contact-map-badge small {
    display: block;
}

.contact-map-badge strong {
    color: var(--core-white);

    font-size: 10.5px;
    font-weight: 800;
}

.contact-map-badge small {
    margin-top: 2px;

    color:
        rgb(255 255 255 / 66%);

    font-size: 8.5px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {

    .contact-option-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .contact-location-layout {
        grid-template-columns:
            minmax(280px, 0.85fr)
            minmax(450px, 1.15fr);

        gap: 42px;
    }

}


@media (max-width: 991.98px) {

    .contact-location-section {
        padding: 68px 0;
    }

    .contact-location-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .contact-location-content {
        max-width: 720px;
    }

    .contact-map-wrap {
        max-width: 860px;
    }

}


@media (max-width: 767.98px) {

    .contact-option-grid {
        grid-template-columns: 1fr;
    }

    .contact-option-card {
        min-height: auto;
    }

    .contact-location-section {
        padding: 58px 0;
    }

    .contact-map {
        height: 350px;

        border-radius: 14px;
    }

    .contact-map-wrap::before {
        top: -9px;
        right: -9px;

        width: 75px;
        height: 75px;
    }

}


@media (max-width: 479.98px) {

    .contact-location-content h2 {
        font-size: 29px;
    }

    .contact-location-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-location-primary,
    .contact-location-secondary {
        width: 100%;
    }

    .contact-map {
        height: 290px;
    }

    .contact-map-badge {
        right: 10px;
        bottom: 10px;

        padding: 9px 11px;
    }

}


@media (prefers-reduced-motion: reduce) {

    .contact-option-card,
    .contact-option-primary,
    .contact-option-secondary,
    .contact-location-primary,
    .contact-location-secondary {
        transition: none;
    }

}





/* =========================================================
   CONTACT PAGE HERO
========================================================= */

.contact-page-hero {
    position: relative;

    background:
        linear-gradient(
            135deg,
            var(--core-primary-dark),
            var(--core-primary)
        );

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-page-hero .core-page-eyebrow,
.contact-page-hero .core-page-hero-content h1 {
    color: var(--core-white);
}

.contact-page-hero .core-page-hero-content > p {
    color: rgb(255 255 255 / 82%);
}

.contact-page-hero .core-page-hero-tags span {
    border-color: rgb(255 255 255 / 22%);
    background: rgb(255 255 255 / 12%);
    color: var(--core-white);
}

.contact-page-hero .core-page-hero-tags i {
    color: var(--core-yellow);
}



/* =========================================================
   FINAL CTA
========================================================= */

.core-page-final-cta {
    padding: 70px 0;
}

.core-page-final-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
    padding: 44px;
    border-radius: 20px;
    background:
        radial-gradient(
            circle at 88% 10%,
            rgb(244 201 93 / 24%),
            transparent 27%
        ),
        var(--core-primary);
}

.core-page-final-inner > div:first-child {
    max-width: 690px;
}

.core-page-final-inner > div:first-child > span {
    color: var(--core-yellow);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.core-page-final-inner h2 {
    margin: 8px 0 10px;
    color: var(--core-white);
    font-size: clamp(25px, 3vw, 37px);
    font-weight: 850;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.core-page-final-inner p {
    margin: 0;
    color: rgb(255 255 255 / 75%);
    font-size: 10px;
    line-height: 1.75;
}

.core-page-final-actions {
    display: flex;
    gap: 9px;
    flex: 0 0 auto;
    flex-wrap: wrap;
}

.core-page-primary-action,
.core-page-secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 45px;
    padding: 11px 18px;
    border-radius: 9px;
    font-size: 10px;
    font-weight: 850;
    transition:
        transform 160ms ease,
        background 160ms ease,
        color 160ms ease;
}

.core-page-primary-action {
    border: 1px solid var(--core-white);
    background: var(--core-white);
    color: var(--core-primary);
}

.core-page-secondary-action {
    border: 1px solid rgb(255 255 255 / 45%);
    color: var(--core-white);
}

.core-page-primary-action:hover,
.core-page-secondary-action:hover {
    transform: translateY(-2px);
}

.core-page-secondary-action:hover {
    background: var(--core-white);
    color: var(--core-primary);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {
    .core-about-grid,
    .core-contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .core-story-layout,
    .core-contact-process-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .core-page-final-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    .core-page .site-container {
        width: min(100% - 28px, 1180px);
    }

    .core-page-hero-content h1 {
        font-size: clamp(29px, 9vw, 41px);
    }

    .core-page-section,
    .core-story-section,
    .core-contact-process,
    .core-page-final-cta {
        padding: 55px 0;
    }

    .core-section-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .core-about-grid,
    .core-contact-grid,
    .core-story-list,
    .core-contact-checklist {
        grid-template-columns: 1fr;
    }

    .core-info-card,
    .core-contact-card {
        padding: 24px;
    }

    .core-page-final-inner {
        padding: 31px 22px;
    }

    .core-page-final-actions {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .core-page-primary-action,
    .core-page-secondary-action {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .core-page-hero-tags {
        align-items: flex-start;
        flex-direction: column;
    }

    .core-page-hero-tags span {
        width: fit-content;
    }
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.pkg-hero-offer-link:hover > a,

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.pkg-hero-offer-link:focus-within > a,

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.pkg-hero-offer-link:hover > i,

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.pkg-hero-offer-link:focus-within > i {
    color: #ffffff !important;
}



/* =========================================================
   ESTIMATE HERO PANEL
========================================================= */

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.estimate-home-hero-card-header small {
    color: #7b8782 !important;
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.estimate-home-hero-card-header h2 {
    color: #ffffff !important;
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.estimate-home-hero-calculator-list a {
    color: #1a1a1a !important;
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.estimate-home-hero-calculator-list strong {
    color: #1a1a1a !important;
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.estimate-home-hero-calculator-list small {
    color: #727f79 !important;
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.estimate-home-hero-calculator-list > a > i {
    color: #0f6e56 !important;
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.estimate-home-list-icon {
    background: rgba(15, 110, 86, 0.09);
    color: #0f6e56 !important;
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.estimate-home-list-icon i {
    color: #0f6e56 !important;
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.estimate-home-hero-note p {
    color: #65716c !important;
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.estimate-home-hero-note > i {
    color: #e07a3f !important;
}



/* =========================================================
   ABOUT INTRODUCTION
========================================================= */

.about-introduction-section {
    padding: 76px 0 80px;

    background: #ffffff;
}

.about-introduction-header {
    max-width: 1140px;

    margin-inline: auto;

    text-align: center;
}

.about-introduction-eyebrow {
    display: block;

    margin-bottom: 6px;

    color: #68766f;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;

    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.about-introduction-header h2 {
    margin: 0;

    color: #17372e;

    font-size: clamp(33px, 4.5vw, 52px);
    font-weight: 500;
    line-height: 1.16;

    letter-spacing: -0.035em;
    text-transform: uppercase;
}


.about-introduction-tagline {
    display: block;

    margin-top: 8px;
    margin-bottom: 25px;

    color: #ed7a3d;

    font-size: 17px;
    font-weight: 800;
    line-height: 1.4;
}

.about-introduction-header p {
    max-width: 1060px;

    margin: 0 auto 11px;

    color: #596a63;

    font-size: 14px;
    line-height: 1.85;
}


/* =========================================================
   ABOUT COMPANY
========================================================= */

.about-company-section {
    padding: 88px 0;

    background: #f6f8f7;
}

.about-company-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;
    gap: 68px;
}


/* Image */

.about-company-media {
    position: relative;
}

.about-company-media::before {
    content: "";

    position: absolute;
    top: -16px;
    left: -16px;

    width: 110px;
    height: 110px;

    border-top:
        3px solid
        #ed7a3d;

    border-left:
        3px solid
        #ed7a3d;

    border-radius: 18px 0 0 0;
}

.about-company-media {
    position: relative;

    width: 100%;
    max-width: 620px;

    margin-inline: auto;
}

.about-company-media img {
    position: relative;
    z-index: 1;

    width: 100%;
    height: 340px;

    display: block;

    object-fit: cover;
    object-position: center;

    border-radius: 16px;

    box-shadow:
        0 18px 42px
        rgba(11, 41, 34, 0.13);
}

.about-company-image-badge {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 2;

    display: grid;
    gap: 2px;

    padding: 14px 18px;

    border-radius: 11px;

    background:
        rgba(11, 41, 34, 0.93);

    color: #ffffff;

    box-shadow:
        0 12px 30px
        rgba(11, 41, 34, 0.22);

    backdrop-filter: blur(8px);
}

.about-company-image-badge span {
    color: #f3a57c;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-company-image-badge strong {
    font-size: 12px;
    font-weight: 800;
}


/* Content */

.about-company-content {
    min-width: 0;
}

.about-company-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 13px;

    color: #0f6f58;

    font-size: 11px;
    font-weight: 850;
    line-height: 1.4;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-company-eyebrow::before {
    content: "";

    width: 28px;
    height: 2px;

    border-radius: 10px;

    background: #ed7a3d;
}

.about-company-content h2 {
    max-width: 650px;

    margin: 0 0 22px;

    color: #17372e;

    font-size: clamp(31px, 4vw, 47px);
    font-weight: 850;
    line-height: 1.14;

    letter-spacing: -0.035em;
}

.about-company-content > p {
    margin: 0 0 13px;

    color: #596a63;

    font-size: 13px;
    line-height: 1.82;
}


/* Highlights */

.about-company-highlights {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 13px;

    margin-top: 29px;
}

.about-company-highlights > div {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    min-width: 0;

    padding: 14px;

    border:
        1px solid
        rgba(15, 111, 88, 0.12);

    border-radius: 12px;

    background: #ffffff;
}

.about-company-highlights i {
    width: 37px;
    height: 37px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 37px;

    border-radius: 9px;

    background: #eaf3f0;
    color: #0f6f58;

    font-size: 15px;
}

.about-company-highlights span {
    display: grid;
    gap: 3px;
}

.about-company-highlights strong {
    color: #17372e;

    font-size: 11px;
    font-weight: 800;
    line-height: 1.4;
}

.about-company-highlights small {
    color: #74837d;

    font-size: 9.5px;
    line-height: 1.5;
}


/* Buttons */

.about-company-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;

    margin-top: 29px;
}

.about-company-primary-action,
.about-company-secondary-action {
    min-height: 47px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 12px 18px;

    border-radius: 9px;

    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.about-company-primary-action {
    border:
        1px solid
        #0f6f58;

    background: #0f6f58;
    color: #ffffff;
}

.about-company-primary-action:hover,
.about-company-primary-action:focus-visible {
    border-color: #0b2922;

    background: #0b2922;
    color: #ffffff;

    transform: translateY(-2px);
}

.about-company-secondary-action {
    border:
        1px solid
        rgba(15, 111, 88, 0.22);

    background: transparent;
    color: #0f6f58;
}

.about-company-secondary-action:hover,
.about-company-secondary-action:focus-visible {
    border-color: #0f6f58;

    background: #eaf3f0;
    color: #0b2922;

    transform: translateY(-2px);
}




/* =========================================================
   ABOUT FOUNDERS SECTION
========================================================= */

.about-founders-section {
    padding: 90px 0;

    background: #f6f8f7;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.about-founders-header {
    max-width: 760px;

    margin: 0 auto 54px;

    text-align: center;
}

.about-founders-header > span {
    display: inline-block;

    margin-bottom: 10px;

    color: #0f6f58;

    font-size: 11px;
    font-weight: 850;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-founders-header h2 {
    margin: 0;

    color: #17372e;

    font-size: clamp(32px, 4vw, 48px);
    font-weight: 850;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.about-founders-header p {
    max-width: 650px;

    margin: 15px auto 0;

    color: #687972;

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   FOUNDERS GRID
========================================================= */

.about-founders-grid {
    max-width: 1080px;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 54px;

    margin-inline: auto;
}


/* =========================================================
   FOUNDER CARD
========================================================= */

.about-founder-card {
    position: relative;

    padding: 0 30px 32px;

    border:
        1px solid
        rgba(15, 111, 88, 0.12);

    border-radius: 20px;

    background: #ffffff;

    text-align: center;

    box-shadow:
        0 18px 46px
        rgba(11, 41, 34, 0.08);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.about-founder-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 50%;

    width: 80px;
    height: 3px;

    border-radius: 0 0 8px 8px;

    background:
        linear-gradient(
            90deg,
            #0f6f58,
            #ed7a3d
        );

    transform: translateX(-50%);
}

.about-founder-card:hover {
    border-color:
        rgba(15, 111, 88, 0.24);

    box-shadow:
        0 24px 58px
        rgba(11, 41, 34, 0.13);

    transform: translateY(-5px);
}


/* =========================================================
   FOUNDER IMAGE
========================================================= */

.about-founder-image-wrap {
    width: 176px;
    height: 176px;

    margin:
        -1px auto 22px;

    padding: 7px;

    border:
        1px solid
        rgba(15, 111, 88, 0.14);

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #eaf3f0
        );

    transform: translateY(-20px);

    box-shadow:
        0 15px 34px
        rgba(11, 41, 34, 0.12);
}

.about-founder-image-wrap img {
    width: 100%;
    height: 100%;

    display: block;

    border-radius: 50%;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   FOUNDER CONTENT
========================================================= */

.about-founder-content {
    margin-top: -12px;
}

.about-founder-content h3 {
    margin: 0;

    color: #17372e;

    font-size: 21px;
    font-weight: 850;
    line-height: 1.3;
    letter-spacing: -0.015em;
}

.about-founder-role {
    display: block;

    margin-top: 5px;

    color: #0f6f58;

    font-size: 11px;
    font-weight: 750;
    line-height: 1.5;
}

.about-founder-content p {
    margin: 14px 0 0;

    color: #607069;

    font-size: 12px;
    line-height: 1.75;
}

.about-founder-content
.about-founder-highlight {
    margin-top: 20px;

    color: #334941;

    font-weight: 700;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 991.98px) {

    .about-founders-section {
        padding: 72px 0;
    }

    .about-founders-grid {
        gap: 28px;
    }

    .about-founder-card {
        padding-inline: 24px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .about-founders-section {
        padding: 62px 0;
    }

    .about-founders-header {
        margin-bottom: 48px;

        text-align: left;
    }

    .about-founders-grid {
        grid-template-columns: 1fr;

        gap: 54px;
    }

    .about-founder-card {
        max-width: 590px;

        margin-inline: auto;
    }

}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 479.98px) {

    .about-founders-section {
        padding: 54px 0;
    }

    .about-founders-header {
        margin-bottom: 43px;
    }

    .about-founders-header h2 {
        font-size: 30px;
    }

    .about-founder-card {
        padding:
            0 21px 27px;

        border-radius: 17px;
    }

    .about-founder-image-wrap {
        width: 150px;
        height: 150px;
    }

    .about-founder-content h3 {
        font-size: 19px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .about-founder-card {
        transition: none;
    }

}






/* =========================================================
   ABOUT TEAM SECTION
========================================================= */

.about-team-section {
    padding: 90px 0;

    background: #ffffff;
}

.about-team-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(480px, 1.18fr);

    align-items: center;
    gap: 72px;
}


/* =========================================================
   TEAM CONTENT
========================================================= */

.about-team-content {
    max-width: 540px;
}

.about-team-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 13px;

    color: #0f6f58;

    font-size: 11px;
    font-weight: 850;
    line-height: 1.4;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.about-team-eyebrow::before {
    content: "";

    width: 28px;
    height: 2px;

    border-radius: 10px;

    background: #ed7a3d;
}

.about-team-content h2 {
    margin: 0;

    color: #17372e;

    font-size: clamp(32px, 4vw, 48px);
    font-weight: 850;
    line-height: 1.14;
    letter-spacing: -0.035em;
}

.about-team-content > p {
    margin: 17px 0 0;

    color: #5d6e67;

    font-size: 13px;
    line-height: 1.8;
}

.about-team-content > p + p {
    margin-top: 10px;
}


/* =========================================================
   TEAM POINTS
========================================================= */

.about-team-points {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px 18px;

    margin-top: 26px;
}

.about-team-points span {
    display: flex;
    align-items: center;
    gap: 9px;

    min-width: 0;

    color: #344941;

    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
}

.about-team-points i {
    width: 31px;
    height: 31px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 31px;

    border-radius: 8px;

    background: #eaf3f0;
    color: #0f6f58;

    font-size: 13px;
}


/* =========================================================
   TEAM BUTTON
========================================================= */

.about-team-action {
    min-height: 47px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-top: 29px;
    padding: 12px 18px;

    border:
        1px solid
        #0f6f58;

    border-radius: 9px;

    background: #0f6f58;
    color: #ffffff;

    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;

    text-decoration: none;

    box-shadow:
        0 10px 24px
        rgba(15, 111, 88, 0.16);

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.about-team-action:hover,
.about-team-action:focus-visible {
    border-color: #0b2922;

    background: #0b2922;
    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   TEAM IMAGE
========================================================= */

.about-team-media {
    position: relative;

    min-width: 0;
}

.about-team-media::before {
    content: "";

    position: absolute;
    top: -15px;
    right: -15px;

    width: 115px;
    height: 115px;

    border-top:
        3px solid
        #ed7a3d;

    border-right:
        3px solid
        #ed7a3d;

    border-radius: 0 18px 0 0;
}

.about-team-media {
    position: relative;

    width: 100%;
    max-width: 620px;

    margin-left: auto;
}

.about-team-media img {
    position: relative;
    z-index: 1;

    width: 100%;
    height: 340px;

    display: block;

    object-fit: cover;
    object-position: center;

    border-radius: 16px;

    filter: grayscale(100%);

    box-shadow:
        0 18px 42px
        rgba(11, 41, 34, 0.13);

    transition:
        filter 0.35s ease,
        transform 0.35s ease;
}

.about-team-media:hover img {
    filter: grayscale(15%);
    transform: translateY(-3px);
}




/* =========================================================
   IMAGE BADGE
========================================================= */

.about-team-badge {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 2;

    display: grid;
    gap: 3px;

    min-width: 190px;

    padding: 14px 17px;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 11px;

    background:
        rgba(11, 41, 34, 0.92);

    color: #ffffff;

    box-shadow:
        0 13px 32px
        rgba(11, 41, 34, 0.24);

    backdrop-filter: blur(8px);
}

.about-team-badge strong {
    color: #ffffff;

    font-size: 12px;
    font-weight: 850;
    line-height: 1.4;
}

.about-team-badge span {
    color:
        rgba(255, 255, 255, 0.66);

    font-size: 9px;
    line-height: 1.5;
}


.about-page-hero {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}



.about-image-placeholder {
    width: 100%;
    min-height: 360px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;

    border:
        1px dashed
        rgba(15, 111, 88, 0.28);

    border-radius: 18px;

    background: #eef5f2;
    color: #66776f;

    text-align: center;
}

.about-image-placeholder i {
    color: #0f6f58;
    font-size: 34px;
}

.about-image-placeholder span {
    font-size: 12px;
    font-weight: 700;
}

.about-team-placeholder {
    aspect-ratio: 16 / 9;
    min-height: 280px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .about-team-section {
        padding: 72px 0;
    }

    .about-team-layout {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .about-team-content {
        max-width: 720px;
    }

    .about-team-media {
        max-width: 820px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .about-team-section {
        padding: 60px 0;
    }

    .about-team-layout {
        gap: 37px;
    }

    .about-team-content h2 {
        font-size: 34px;
    }

    .about-team-media::before {
        top: -10px;
        right: -10px;

        width: 80px;
        height: 80px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 479.98px) {

    .about-team-section {
        padding: 52px 0;
    }

    .about-team-content h2 {
        font-size: 29px;
    }

    .about-team-points {
        grid-template-columns: 1fr;
    }

    .about-team-action {
        width: 100%;
    }

    .about-team-media img {
        aspect-ratio: 4 / 3;

        border-radius: 15px;
    }

    .about-team-badge {
        right: 11px;
        bottom: 11px;

        min-width: 0;

        padding: 11px 13px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .about-team-action,
    .about-team-media img {
        transition: none;
    }

}



/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .about-introduction-section {
        padding: 64px 0;
    }

    .about-company-section {
        padding: 70px 0;
    }

    .about-company-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-company-media {
        max-width: 760px;
    }

}


@media (max-width: 767.98px) {

    .about-introduction-section {
        padding: 53px 0;
    }

    .about-introduction-header {
        text-align: left;
    }

    .about-introduction-header h2 {
        font-size: 35px;
    }

    .about-introduction-tagline {
        font-size: 14px;
    }

    .about-introduction-header p {
        font-size: 13px;
        line-height: 1.75;
    }

    .about-company-section {
        padding: 58px 0;
    }

    .about-company-layout {
        gap: 38px;
    }

    .about-company-media::before {
        top: -10px;
        left: -10px;

        width: 80px;
        height: 80px;
    }

    .about-company-content h2 {
        font-size: 34px;
    }

    .about-company-highlights {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 479.98px) {

    .about-introduction-header h2 {
        font-size: 30px;
    }

    .about-company-content h2 {
        font-size: 29px;
    }

    .about-company-image-badge {
        right: 12px;
        bottom: 12px;

        padding: 11px 13px;
    }

    .about-company-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .about-company-primary-action,
    .about-company-secondary-action {
        width: 100%;
    }

}