
:root {
    --service-orange: #df7926;
    --service-orange-dark: #c96519;
    --service-dark: #2e2d2c;
    --service-text: #4f4d4b;
    --service-muted: #77736f;
    --service-bg: #f7f6f4;
    --service-soft: #efeeec;
    --service-white: #ffffff;
    --service-line: rgba(46,45,44,.12);
    --service-shadow: 0 22px 55px rgba(29,27,25,.12);
}

/* Reset local to the SEO service pages */
.service-page,
.service-page * {
    box-sizing: border-box;
}

.service-page {
    overflow: hidden;
    color: var(--service-dark);
    background: #fff;
}

.service-page img {
    max-width: 100%;
}

.service-kicker {
    margin: 0 0 10px;
    color: var(--service-orange);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

/* -----------------------------------------------------
   HERO
----------------------------------------------------- */

.service-hero {
    padding: 20px 0 0;
}

.service-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 20px;
    color: var(--service-muted);
    font-size: 14px;
}

.service-breadcrumbs a {
    color: var(--service-text);
    text-decoration: none;
}

.service-breadcrumbs a:hover,
.service-breadcrumbs a:focus-visible {
    color: var(--service-orange);
    text-decoration: underline;
}

.service-hero-card {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    background: #242321;
    box-shadow: var(--service-shadow);
}

.service-hero-media,
.service-hero-media img,
.service-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.service-hero-media img {
    display: block;
    object-fit: cover;
    object-position: center;
}

.service-hero-shade {
    background:
        linear-gradient(90deg, rgba(22,21,20,.89) 0%, rgba(22,21,20,.74) 42%, rgba(22,21,20,.18) 75%, rgba(22,21,20,.08) 100%),
        linear-gradient(0deg, rgba(22,21,20,.28), transparent 55%);
}

.service-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    width: min(720px, 70%);
    min-height: 610px;
    flex-direction: column;
    justify-content: center;
    padding: 70px 74px;
    color: #fff;
}

.service-hero-content .service-kicker {
    color: #ffa15d;
}

.service-hero-content h1 {
    max-width: 720px;
    margin: 0;
    color: #fff;
    font-size: clamp(44px, 5.3vw, 76px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -1.8px;
    text-wrap: balance;
}

.service-hero-lead {
    max-width: 650px;
    margin: 26px 0 0;
    color: rgba(255,255,255,.88);
    font-size: 19px;
    line-height: 1.65;
}

.service-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.service-btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition: transform .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease;
}

.service-btn:hover,
.service-btn:focus-visible {
    transform: translateY(-2px);
}

.service-btn-primary {
    color: #fff;
    background: var(--service-orange);
    border-color: var(--service-orange);
}

.service-btn-primary:hover,
.service-btn-primary:focus-visible {
    color: #fff;
    background: var(--service-orange-dark);
    border-color: var(--service-orange-dark);
}

.service-btn-ghost {
    color: #fff;
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.55);
    backdrop-filter: blur(6px);
}

.service-btn-ghost:hover,
.service-btn-ghost:focus-visible {
    color: var(--service-dark);
    background: #fff;
    border-color: #fff;
}

.service-process {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: -1px 42px 0;
    background: #fff;
    box-shadow: 0 18px 45px rgba(29,27,25,.08);
}

.service-process-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    min-height: 104px;
    padding: 24px 28px;
    align-items: center;
    border-right: 1px solid var(--service-line);
}

.service-process-item:last-child {
    border-right: 0;
}

.service-process-number {
    color: var(--service-orange);
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
}

.service-process-label {
    color: var(--service-dark);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

/* -----------------------------------------------------
   INTRO
----------------------------------------------------- */

.service-intro {
    padding: 92px 0 82px;
}

.service-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 80px;
    align-items: start;
}

.service-intro-heading h2 {
    max-width: 620px;
    margin: 0;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -.8px;
}

.service-intro-copy {
    padding-top: 28px;
    border-top: 1px solid var(--service-line);
}

.service-intro-copy p {
    margin: 0;
    color: var(--service-text);
    font-size: 19px;
    line-height: 1.8;
}

/* -----------------------------------------------------
   SCOPE
----------------------------------------------------- */

.service-scope {
    padding: 82px 0 94px;
    background: var(--service-bg);
}

.service-scope-heading {
    max-width: 820px;
    margin: 0 0 44px;
}

.service-scope-heading h2 {
    margin: 0 0 14px;
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 400;
    line-height: 1.05;
}

.service-scope-heading > p:last-child {
    max-width: 720px;
    margin: 0;
    color: var(--service-muted);
    font-size: 17px;
    line-height: 1.7;
}

.service-sections-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.service-scope-card {
    position: relative;
    min-height: 100%;
    padding: 38px;
    background: #fff;
    border: 1px solid rgba(46,45,44,.08);
    box-shadow: 0 12px 35px rgba(31,29,27,.055);
}

.service-card-index {
    display: block;
    margin-bottom: 26px;
    color: var(--service-orange);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
}

.service-scope-card h3 {
    margin: 0 0 14px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.18;
}

.service-scope-card > p {
    margin: 0;
    color: var(--service-text);
    font-size: 16px;
    line-height: 1.7;
}

.service-check-list {
    display: grid;
    gap: 12px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.service-check-list li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 10px;
    color: var(--service-dark);
    font-size: 15px;
    line-height: 1.45;
}

.service-check {
    display: inline-flex;
    width: 21px;
    height: 21px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--service-orange);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
}

.service-scope-card-accent {
    color: #fff;
    background: var(--service-dark);
    border-color: var(--service-dark);
}

.service-scope-card-accent .service-card-index {
    color: #ffa15d;
}

.service-scope-card-accent h3 {
    color: #fff;
}

.service-scope-card-accent > p {
    color: rgba(255,255,255,.74);
}

/* -----------------------------------------------------
   REALIZATIONS
----------------------------------------------------- */

.service-gallery-section {
    padding: 92px 0;
    background: #fff;
}

.service-gallery-heading {
    display: flex;
    gap: 40px;
    margin-bottom: 34px;
    align-items: end;
    justify-content: space-between;
}

.service-gallery-heading h2 {
    margin: 0;
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 400;
    line-height: 1.08;
}

.service-text-link {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    color: var(--service-orange);
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
}

.service-text-link:hover,
.service-text-link:focus-visible {
    text-decoration: underline;
}

.service-gallery {
    display: grid;
    grid-template-columns: 1.3fr .85fr .85fr;
    gap: 16px;
}

.service-gallery-card {
    position: relative;
    display: block;
    min-height: 420px;
    overflow: hidden;
    background: #ddd;
}

.service-gallery-card:nth-child(2),
.service-gallery-card:nth-child(3) {
    min-height: 420px;
}

.service-gallery-card img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.service-gallery-overlay {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 11px 14px;
    color: var(--service-dark);
    background: rgba(255,255,255,.94);
    font-size: 13px;
    font-weight: 900;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease;
}

.service-gallery-card:hover img {
    transform: scale(1.045);
}

.service-gallery-card:hover .service-gallery-overlay,
.service-gallery-card:focus-visible .service-gallery-overlay {
    opacity: 1;
    transform: none;
}

/* -----------------------------------------------------
   WHY
----------------------------------------------------- */

.service-why {
    padding: 0 0 92px;
}

.service-why-box {
    padding: 54px 58px;
    background: var(--service-soft);
    border-top: 5px solid var(--service-orange);
}

.service-why-box > div:first-child {
    max-width: 820px;
}

.service-why-box h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.08;
}

.service-why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-top: 42px;
    padding-top: 30px;
    border-top: 1px solid rgba(46,45,44,.14);
}

.service-why-item {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.service-why-item strong {
    font-size: 18px;
}

.service-why-item span {
    color: var(--service-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* -----------------------------------------------------
   RELATED
----------------------------------------------------- */

.service-related {
    padding: 86px 0;
    color: #fff;
    background: #292826;
}

.service-related .service-kicker {
    color: #ffa15d;
}

.service-related-heading h2 {
    margin: 0 0 36px;
    color: #fff;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 400;
}

.service-related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.service-related-card {
    position: relative;
    display: flex;
    min-height: 165px;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    color: #fff;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.13);
    text-decoration: none;
    transition: background-color .22s ease, transform .22s ease;
}

.service-related-card:hover,
.service-related-card:focus-visible {
    color: #fff;
    background: var(--service-orange);
    border-color: var(--service-orange);
    transform: translateY(-3px);
}

.service-related-card span {
    color: rgba(255,255,255,.58);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-related-card strong {
    max-width: 210px;
    font-size: 19px;
    line-height: 1.25;
}

.service-related-card i {
    font-style: normal;
    font-size: 22px;
}

/* -----------------------------------------------------
   CTA
----------------------------------------------------- */

.service-final-cta {
    padding: 76px 0;
}

.service-final-cta-box {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
    gap: 50px;
    padding: 48px 54px;
    align-items: center;
    color: #fff;
    background:
        linear-gradient(135deg, #33312f 0%, #262523 100%);
}

.service-final-cta-box .service-kicker {
    color: #ffa15d;
}

.service-final-cta-box h2 {
    max-width: 800px;
    margin: 0;
    color: #fff;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.08;
}

.service-final-cta-box p:not(.service-kicker) {
    max-width: 760px;
    margin: 16px 0 0;
    color: rgba(255,255,255,.72);
    line-height: 1.65;
}

.service-final-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
}

.service-phone-link {
    display: inline-flex;
    min-height: 52px;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255,255,255,.35);
    font-weight: 900;
    text-decoration: none;
}

.service-phone-link:hover,
.service-phone-link:focus-visible {
    color: #fff;
    border-color: #fff;
}

/* -----------------------------------------------------
   RESPONSIVE
----------------------------------------------------- */

@media (max-width: 1180px) {
    .service-hero-content {
        width: 78%;
        padding: 58px 52px;
    }

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

@media (max-width: 900px) {
    .service-hero {
        padding-top: 14px;
    }

    .service-hero-card {
        min-height: 620px;
    }

    .service-hero-shade {
        background:
            linear-gradient(0deg, rgba(20,19,18,.9) 0%, rgba(20,19,18,.67) 55%, rgba(20,19,18,.22) 100%);
    }

    .service-hero-content {
        width: 100%;
        min-height: 620px;
        justify-content: flex-end;
        padding: 48px 38px;
    }

    .service-hero-content h1 {
        font-size: clamp(38px, 9vw, 58px);
    }

    .service-process {
        grid-template-columns: 1fr;
        margin: 0;
    }

    .service-process-item {
        min-height: 80px;
        border-right: 0;
        border-bottom: 1px solid var(--service-line);
    }

    .service-process-item:last-child {
        border-bottom: 0;
    }

    .service-intro {
        padding: 66px 0;
    }

    .service-intro-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .service-intro-copy {
        padding-top: 22px;
    }

    .service-sections-grid {
        grid-template-columns: 1fr;
    }

    .service-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .service-gallery-card:first-child {
        grid-column: 1 / -1;
    }

    .service-why-grid {
        grid-template-columns: 1fr;
    }

    .service-final-cta-box {
        grid-template-columns: 1fr;
    }

    .service-final-actions {
        align-items: flex-start;
    }

    .service-final-actions .service-btn,
    .service-phone-link {
        min-width: 260px;
    }
}

@media (max-width: 620px) {
    .service-breadcrumbs {
        margin-bottom: 14px;
        font-size: 12px;
    }

    .service-hero-card,
    .service-hero-content {
        min-height: 560px;
    }

    .service-hero-content {
        padding: 38px 24px;
    }

    .service-hero-content h1 {
        font-size: 37px;
        letter-spacing: -.8px;
    }

    .service-hero-lead {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.55;
    }

    .service-hero-actions {
        width: 100%;
        flex-direction: column;
        margin-top: 24px;
    }

    .service-btn {
        width: 100%;
    }

    .service-process-item {
        grid-template-columns: 48px 1fr;
        padding: 20px;
    }

    .service-intro {
        padding: 52px 0;
    }

    .service-intro-heading h2,
    .service-scope-heading h2,
    .service-gallery-heading h2,
    .service-why-box h2,
    .service-related-heading h2,
    .service-final-cta-box h2 {
        font-size: 32px;
    }

    .service-intro-copy p {
        font-size: 16px;
    }

    .service-scope {
        padding: 56px 0 62px;
    }

    .service-scope-card {
        padding: 28px 22px;
    }

    .service-scope-card h3 {
        font-size: 24px;
    }

    .service-gallery-section {
        padding: 62px 0;
    }

    .service-gallery-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .service-gallery {
        grid-template-columns: 1fr;
    }

    .service-gallery-card,
    .service-gallery-card:nth-child(2),
    .service-gallery-card:nth-child(3) {
        min-height: 300px;
    }

    .service-gallery-card:first-child {
        grid-column: auto;
    }

    .service-gallery-overlay {
        opacity: 1;
        transform: none;
    }

    .service-why {
        padding-bottom: 60px;
    }

    .service-why-box {
        padding: 34px 22px;
    }

    .service-related {
        padding: 60px 0;
    }

    .service-related-grid {
        grid-template-columns: 1fr;
    }

    .service-related-card {
        min-height: 135px;
    }

    .service-final-cta {
        padding: 48px 0;
    }

    .service-final-cta-box {
        padding: 34px 22px;
    }

    .service-final-actions {
        width: 100%;
    }

    .service-final-actions .service-btn,
    .service-phone-link {
        width: 100%;
        min-width: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-btn,
    .service-gallery-card img,
    .service-gallery-overlay,
    .service-related-card {
        transition: none !important;
    }
}
