:root {
    --font-family: Arial, Helvetica, sans-serif;
    --green: #7f3219;
    --green2: #9f3f1d;
    --orange: #e86519;
    --orange2: #c94b0d;
    --cream: #f7f3ef;
    --pale: #fbf0e8;
    --text: #211b18;
    --muted: #6d625d;
    --line: #e5d9d2;
    --white: #fff;
    --max: 1180px;
    --shadow: 0 12px 35px rgba(22, 42, 30, .1)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-family)
}

body {
    margin: 0;
    color: var(--text);
    background: #fff;
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6
}

img {
    display: block;
    max-width: 100%
}

a {
    color: inherit;
    text-decoration: none
}

h1,
h2,
h3,
p {
    margin-top: 0
}

h1,
h2,
h3 {
    line-height: 1.15;
    font-family: var(--font-family);
    letter-spacing: normal
}

button,
input,
select,
textarea,
option,
summary {
    font-family: var(--font-family)
}

h1 {
    font-size: clamp(45px, 6vw, 72px)
}

h2 {
    font-size: clamp(32px, 4vw, 48px)
}

h3 {
    font-size: 21px
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: auto
}

.narrow {
    max-width: 850px;
    margin: 0
}

.section {
    padding: 90px 0
}

.kicker {
    display: block;
    color: var(--orange2);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 13px
}

.kicker.light {
    color: #f2b75d
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border: 2px solid var(--orange);
    border-radius: 5px;
    background: var(--orange);
    color: #172219;
    font-weight: 800;
    font-size: 14px;
    transition: .2s
}

.btn:hover {
    background: var(--orange2);
    border-color: var(--orange2);
    transform: translateY(-1px)
}

.btn-outline {
    background: transparent;
    border-color: var(--green);
    color: var(--green)
}

.btn-outline:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff
}

.btn-white {
    background: #fff;
    border-color: #fff;
    color: var(--green)
}

.btn-white:hover {
    background: var(--cream);
    border-color: var(--cream)
}

.btn-small {
    min-height: 44px;
    padding: 0 18px
}

.full {
    width: 100%
}

.text-link {
    font-weight: 800;
    color: var(--green)
}

.topbar {
    background: var(--green);
    color: #dfe9e2;
    font-size: 12px
}

.topbar .container {
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.topbar a {
    font-weight: 800;
    color: #fff
}

.header {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 20
}

.header-inner {
    height: 82px;
    display: flex;
    align-items: center;
    gap: 30px
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-right: auto
}

.logo>span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 5px;
    background: var(--green);
    color: var(--orange);
    font-size: 25px;
    font-weight: 900
}

.logo div {
    display: flex;
    flex-direction: column;
    line-height: 1.05
}

.logo b {
    font-size: 25px;
    color: var(--green)
}

.logo small {
    font-size: 9px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 4px
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px
}

.nav-group {
    position: relative;
}

.nav-group > summary {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 82px;
    cursor: pointer;
    list-style: none;
    color: #384039;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.nav-group > summary::-webkit-details-marker { display: none; }
.nav-group > summary span { transition: transform .18s ease; }
.nav-group[open] > summary span { transform: rotate(180deg); }

.nav-dropdown {
    position: absolute;
    z-index: 100;
    top: calc(100% - 1px);
    left: 50%;
    display: grid;
    width: 310px;
    gap: 3px;
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(22, 42, 30, .18);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translate(-50%, -8px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.nav-group:hover > .nav-dropdown,
.nav-group:focus-within > .nav-dropdown,
.nav-group[open] > .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav-dropdown a {
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    min-height: 52px;
    padding: 8px 10px;
    border: 0;
    border-radius: 8px;
    white-space: normal;
    text-decoration: none;
}

.nav-dropdown a:hover { background: var(--pale); }
.nav-dropdown a i { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--green); color: #fff; font-style: normal; font-size: 12px; }
.nav-dropdown a span { display: grid; gap: 2px; }
.nav-dropdown a b { font-size: 14px; }
.nav-dropdown a small { color: var(--muted); font-size: 11px; font-weight: 500; }
.nav-dropdown .menu-feature { border-bottom: 1px solid var(--line); }
.nav-dropdown .menu-feature i { background: var(--orange2); }
.nav-explore { width: 250px; }

.nav a {
    font-size: 14px;
    font-weight: 700;
    color: #384039;
    padding: 30px 0 26px;
    border-bottom: 3px solid transparent
}

.nav a:hover,
.nav a.active {
    color: var(--green);
    border-color: var(--orange)
}

.btn-header {
    min-height: 44px;
    padding: 0 18px
}

.nav-toggle {
    display: none;
    border: 0;
    background: none;
    padding: 5px
}

.nav-toggle i {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green);
    margin: 5px
}

.nav-toggle em {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.home-hero {
    background: var(--cream);
    padding: 70px 0
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 70px;
    align-items: center
}

.hero-copy h1 {
    color: var(--green);
    margin: 0 0 22px;
    max-width: 650px
}

.hero-copy>p {
    font-size: 19px;
    color: var(--muted);
    max-width: 630px
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin: 32px 0
}

.quick-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 28px;
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
    font-size: 13px;
    font-weight: 700
}

.quick-trust li:before {
    content: "✓";
    color: var(--green);
    background: #dfe9e2;
    border-radius: 50%;
    padding: 3px 5px;
    margin-right: 7px
}

.hero-photo {
    position: relative
}

.hero-photo>img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 7px;
    box-shadow: var(--shadow)
}

.review-badge {
    position: absolute;
    left: -30px;
    bottom: 30px;
    background: #fff;
    border-radius: 5px;
    padding: 18px 22px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px
}

.review-badge b {
    font-size: 28px;
    color: var(--green)
}

.review-badge span {
    width: 90px;
    font-size: 12px;
    line-height: 1.25;
    color: var(--muted)
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 38px
}

.section-heading h2 {
    color: var(--green);
    margin-bottom: 0
}

.section-heading p {
    color: var(--muted);
    margin: 8px 0 0
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.service-cards>a {
    padding: 30px 25px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #fff;
    transition: .2s
}

.service-cards>a:hover {
    box-shadow: var(--shadow);
    border-color: #cad3cc;
    transform: translateY(-3px)
}

.service-cards .icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 5px;
    background: var(--pale);
    color: var(--green);
    font-size: 24px
}

.service-cards h3 {
    color: var(--green);
    margin: 24px 0 10px
}

.service-cards p {
    color: var(--muted);
    font-size: 14px;
    min-height: 90px
}

.service-cards b {
    font-size: 13px;
    color: var(--green)
}

.why {
    background: var(--pale)
}

.split {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 80px;
    align-items: center
}

.photo-stack {
    position: relative
}

.photo-stack img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 7px
}

.photo-stack>span {
    position: absolute;
    right: -20px;
    bottom: 30px;
    background: var(--orange);
    color: var(--green);
    padding: 17px 22px;
    font-size: 13px;
    line-height: 1.1;
    border-radius: 4px
}

.photo-stack b {
    font-size: 27px
}

.why-copy h2 {
    color: var(--green)
}

.why-copy>p {
    color: var(--muted);
    font-size: 17px
}

.tick-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 27px 0 32px
}

.tick-grid span {
    font-size: 14px;
    font-weight: 700
}

.tick-grid span::first-letter {
    color: var(--green)
}

.work-preview {
    background: #fff
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.work-grid a {
    border: 1px solid var(--line);
    border-radius: 7px;
    overflow: hidden;
    background: #fff
}

.work-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover
}

.work-grid span,
.work-grid h3 {
    display: block;
    margin-left: 20px;
    margin-right: 20px
}

.work-grid span {
    margin-top: 18px;
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .1em
}

.work-grid h3 {
    color: var(--green);
    margin-top: 5px;
    margin-bottom: 20px
}

.coverage {
    padding: 80px 0;
    background: var(--green);
    color: #fff
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 80px;
    align-items: center
}

.coverage h2 {
    margin-bottom: 20px
}

.coverage p {
    color: #cbd9d0;
    max-width: 650px
}

.area-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.area-list span {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, .18);
    font-size: 13px
}

.cta {
    background: var(--orange);
    padding: 55px 0
}

.cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px
}

.cta h2 {
    color: var(--green);
    margin: 0 0 5px;
    font-size: 35px
}

.cta p {
    margin: 0;
    color: #3f4b42
}

.cta .container>div:last-child {
    display: flex;
    align-items: center;
    gap: 25px
}

.cta-phone {
    font-size: 19px;
    font-weight: 800;
    color: var(--green);
    text-decoration: underline
}

.footer {
    background: #10271d;
    color: #c6d3ca;
    padding: 65px 0 25px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
    gap: 55px
}

.footer-grid>div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px
}

.footer-logo b {
    color: #fff
}

.footer-logo>span {
    background: var(--orange);
    color: var(--green)
}

.footer-logo small {
    color: #aebdb3
}

.footer-grid p {
    font-size: 13px;
    max-width: 280px;
    margin-top: 15px
}

.footer h3 {
    color: #fff;
    font-size: 14px;
    letter-spacing: 0;
    margin-bottom: 10px
}

.footer a,
.footer span {
    font-size: 13px
}

.footer a:hover {
    color: #fff
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 45px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between
}

.mobile-quote {
    display: none
}

.page-banner {
    background: var(--green);
    color: #fff;
    padding: 75px 0
}

.page-banner h1 {
    margin: 0 0 18px
}

.page-banner p {
    font-size: 18px;
    color: #cbd9d0;
    max-width: 720px;
    margin: 0
}

.service-list .container {
    display: flex;
    flex-direction: column;
    gap: 35px
}

.service-list article {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    border: 1px solid var(--line);
    border-radius: 7px;
    overflow: hidden
}

.service-list article>div {
    padding: 45px
}

.service-list article>div>span {
    font-size: 11px;
    font-weight: 800;
    color: var(--orange2)
}

.service-list h2 {
    font-size: 36px;
    color: var(--green);
    margin: 8px 0 15px
}

.service-list p {
    color: var(--muted)
}

.service-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    padding: 0;
    list-style: none;
    margin: 22px 0
}

.service-list li {
    font-size: 13px;
    font-weight: 700
}

.service-list li:before {
    content: "✓";
    color: var(--green);
    margin-right: 6px
}

.service-list img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover
}

.portfolio-section {
    background: var(--cream)
}

.portfolio-toolbar {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ccd3cd;
    margin-bottom: 30px;
    color: var(--muted)
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px
}

.project-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 7px;
    overflow: hidden
}

.project-image {
    height: 340px;
    position: relative;
    overflow: hidden;
    background: #ddd
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s
}

.project-card:hover .project-image img {
    transform: scale(1.02)
}

.project-image span {
    position: absolute;
    right: 14px;
    top: 14px;
    background: var(--green);
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase
}

.project-meta {
    padding: 24px
}

.project-meta small {
    font-size: 10px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .1em
}

.project-meta h2 {
    font-size: 25px;
    color: var(--green);
    margin: 6px 0 11px
}

.project-meta p {
    color: var(--muted);
    font-size: 14px
}

.project-meta b {
    font-size: 13px;
    color: var(--green)
}

.project-featured {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1.2fr .8fr
}

.project-featured .project-image {
    height: 470px
}

.project-featured .project-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 45px
}

.loading,
.data-notice {
    grid-column: 1/-1;
    background: #fff;
    border: 1px solid var(--line);
    padding: 30px
}

.contact-hero {
    background: var(--cream);
    padding: 75px 0 65px
}

.contact-hero h1 {
    color: var(--green);
    margin: 0 0 18px
}

.contact-hero p {
    font-size: 19px;
    color: var(--muted);
    max-width: 700px
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr .7fr;
    gap: 70px;
    align-items: start
}

.contact-grid h2 {
    color: var(--green);
    font-size: 35px
}

.contact-grid>div>p {
    color: var(--muted)
}

.contact-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 30px
}

.contact-options>a {
    display: grid;
    grid-template-columns: 44px 1fr 20px;
    gap: 13px;
    align-items: start;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 6px
}

.contact-options>a:hover {
    border-color: var(--green);
    box-shadow: 0 7px 22px rgba(22, 42, 30, .08)
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--pale);
    display: grid;
    place-items: center;
    color: var(--green);
    font-weight: 900
}

.contact-options small,
.contact-options b {
    display: block
}

.contact-options small {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: .08em
}

.contact-options b {
    color: var(--green);
    font-size: 16px
}

.contact-options p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
    margin: 6px 0 0
}

.contact-options strong {
    color: var(--orange2)
}

.quote-guide {
    background: var(--green);
    color: #fff;
    padding: 32px;
    border-radius: 7px
}

.quote-guide h2 {
    color: #fff;
    margin-bottom: 25px
}

.quote-guide ol {
    list-style: none;
    padding: 0;
    margin: 0 0 27px
}

.quote-guide li {
    display: flex;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13)
}

.quote-guide li>span {
    width: 29px;
    height: 29px;
    flex: none;
    border-radius: 50%;
    background: var(--orange);
    color: var(--green);
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 800
}

.quote-guide b {
    font-size: 14px
}

.quote-guide p {
    font-size: 12px;
    color: #c7d5cc;
    margin: 3px 0 0
}

.contact-details {
    padding: 55px 0;
    background: var(--pale)
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px
}

.detail-grid small,
.detail-grid b {
    display: block
}

.detail-grid small {
    text-transform: uppercase;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: .1em
}

.detail-grid b {
    color: var(--green);
    font-size: 18px;
    margin: 5px 0
}

.detail-grid p {
    font-size: 13px;
    color: var(--muted)
}

.job-hero {
    background: var(--cream);
    padding: 55px max(20px, calc((100% - var(--max))/2)) 70px
}

.job-hero>a {
    font-size: 13px;
    font-weight: 700;
    color: var(--green)
}

.job-hero>div {
    max-width: 850px;
    margin-top: 45px
}

.job-hero .section-number {
    font-size: 11px;
    color: var(--orange2);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em
}

.job-hero h1 {
    color: var(--green);
    margin: 12px 0 20px
}

.job-hero>div>p {
    font-size: 18px;
    color: var(--muted)
}

.job-hero dl {
    display: flex;
    gap: 50px;
    border-top: 1px solid var(--line);
    padding-top: 25px;
    margin-top: 35px
}

.job-hero dt {
    font-size: 9px;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: .1em
}

.job-hero dd {
    margin: 2px 0;
    font-weight: 700
}

.stage-list {
    padding: 80px 20px
}

.stage-block {
    max-width: 1050px;
    margin: 0 auto 90px
}

.stage-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px
}

.stage-heading>span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--orange);
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 800
}

.stage-heading small {
    font-size: 9px;
    text-transform: uppercase;
    color: var(--muted)
}

.stage-heading h2 {
    font-size: 29px;
    color: var(--green);
    margin: 2px 0
}

.comparison {
    --position: 50%;
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 7px;
    background: #ddd;
    user-select: none
}

.comparison img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.comparison-after {
    position: absolute;
    inset: 0
}

.comparison-before {
    position: absolute;
    inset: 0;
    width: var(--position);
    overflow: hidden
}

.comparison-before img {
    width: min(1050px, calc(100vw - 40px));
    max-width: none
}

.comparison-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--position);
    width: 3px;
    background: #fff;
    transform: translateX(-50%);
    pointer-events: none
}

.comparison-line span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--orange);
    border: 3px solid #fff;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%);
    color: var(--green);
    font-weight: 900
}

.comparison input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize
}

.comparison-label {
    position: absolute;
    top: 15px;
    background: rgba(23, 59, 43, .9);
    color: #fff;
    padding: 6px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em
}

.label-before {
    left: 15px
}

.label-after {
    right: 15px
}

.drag-hint {
    text-align: center;
    color: var(--muted);
    font-size: 11px
}

.job-error {
    min-height: 500px;
    padding: 100px max(20px, calc((100% - var(--max))/2))
}

.service-detail-hero {
    padding: 65px 0;
    background: var(--cream)
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    align-items: center
}

.breadcrumbs {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 35px
}

.service-detail-hero h1 {
    color: var(--green);
    margin: 0 0 20px
}

.service-detail-hero p {
    color: var(--muted);
    font-size: 18px;
    max-width: 650px
}

.service-summary {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 30px;
    box-shadow: var(--shadow)
}

.service-summary h3 {
    color: var(--green)
}

.service-summary span {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px
}

.service-summary span:before {
    content: "✓";
    color: var(--green);
    font-weight: 800;
    margin-right: 8px
}

.service-body .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px
}

.service-body h2 {
    color: var(--green)
}

.service-body p {
    color: var(--muted);
    font-size: 17px
}

.included-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    list-style: none;
    padding: 0
}

.included-list li {
    padding: 14px;
    background: var(--pale);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700
}

.included-list li:before {
    content: "✓";
    margin-right: 8px;
    color: var(--green)
}

.service-note {
    padding: 25px;
    border-left: 4px solid var(--orange);
    background: var(--cream);
    margin-top: 25px
}

.service-note b {
    display: block;
    color: var(--green);
    margin-bottom: 5px
}

.service-note p {
    font-size: 14px;
    margin: 0
}

@media(max-width:960px) {
    .btn-header {
        display: none
    }

    .nav {
        gap: 20px
    }

    .hero-grid,
    .split {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .hero-photo {
        max-width: 700px
    }

    .service-cards {
        grid-template-columns: 1fr 1fr
    }

    .service-cards p {
        min-height: 0
    }

    .coverage-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr
    }

    .footer-grid>div:last-child {
        grid-column: 1/-1
    }

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

    .service-detail-grid {
        grid-template-columns: 1fr
    }

    .service-body .container {
        gap: 40px
    }
}

@media(max-width:720px) {
    body {
        padding-bottom: 58px
    }

    .container {
        width: min(100% - 30px, var(--max))
    }

    .topbar .container span {
        display: none
    }

    .topbar .container {
        justify-content: center
    }

    .header-inner {
        height: 70px
    }

    .logo b {
        font-size: 22px
    }

    .logo small {
        display: none
    }

    .logo>span {
        width: 37px;
        height: 37px
    }

    .nav-toggle {
        display: block
    }

    .nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 70px;
        background: #fff;
        border-top: 1px solid var(--line);
        box-shadow: 0 15px 25px rgba(0, 0, 0, .08);
        padding: 10px 20px 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 0
    }

    .nav-group > summary {
        min-height: 48px;
        padding: 13px;
        border-bottom: 1px solid var(--line);
    }

    .nav-dropdown,
    .nav-explore {
        position: static;
        width: 100%;
        padding: 4px 0 8px 12px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        transform: none;
    }

    .nav-group:not([open]) > .nav-dropdown {
        display: none;
    }

    .nav-dropdown a {
        min-height: 42px;
        padding: 7px 10px;
    }

    .nav.open {
        display: flex
    }

    .nav a {
        padding: 13px;
        border-bottom: 1px solid var(--line)
    }

    .section {
        padding: 65px 0
    }

    .home-hero {
        padding: 50px 0
    }

    .hero-copy h1 {
        font-size: 47px
    }

    .hero-copy>p {
        font-size: 17px
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch
    }

    .hero-photo>img {
        height: 360px
    }

    .review-badge {
        left: 12px;
        bottom: 12px
    }

    .quick-trust {
        gap: 12px
    }

    .section-heading {
        align-items: start;
        flex-direction: column
    }

    .service-cards,
    .work-grid {
        grid-template-columns: 1fr
    }

    .photo-stack img {
        height: 390px
    }

    .photo-stack>span {
        right: 10px
    }

    .tick-grid {
        grid-template-columns: 1fr
    }

    .area-list {
        grid-template-columns: 1fr 1fr
    }

    .cta .container,
    .cta .container>div:last-child {
        align-items: flex-start;
        flex-direction: column
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px
    }

    .footer-grid>div:first-child,
    .footer-grid>div:last-child {
        grid-column: 1/-1
    }

    .mobile-quote {
        display: grid;
        place-items: center;
        position: fixed;
        z-index: 50;
        left: 0;
        right: 0;
        bottom: 0;
        height: 58px;
        background: var(--orange);
        color: var(--green);
        font-weight: 900
    }

    .service-list article {
        grid-template-columns: 1fr
    }

    .service-list article>div {
        padding: 28px
    }

    .service-list img {
        min-height: 280px;
        grid-row: 1
    }

    .portfolio-grid {
        grid-template-columns: 1fr
    }

    .project-featured {
        display: block
    }

    .project-featured .project-image,
    .project-image {
        height: 300px
    }

    .project-featured .project-meta {
        padding: 24px
    }

    .contact-options {
        grid-template-columns: 1fr
    }

    .detail-grid {
        grid-template-columns: 1fr
    }

    .job-hero dl {
        gap: 20px;
        flex-wrap: wrap
    }

    .service-body .container {
        grid-template-columns: 1fr
    }

    .included-list {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        flex-direction: column;
        gap: 5px
    }

    .comparison {
        aspect-ratio: 4/3
    }

    .comparison-before img {
        width: calc(100vw - 30px)
    }
}

.service-total {
    color: var(--muted);
    font-weight: 700
}

.category-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.category-service-grid>a {
    min-height: 310px;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 7px;
    display: flex;
    flex-direction: column;
    background: #fff;
    transition: .2s
}

.category-service-grid>a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: #c8d1ca
}

.category-icon {
    width: 45px;
    height: 45px;
    border-radius: 5px;
    display: grid;
    place-items: center;
    background: var(--pale);
    color: var(--green);
    font-size: 22px
}

.category-service-grid h3 {
    color: var(--green);
    margin: 21px 0 9px
}

.category-service-grid p {
    color: var(--muted);
    font-size: 13px
}

.category-service-grid>a>b {
    margin-top: auto;
    color: var(--orange2);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.category-service-grid>a>strong {
    font-size: 13px;
    color: var(--green);
    margin-top: 7px
}

.category-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 30px 0 70px
}

.category-nav a {
    min-height: 76px;
    padding: 14px 16px;
    border: 1px solid #cfd6d0;
    border-radius: 5px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.category-nav span {
    font-size: 13px;
    font-weight: 800;
    color: var(--green)
}

.category-nav b {
    font-size: 10px;
    color: var(--muted);
    text-transform: uppercase;
    margin-top: 3px
}

.portfolio-category {
    scroll-margin-top: 20px;
    margin-bottom: 90px
}

.category-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    border-bottom: 2px solid var(--green);
    padding-bottom: 15px;
    margin-bottom: 25px
}

.category-heading .kicker {
    margin-bottom: 5px
}

.category-heading h2 {
    font-size: 34px;
    color: var(--green);
    margin: 0
}

.category-heading>strong {
    font-size: 12px;
    color: var(--muted)
}

.portfolio-category .portfolio-grid {
    grid-template-columns: repeat(3, 1fr)
}

.portfolio-category .project-card {
    display: flex;
    flex-direction: column
}

.portfolio-category .project-image {
    height: 240px
}

.portfolio-category .project-meta {
    display: flex;
    flex-direction: column;
    flex: 1
}

.portfolio-category .project-meta h3 {
    font-size: 21px;
    color: var(--green);
    margin: 6px 0 10px
}

.portfolio-category .project-meta p {
    flex: 1
}

.portfolio-groups>.loading {
    display: block
}

@media(max-width:960px) {

    .category-service-grid,
    .category-nav {
        grid-template-columns: repeat(2, 1fr)
    }

    .portfolio-category .portfolio-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:720px) {

    .category-service-grid,
    .category-nav,
    .portfolio-category .portfolio-grid {
        grid-template-columns: 1fr
    }

    .category-service-grid>a {
        min-height: 270px
    }

    .category-nav {
        margin-bottom: 55px
    }

    .category-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px
    }

    .portfolio-category {
        margin-bottom: 65px
    }
}

/* Refined full-width page hero with centred content container */
.container.narrow {
    width: min(var(--max), calc(100% - 48px)) !important;
    max-width: 100% !important ;
    margin-left: auto !important;
    margin-right: auto !important;
}


.page-banner {
    position: relative;
    padding: 82px 0 86px;
    border-bottom: 5px solid var(--orange)
}

.page-banner .narrow {
    padding-left: 25px;
    border-left: 3px solid rgba(238, 155, 37, .9)
}

.page-banner h1 {
    max-width: 760px;
    margin-bottom: 18px;
    font-size: clamp(44px, 5.5vw, 68px)
}

.page-banner p {
    max-width: 720px;
    color: #d5e0d9;
    line-height: 1.7
}

.page-banner .kicker {
    margin-bottom: 16px
}

@media(max-width:720px) {
    .free-quote-header {
        display: none !important;
    }
    .container.narrow {
        width: calc(100% - 30px)
    }

    .page-banner {
        padding: 58px 0 62px
    }

    .page-banner .narrow {
        padding-left: 18px
    }

    .page-banner p {
        font-size: 16px
    }
}

/* Nicholas James Decorating brand asset slots. */
.brand-slot {
    width: 220px;
    height: 48px;
    margin-right: auto;
    display: flex;
    align-items: center
}

.brand-slot img {
    display: block;
    width: 220px;
    height: 48px;
    object-fit: contain;
    object-position: left center
}

.footer-logo.brand-slot {
    width: 220px;
    height: 48px;
    margin: 0 0 12px
}

.footer-logo.brand-slot img {
    width: 220px;
    height: 48px
}

@media(max-width:720px) {

    .brand-slot,
    .brand-slot img {
        width: 170px;
        height: 40px
    }

    .footer-logo.brand-slot,
    .footer-logo.brand-slot img {
        width: 190px;
        height: 42px
    }
}

/* Marketplace-style trust and conversion layer */
.quote-finder {
    margin-top: 30px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    gap: 10px;
    align-items: end
}

.quote-finder label {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.quote-finder label>span {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted)
}

.quote-finder select,
.quote-finder input {
    width: 100%;
    height: 48px;
    border: 1px solid #cbd3cd;
    border-radius: 4px;
    background: #fff;
    padding: 0 13px;
    color: var(--text);
    font: inherit;
    font-size: 14px
}

.quote-finder .btn {
    height: 48px;
    white-space: nowrap
}

.hero-contact {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 20px;
    font-size: 13px
}

.hero-contact span {
    color: var(--muted)
}

.hero-contact a {
    font-weight: 800;
    color: var(--green);
    text-decoration: underline
}

.proof-strip {
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.proof-strip .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.proof-strip .container>div {
    padding: 22px 25px;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column
}

.proof-strip .container>div:first-child {
    border-left: 1px solid var(--line)
}

.proof-strip b {
    color: var(--green);
    font-size: 17px
}

.proof-strip span {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em
}

.steps-section {
    background: #fff
}

.market-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.market-steps article {
    position: relative;
    padding: 32px 28px;
    border: 1px solid var(--line);
    border-radius: 7px
}

.market-steps article>span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--green);
    font-weight: 900
}

.market-steps h3 {
    color: var(--green);
    margin: 22px 0 8px
}

.market-steps p {
    font-size: 14px;
    color: var(--muted);
    margin: 0
}


.faq-section {
    background: #fff
}

.faq-grid {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    gap: 80px
}

.faq-grid h2 {
    color: var(--green)
}

.faq-grid details {
    border-top: 1px solid var(--line);
    padding: 20px 0
}

.faq-grid details:last-child {
    border-bottom: 1px solid var(--line)
}

.faq-grid summary {
    cursor: pointer;
    color: var(--green);
    font-weight: 800;
    list-style: none;
    padding-right: 35px;
    position: relative
}

.faq-grid summary:after {
    content: "+";
    position: absolute;
    right: 5px;
    font-size: 20px
}

.faq-grid details[open] summary:after {
    content: "–"
}

.faq-grid details p {
    font-size: 14px;
    color: var(--muted);
    max-width: 700px;
    margin: 13px 0 0
}

@media(max-width:960px) {
    .quote-finder {
        grid-template-columns: 1fr 1fr
    }

    .quote-finder .btn {
        grid-column: 1/-1
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

@media(max-width:720px) {
    .quote-finder {
        grid-template-columns: 1fr;
        padding: 14px
    }

    .quote-finder .btn {
        grid-column: auto
    }

    .hero-contact {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px
    }

    .proof-strip .container {
        grid-template-columns: 1fr 1fr
    }

    .proof-strip .container>div {
        border-bottom: 1px solid var(--line)
    }

    .market-steps {
        grid-template-columns: 1fr
    }
}

/* Quote builder */
.quote-section {
    background: var(--cream)
}

.quote-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(290px, .55fr);
    gap: 34px;
    align-items: start
}

.quote-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 38px;
    box-shadow: var(--shadow)
}

.form-heading h2 {
    color: var(--green);
    margin-bottom: 7px
}

.form-heading p,
.field-help {
    color: var(--muted);
    font-size: 13px
}

.quote-form fieldset {
    border: 0;
    border-top: 1px solid var(--line);
    padding: 30px 0 4px;
    margin: 28px 0 0
}

.quote-form legend {
    padding: 0 18px 0 0;
    color: var(--green);
    font-size: 18px;
    font-weight: 800
}

.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.quote-form label>span,
.field-full>span {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: #39443c;
    margin-bottom: 6px
}

.quote-form input:not([type=checkbox]),
.quote-form select,
.quote-form textarea {
    width: 100%;
    border: 1px solid #cbd3cd;
    border-radius: 4px;
    background: #fff;
    color: var(--text);
    font: inherit;
    font-size: 14px;
    padding: 12px
}

.quote-form input:not([type=checkbox]),
.quote-form select {
    height: 49px
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: 3px solid rgba(238, 155, 37, .22);
    border-color: var(--orange2)
}

.field-full {
    display: block;
    margin-top: 18px
}

.hazard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
}

.hazard-grid label {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: 4px;
    cursor: pointer
}

.hazard-grid label:has(input:checked) {
    background: var(--pale);
    border-color: var(--green)
}

.hazard-grid label span {
    margin: 0;
    font-size: 12px
}

.hazard-grid input,
.consent input {
    accent-color: var(--green);
    width: 17px;
    height: 17px;
    flex: none
}

.upload-box {
    display: block;
    border: 2px dashed #aebbb1;
    border-radius: 6px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    background: var(--pale)
}

.upload-box b,
.upload-box span {
    display: block
}

.upload-box b {
    color: var(--green);
    font-size: 17px
}

.upload-box span {
    color: var(--muted);
    font-weight: 400;
    margin: 5px auto 15px
}

.upload-box input {
    max-width: 420px
}

.image-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 12px
}

.image-preview div {
    min-width: 0
}

.image-preview img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 4px
}

.image-preview span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 9px;
    color: var(--muted);
    margin-top: 3px
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 27px 0 18px
}

.consent span {
    font-weight: 400 !important
}

.quote-status {
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
    margin: 14px 0 0
}

.quote-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 20px
}

.quote-sidebar>div {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 28px
}

.quote-sidebar h2 {
    font-size: 28px;
    color: var(--green)
}

.quote-sidebar ul {
    padding-left: 19px;
    color: var(--muted);
    font-size: 14px
}

.quote-sidebar li {
    margin: 8px 0
}

.quote-sidebar .estimate-note {
    background: var(--green);
    color: #fff;
    border: 0
}

.estimate-note strong {
    font-size: 18px
}

.estimate-note p {
    color: #d2dfd6;
    font-size: 13px;
    margin: 10px 0 0
}

.direct-contact a,
.direct-contact b {
    display: block
}

.direct-contact a {
    margin-top: 8px;
    color: var(--green);
    font-weight: 800
}

/* Pricing */
.pricing-intro {
    background: #fff
}

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

.capacity-grid article {
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 28px
}

.capacity-grid article>span {
    font-size: 11px;
    color: var(--orange2);
    font-weight: 900
}

.capacity-grid h3 {
    color: var(--green);
    margin: 16px 0 10px
}

.capacity-grid p {
    color: var(--muted);
    font-size: 14px;
    margin: 0
}

.pricing-data {
    background: var(--cream)
}

.pricing-callout {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    padding: 35px;
    background: var(--green);
    color: #fff;
    border-radius: 7px 7px 0 0
}

.pricing-callout h2 {
    font-size: 34px;
    margin-bottom: 8px
}

.pricing-callout p {
    color: #d2dfd6;
    margin: 0
}

.price-group {
    margin-top: 38px
}

.price-group-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    border-bottom: 2px solid var(--green);
    padding-bottom: 11px
}

.price-group-heading h2 {
    font-size: 30px;
    color: var(--green);
    margin: 0
}

.price-group-heading span {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase
}

.price-list article {
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 25px;
    padding: 21px 24px;
    background: #fff;
    border-bottom: 1px solid var(--line)
}

.price-list h3 {
    font-size: 18px;
    color: var(--green);
    margin: 0 0 5px
}

.price-list p {
    font-size: 13px;
    color: var(--text);
    margin: 0
}

.price-list small {
    display: block;
    color: var(--muted);
    margin-top: 5px
}

.price-unit {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.price-unit span {
    font-size: 10px;
    color: var(--muted);
    text-transform: uppercase
}

.price-unit strong {
    font-size: 22px;
    color: var(--green)
}

.compliance {
    background: #fff
}

.compliance-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px
}

.compliance h2 {
    color: var(--green)
}

.compliance p {
    color: var(--muted)
}

.compliance-list {
    border-top: 1px solid var(--line)
}

.compliance-list article {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line)
}

.compliance-list b {
    color: var(--green)
}

.compliance-list span {
    max-width: 330px;
    color: var(--muted);
    font-size: 13px
}

.scope-section {
    background: var(--orange);
    padding: 70px 0
}

.scope-section .container {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px
}

.scope-section h2 {
    color: var(--green);
    margin: 0
}

.scope-section h3 {
    color: var(--green);
    font-size: 17px;
    margin-bottom: 5px
}

.scope-section p {
    font-size: 14px;
    margin-bottom: 22px
}

@media(max-width:960px) {

    .quote-layout,
    .compliance-grid,
    .scope-section .container {
        grid-template-columns: 1fr
    }

    .quote-sidebar {
        position: static
    }

    .capacity-grid {
        grid-template-columns: 1fr
    }

    .nav {
        gap: 14px
    }

    .nav a {
        font-size: 13px
    }
}

@media(max-width:720px) {
    .quote-form {
        padding: 23px 18px
    }

    .field-grid,
    .hazard-grid {
        grid-template-columns: 1fr
    }

    .image-preview {
        grid-template-columns: repeat(2, 1fr)
    }

    .pricing-callout {
        align-items: flex-start;
        flex-direction: column;
        padding: 26px
    }

    .price-list article {
        grid-template-columns: 1fr
    }

    .price-unit {
        text-align: left
    }

    .compliance-list article {
        flex-direction: column;
        gap: 5px
    }

    .scope-section .container {
        gap: 35px
    }
}

.hazard-adder {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 9px
}

.hazard-adder .btn {
    height: 49px
}

/* Template navigation: keep dropdown links independent from the main-link spacing. */
.header .nav-group { position: relative; }
.header .nav-group > summary { display: flex; align-items: center; gap: 7px; min-height: 82px; padding: 0; cursor: pointer; list-style: none; color: #384039; font-size: 14px; font-weight: 700; white-space: nowrap; }
.header .nav-group > summary::-webkit-details-marker { display: none; }
.header .nav-dropdown { position: absolute; z-index: 100; top: calc(100% - 1px); left: 50%; display: grid; width: 310px; gap: 3px; padding: 9px; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 18px 42px rgba(22,42,30,.18); opacity: 0; pointer-events: none; visibility: hidden; transform: translate(-50%,-8px); transition: opacity .16s ease,transform .16s ease,visibility .16s ease; }
.header .nav-group:hover > .nav-dropdown, .header .nav-group:focus-within > .nav-dropdown, .header .nav-group[open] > .nav-dropdown { opacity: 1; pointer-events: auto; visibility: visible; transform: translate(-50%,0); }
.header .nav-dropdown a { display: grid; grid-template-columns: 30px 1fr; align-items: center; min-height: 52px; padding: 8px 10px; border: 0; border-radius: 8px; white-space: normal; text-decoration: none; }
.header .nav-dropdown a:hover { background: var(--pale); }
.header .nav-dropdown a i { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--green); color: #fff; font-style: normal; font-size: 12px; }
.header .nav-dropdown a span { display: grid; gap: 2px; }
.header .nav-dropdown a b { font-size: 14px; }
.header .nav-dropdown a small { color: var(--muted); font-size: 11px; font-weight: 500; }
.header .nav-dropdown .menu-feature { border-bottom: 1px solid var(--line); }
.header .nav-explore { width: 250px; }

@media (max-width: 720px) {
  .header .nav-group > summary { min-height: 48px; padding: 13px; border-bottom: 1px solid var(--line); }
  .header .nav-dropdown, .header .nav-explore { position: static; width: 100%; padding: 4px 0 8px 12px; border: 0; border-radius: 0; box-shadow: none; opacity: 1; pointer-events: auto; visibility: visible; transform: none; }
  .header .nav-group:not([open]) > .nav-dropdown { display: none; }
  .header .nav-dropdown a { min-height: 42px; padding: 7px 10px; }
}

/* Nicholas James Decorating brand and content layer */
body { background: #fffdfa; }
.topbar { background: #9f3f1d; }
.header { border-bottom-color: #ead8cf; }
.header-inner { min-height: 108px; height: auto; }
.logo.brand-slot, .footer-brand { width: min(310px, 32vw); min-width: 190px; }
.logo.brand-slot img, .footer-brand img { width: 100%; height: auto; max-height: 92px; object-fit: contain; }
.btn { background: #9f3f1d; border-color: #9f3f1d; }
.btn:hover { background: #7f3219; border-color: #7f3219; }
.btn-outline { background: transparent; color: #7f3219; }
.kicker { color: #9f3f1d; }
.nj-hero { position: relative; padding: 0; min-height: 620px; overflow: hidden; display: grid; align-items: end; }
.nj-hero-image { position: absolute; inset: 0; }
.nj-hero-image:after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(25,15,11,.78),rgba(25,15,11,.28) 62%,rgba(25,15,11,.06)); }
.nj-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; }
.nj-hero-copy { position: relative; z-index: 2; max-width: 760px; margin: 0 auto 0 max(30px,calc((100vw - var(--max))/2)); padding: 90px 0; color: #fff; }
.nj-hero-copy h1 { max-width: 700px; color: #fff; font-size: clamp(42px,6vw,76px); }
.nj-hero-copy p { max-width: 660px; color: rgba(255,255,255,.9); font-size: 19px; }
.nj-hero-copy .kicker { color: #ff9a55; }
.nj-hero-copy .btn-outline { color: #fff; border-color: #fff; }
.nj-service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.nj-service-grid a { overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: #fff; color: var(--text); text-decoration: none; box-shadow: 0 10px 30px rgba(72,35,20,.08); transition: transform .2s ease,box-shadow .2s ease; }
.nj-service-grid a:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(72,35,20,.14); }
.nj-service-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.nj-service-grid h3 { margin: 20px 20px 8px; color: #7f3219; }
.nj-service-grid p { margin: 0 20px 24px; color: var(--muted); }
.nj-trust { background: #f7f3ef; }
.trust-list { display: grid; gap: 12px; }
.trust-list span { padding: 18px 20px; border-left: 4px solid #e86519; background: #fff; font-weight: 700; }
.page-hero { padding: 90px 0; background: linear-gradient(120deg,#f7f3ef,#fff); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 850px; color: #7f3219; font-size: clamp(42px,5vw,68px); }
.page-hero p { max-width: 720px; font-size: 18px; color: var(--muted); }
.service-image img { width: 100%; border-radius: 15px; box-shadow: var(--shadow); }
.footer { background: #241710; }
.footer a, .footer h2, .footer p, .footer span { color: #f9eee7; }

@media (max-width: 960px) {
  .nj-service-grid { grid-template-columns: repeat(2,1fr); }
  .logo.brand-slot { width: min(270px,45vw); }
}
@media (max-width: 720px) {
  .header-inner { min-height: 82px; }
  .logo.brand-slot { width: 205px; min-width: 0; }
  .nj-hero { min-height: 560px; }
  .nj-hero-copy { margin: 0; padding: 70px 25px; }
  .nj-service-grid { grid-template-columns: 1fr; }
}

.selected-hazards {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px
}

.selected-hazards>span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 8px 7px 11px;
    border-radius: 20px;
    background: var(--pale);
    color: var(--green);
    font-size: 12px;
    font-weight: 700
}

.selected-hazards button {
    width: 22px;
    height: 22px;
    border: 0;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    cursor: pointer
}

.selected-hazards p {
    color: var(--muted);
    font-size: 12px;
    margin: 0
}

@media(max-width:720px) {
    .hazard-adder {
        grid-template-columns: 1fr
    }
}

/* Final Nicholas James Decorating overrides */
body { background: #fffdfa; color: #211b18; }
.topbar { background: #9f3f1d; }
.header { background: #fff; border-bottom-color: #ead8cf; }
.header .logo.brand-slot { width: min(310px,32vw); min-width: 190px; }
.header .logo.brand-slot img { width: 100%; height: auto; max-height: 92px; object-fit: contain; }
.header .nav a:hover, .header .nav a.active, .header .nav-group > summary:hover { color: #9f3f1d; border-color: #e86519; }
.nj-service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.page-hero { padding: 90px 0; background: linear-gradient(120deg,#f7f3ef,#fff); }
.footer { background: #241710; }
@media(max-width:960px) { .nj-service-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:720px) { .header .logo.brand-slot { width: 205px; min-width: 0; } .nj-service-grid { grid-template-columns: 1fr; } }

/* Clean light Nicholas James Decorating theme */
body { background: #fff; color: #242424; }
.topbar { background: #f3f3f3; border-bottom: 1px solid #e4e4e4; color: #4a4a4a; }
.topbar a { color: #9f3f1d; font-weight: 700; }
.header { background: #fff; border-bottom: 1px solid #e5e5e5; box-shadow: 0 4px 18px rgba(25,25,25,.04); }
.header .nav-dropdown { background: #fff; border-color: #e4e4e4; box-shadow: 0 18px 40px rgba(30,30,30,.11); }
.header .nav-dropdown a:hover { background: #f5f5f5; }
.nj-hero-image:after { background: linear-gradient(90deg,rgba(255,255,255,.96) 0%,rgba(255,255,255,.84) 38%,rgba(255,255,255,.2) 72%,rgba(255,255,255,.04)); }
.nj-hero-copy { color: #252525; }
.nj-hero-copy h1 { color: #252525; }
.nj-hero-copy p { color: #555; }
.nj-hero-copy .kicker { color: #9f3f1d; }
.nj-hero-copy .btn-outline { color: #7f3219; border-color: #9f3f1d; background: rgba(255,255,255,.72); }
.nj-trust { background: #f6f6f6; }
.page-hero { background: linear-gradient(135deg,#fff,#f3f3f3); border-bottom: 1px solid #e5e5e5; }
.nj-service-grid a, .project-card, .service-summary, .service-note { background: #fff; border-color: #e4e4e4; box-shadow: 0 10px 28px rgba(30,30,30,.07); }
.cta { background: #f1f1f1; color: #262626; }
.cta h2, .cta p { color: #262626; }
.cta .btn-white { background: #9f3f1d; border-color: #9f3f1d; color: #fff; }
.footer { background: #f4f4f4; border-top: 1px solid #dedede; }
.footer a, .footer h2, .footer p, .footer span { color: #3f3f3f; }
.footer a:hover { color: #9f3f1d; }
.footer-legal { border-top-color: #d8d8d8; }

@media(max-width:720px) {
  .nj-hero-image:after {
    background: linear-gradient(90deg,rgba(255,255,255,.76) 0%,rgba(255,255,255,.58) 62%,rgba(255,255,255,.30) 100%);
  }
}

/* Finished light footer */
.footer { padding: 72px 0 0; background: #f5f5f5; border-top: 1px solid #dedede; }
.footer-main { display: grid; grid-template-columns: 1.45fr .8fr .7fr 1.15fr; gap: 54px; align-items: start; }
.footer-company { display: grid; gap: 18px; }
.footer-brand { display: block; width: min(300px,100%); }
.footer-brand img { display: block; width: 100%; height: auto; max-height: none; }
.footer-company > p { max-width: 390px; margin: 0; color: #606060; font-size: 14px; line-height: 1.75; }
.footer-contact { display: grid; gap: 7px; padding-top: 15px; border-top: 1px solid #ddd; }
.footer-contact span { color: #666; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.footer-contact a { width: fit-content; color: #3e3e3e; font-weight: 700; }
.footer nav { display: grid; align-content: start; gap: 10px; }
.footer nav h2 { margin: 5px 0 12px; color: #262626; font-size: 16px; }
.footer nav a { width: fit-content; color: #5a5a5a; font-size: 13px; text-decoration: none; }
.footer nav a:hover { color: #9f3f1d; transform: translateX(2px); }
.footer-cta { padding: 28px; border: 1px solid #ddd; border-radius: 14px; background: #fff; box-shadow: 0 12px 30px rgba(30,30,30,.06); }
.footer-cta .kicker { display: block; margin-bottom: 9px; color: #9f3f1d; font-size: 11px; }
.footer-cta h2 { margin: 0 0 10px; color: #262626; font-size: 23px; line-height: 1.25; }
.footer-cta p { margin: 0 0 20px; color: #666; font-size: 13px; line-height: 1.65; }
.footer-cta .btn { color: #fff; font-size: 13px; }
.footer-legal { display: flex; justify-content: space-between; gap: 30px; margin-top: 58px; padding: 22px 0; border-top: 1px solid #dcdcdc; }
.footer-legal > span { color: #737373; font-size: 12px; }
.footer-legal > div { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-legal a { color: #666; font-size: 12px; }

@media(max-width:1050px) {
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-cta { grid-column: 1 / -1; }
}
@media(max-width:720px) {
  .footer { padding-top: 52px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-company, .footer-cta { grid-column: 1 / -1; }
  .footer-legal { flex-direction: column; margin-top: 40px; }
}
@media(max-width:440px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-company, .footer-cta { grid-column: auto; }
}

/* Sharper, cleaner NJ presentation */
.btn, input, select, textarea, .quote-form, .contact-details,
.nj-service-grid a, .project-card, .service-summary, .service-note,
.coverage-grid article, .market-steps article, .testimonial-list article,
.footer-cta, .service-image img { border-radius: 2px; }
.btn { min-height: 46px; padding: 13px 22px; letter-spacing: .015em; box-shadow: none; }
.btn:hover { transform: translateY(-1px); }
.section { padding-top: 88px; padding-bottom: 88px; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.nj-service-grid { gap: 18px; }
.nj-service-grid a { box-shadow: none; border-color: #dedede; }
.nj-service-grid a:hover { transform: translateY(-2px); border-color: #b95a32; box-shadow: 0 10px 24px rgba(30,30,30,.08); }
.nj-service-grid h3 { color: #262626; }
.header .nav-dropdown { border-radius: 2px; padding: 6px; }
.header .nav-dropdown a { border-radius: 1px; }
.header .nav-dropdown a i { border-radius: 2px; background: #9f3f1d; }
.page-hero { background: #f5f5f5; }
.page-hero h1 { color: #262626; }
.footer { background: #f1f1f1; }
.footer-main { border-top: 3px solid #9f3f1d; padding-top: 48px; }
.footer-cta { border-left: 3px solid #9f3f1d; box-shadow: none; }
.footer-contact a { font-size: 14px; text-decoration-thickness: 1px; text-underline-offset: 3px; }

@media(max-width:720px) {
  .section { padding-top: 62px; padding-bottom: 62px; }
}

/* Neutral button treatment */
.btn,
.cta .btn-white,
.footer-cta .btn {
  background: #282828;
  border-color: #282828;
  color: #fff;
}
.btn:hover,
.cta .btn-white:hover,
.footer-cta .btn:hover {
  background: #080808;
  border-color: #080808;
  color: #fff;
}
.btn-outline,
.nj-hero-copy .btn-outline {
  background: rgba(255,255,255,.86);
  border-color: #343434;
  color: #282828;
}
.btn-outline:hover,
.nj-hero-copy .btn-outline:hover {
  background: #282828;
  border-color: #282828;
  color: #fff;
}

/* Clean dropdown chevrons and icon-free menu rows */
.header .nav-group > summary {
  gap: 8px;
}
.nav-chevron {
  display: block;
  width: 11px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 1px;
  overflow: visible;
  transition: transform .18s ease;
  transform-origin: 50% 50%;
}
.nav-chevron path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header .nav-group[open] > summary .nav-chevron,
.header .nav-group:hover > summary .nav-chevron,
.header .nav-group:focus-within > summary .nav-chevron {
  transform: rotate(180deg);
}
.header .nav-dropdown a {
  display: block;
  min-height: 0;
  padding: 11px 13px;
}
.header .nav-dropdown a span {
  display: grid;
  gap: 3px;
}
.header .nav-dropdown .menu-feature {
  padding-bottom: 14px;
  margin-bottom: 3px;
}

@media(max-width:720px) {
  .header .nav-group > summary { justify-content: space-between; }
  .header .nav-dropdown a { padding: 10px 12px; }
  .header .nav-group > summary,
  .header .nav-group[open] > summary,
  .header .nav-group > summary:hover,
  .header .nav-dropdown a,
  .header .nav-dropdown a:hover,
  .header .nav-dropdown a:focus,
  .header .nav-dropdown a.active,
  .header .nav-dropdown a b {
    color: #242424;
  }
  .header .nav-dropdown a small { color: #666; }
  .header .nav-dropdown,
  .header .nav-dropdown a:hover,
  .header .nav-dropdown a:focus { background: #fff; }
}

/* Areas covered page */
.areas-hero .btn { margin-top: 20px; }
.areas-intro { border-bottom: 1px solid #e2e2e2; }
.areas-intro .split { align-items: start; }
.areas-intro p { margin-top: 0; color: #595959; line-height: 1.8; }
.coverage-section { background: #f6f6f6; }
.area-location-grid { grid-template-columns: repeat(3,1fr); gap: 1px; border: 1px solid #ddd; background: #ddd; }
.area-location-grid article { min-height: 210px; padding: 30px; border: 0; background: #fff; box-shadow: none; }
.area-location-grid h3 { margin: 0 0 12px; color: #242424; font-size: 20px; }
.area-location-grid p { margin: 0; color: #616161; line-height: 1.7; }
.area-enquiry { padding: 34px; border-left: 3px solid #9f3f1d; background: #f4f4f4; }
.area-enquiry h3 { margin-top: 0; font-size: 25px; }
.area-enquiry p { margin-bottom: 24px; color: #585858; line-height: 1.75; }

@media(max-width:900px) {
  .area-location-grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:620px) {
  .area-location-grid { grid-template-columns: 1fr; }
  .area-location-grid article { min-height: 0; padding: 25px; }
  .area-enquiry { padding: 26px; }
}

/* Definitive mobile navigation reset */
@media (max-width:720px) {
  .header .nav .nav-group > .nav-dropdown,
  .header .nav .nav-group > .nav-explore {
    position: static !important;
    inset: auto !important;
    display: grid;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 5px 0 10px 12px !important;
    gap: 0 !important;
    border: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }
  .header .nav .nav-group:not([open]) > .nav-dropdown { display: none !important; }
  .header .nav .nav-dropdown > a {
    position: static !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 11px 12px !important;
    border: 0 !important;
    border-bottom: 1px solid #ededed !important;
    background: #fff !important;
    color: #242424 !important;
    line-height: 1.35 !important;
  }
  .header .nav .nav-dropdown > a span,
  .header .nav .nav-dropdown > a b {
    display: block !important;
    color: #242424 !important;
  }
  .header .nav .nav-dropdown > a small {
    display: block !important;
    margin-top: 3px !important;
    color: #666 !important;
  }
}

/* Progressive contact page */
.contact-hero { padding: 74px 0 56px; border-bottom: 1px solid #e5e5e5; background: #f5f5f5; }
.contact-hero h1 { max-width: 760px; margin: 9px 0 14px; font-size: clamp(42px,5vw,68px); color: #242424; }
.contact-hero p { max-width: 650px; margin: 0; color: #5e5e5e; font-size: 18px; }
.contact-flow-section { padding: 70px 0 90px; }
.contact-flow-layout { display: grid; grid-template-columns: minmax(0,1.55fr) minmax(310px,.75fr); gap: 42px; align-items: start; }
.enquiry-panel { min-height: 620px; padding: 38px; border: 1px solid #ddd; background: #fff; }
.form-progress { margin-bottom: 38px; }
.form-progress-bar { height: 3px; margin-bottom: 12px; background: #e5e5e5; }
.form-progress-bar span { display: block; width: 33.333%; height: 100%; background: #9f3f1d; transition: width .25s ease; }
.form-progress-label { display: flex; justify-content: space-between; gap: 15px; color: #6a6a6a; font-size: 12px; }
.form-progress-label b { color: #292929; }
.form-step { display: none; min-width: 0; margin: 0; padding: 0; border: 0; }
.form-step.is-active { display: block; animation: flow-in .22s ease; }
@keyframes flow-in { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: none; } }
.form-step legend { width: 100%; margin: 0 0 8px; padding: 0; color: #242424; font-size: clamp(27px,3vw,36px); font-weight: 800; line-height: 1.2; }
.step-intro { margin: 0 0 28px; color: #666; }
.service-options { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.service-options label { cursor: pointer; }
.service-options input { position: absolute; opacity: 0; pointer-events: none; }
.service-options label > span { display: grid; grid-template-columns: 34px 1fr; column-gap: 13px; min-height: 104px; padding: 18px; border: 1px solid #ddd; background: #fff; transition: border-color .15s ease,background .15s ease; }
.service-options label > span:hover { border-color: #9f3f1d; }
.service-options input:checked + span { border-color: #9f3f1d; background: #faf5f2; box-shadow: inset 3px 0 #9f3f1d; }
.service-options svg { grid-row: 1 / 3; width: 27px; height: 27px; fill: none; stroke: #9f3f1d; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-options b { align-self: end; color: #252525; font-size: 15px; }
.service-options small { align-self: start; margin-top: 3px; color: #707070; line-height: 1.4; }
.flow-fields { display: grid; gap: 20px; }
.flow-fields.two-column { grid-template-columns: repeat(2,1fr); }
.flow-fields label { display: grid; gap: 8px; }
.flow-fields label > span { color: #333; font-size: 13px; font-weight: 700; }
.flow-fields label em { color: #777; font-size: 11px; font-style: normal; font-weight: 400; }
.flow-fields input, .flow-fields textarea, .flow-fields select { width: 100%; padding: 14px 15px; border: 1px solid #ccc; border-radius: 1px; background: #fff; color: #242424; font: inherit; }
.flow-fields input:focus, .flow-fields textarea:focus, .flow-fields select:focus { outline: 2px solid rgba(159,63,29,.18); border-color: #9f3f1d; }
.consent-check { display: flex; gap: 11px; align-items: flex-start; margin-top: 23px; color: #555; font-size: 13px; }
.consent-check input { width: 17px; height: 17px; margin-top: 1px; accent-color: #282828; }
.form-error { min-height: 20px; margin: 14px 0 0; color: #a12d21; font-size: 13px; font-weight: 700; }
.form-actions { display: flex; justify-content: flex-end; gap: 12px; margin-top: 28px; padding-top: 22px; border-top: 1px solid #e5e5e5; }
.form-actions button[hidden] { display: none; }
.flow-back { padding: 11px 18px; border: 0; background: transparent; color: #4c4c4c; font-weight: 700; cursor: pointer; }
.form-success { padding: 70px 25px; text-align: center; }
.form-success[hidden] { display: none; }
.form-success > svg { width: 70px; height: 70px; margin-bottom: 24px; fill: none; stroke: #28754b; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.form-success h2 { margin: 8px 0 12px; font-size: 36px; }
.form-success p { max-width: 500px; margin: 0 auto 26px; color: #626262; }
.business-contact-card { position: sticky; top: 25px; padding: 34px; border-top: 3px solid #9f3f1d; background: #f3f3f3; }
.business-contact-card h2 { margin: 8px 0 10px; font-size: 29px; }
.business-contact-card > p { margin: 0 0 25px; color: #616161; line-height: 1.7; }
.direct-contact-list { display: grid; gap: 1px; background: #ddd; border: 1px solid #ddd; }
.direct-contact-list a { display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 13px; min-width: 0; padding: 15px; background: #fff; color: #272727; text-decoration: none; }
.direct-contact-list a:hover { background: #fafafa; }
.direct-contact-list svg { width: 25px; height: 25px; fill: none; stroke: #9f3f1d; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.direct-contact-list .whatsapp-link svg { fill: #25d366; stroke: none; }
.direct-contact-list span { display: grid; min-width: 0; }
.direct-contact-list small { color: #777; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.direct-contact-list b { overflow-wrap: anywhere; font-size: 14px; }
.contact-area { display: grid; grid-template-columns: 28px 1fr; gap: 12px; margin-top: 25px; padding-top: 22px; border-top: 1px solid #d6d6d6; }
.contact-area svg { width: 24px; height: 24px; fill: none; stroke: #555; stroke-width: 1.6; }
.contact-area span { display: grid; gap: 3px; }
.contact-area small { color: #696969; line-height: 1.45; }

@media(max-width:950px) {
  .contact-flow-layout { grid-template-columns: 1fr; }
  .business-contact-card { position: static; }
}
@media(max-width:650px) {
  .contact-hero { padding: 52px 0 42px; }
  .contact-flow-section { padding: 30px 0 65px; }
  .enquiry-panel { min-height: 0; padding: 24px 18px; }
  .service-options, .flow-fields.two-column { grid-template-columns: 1fr; }
  .service-options label > span { min-height: 88px; }
  .business-contact-card { padding: 26px 20px; }
}

/* Final responsive containment and mobile polish */
html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}
main, section, header, footer, nav, form, fieldset,
.container, .split, .header-inner, .footer-main, .footer-legal,
.service-detail-grid, .service-body .container, .contact-flow-layout,
.enquiry-panel, .business-contact-card {
  min-width: 0;
}
img, svg, video, iframe { max-width: 100%; }
p, h1, h2, h3, a, b, small, span, label { overflow-wrap: anywhere; }
input, textarea, select, button { max-width: 100%; }
textarea { resize: vertical; }
table { max-width: 100%; }

@media(max-width:720px) {
  body { padding-bottom: 0; }
  .container { width: calc(100% - 30px); max-width: 100%; }
  .header { position: relative; }
  .header-inner { width: 100%; min-height: 76px; padding-left: 15px; padding-right: 15px; }
  .header .logo.brand-slot {
    width: min(205px,calc(100vw - 100px));
    min-width: 0;
    max-width: calc(100vw - 100px);
  }
  .header .logo.brand-slot img { width: 100%; height: auto; }
  .nav-toggle { flex: 0 0 auto; }
  .header .nav {
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    max-width: 100%;
    padding: 8px 15px 18px;
    overflow-x: hidden;
  }
  .header .nav > *,
  .header .nav-group,
  .header .nav-dropdown,
  .header .nav-dropdown > a { max-width: 100%; min-width: 0; }
  .btn-header { display: none; }
  .nj-hero { min-height: 500px; }
  .nj-hero-copy { width: 100%; max-width: 100%; padding: 58px 20px; }
  .nj-hero-copy h1, .page-hero h1, .contact-hero h1 { font-size: clamp(34px,10vw,48px); }
  .hero-buttons { align-items: stretch; }
  .hero-buttons .btn { width: 100%; text-align: center; }
  .split, .contact-grid, .coverage-grid, .market-steps,
  .service-detail-grid, .service-body .container, .portfolio-grid,
  .category-service-grid, .category-nav, .capacity-grid,
  .compliance-grid, .scope-section .container {
    grid-template-columns: minmax(0,1fr);
  }
  .section, .page-hero { padding-top: 58px; padding-bottom: 58px; }
  .service-image, .service-image img { width: 100%; }
  .footer-main { grid-template-columns: minmax(0,1fr); }
  .footer-company, .footer-cta { grid-column: auto; }
  .footer-brand { width: min(280px,100%); min-width: 0; }
  .footer-legal, .footer-legal > div { max-width: 100%; }
  .footer-contact a, .direct-contact-list b { word-break: break-word; }
  .form-actions { flex-wrap: wrap; }
  .form-actions .btn { flex: 1 1 160px; }
  .comparison-table, .table-wrap { width: 100%; overflow-x: auto; overscroll-behavior-inline: contain; }
}

@media(max-width:400px) {
  .container { width: calc(100% - 24px); }
  .header-inner { padding-left: 12px; padding-right: 12px; }
  .header .logo.brand-slot { width: min(185px,calc(100vw - 82px)); max-width: calc(100vw - 82px); }
  .service-options label > span { grid-template-columns: 30px minmax(0,1fr); padding: 15px; }
  .direct-contact-list a { grid-template-columns: 34px minmax(0,1fr); padding: 13px; }
  .footer-legal > div { gap: 12px; }
}

@media(prefers-reduced-motion:reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Straightforward typography and full-width section headings */
.kicker { display: none !important; }
h1, h2, h3, h4, h5, h6 {
  font-family: Arial, Helvetica, sans-serif;
  color: #242424;
  font-weight: 700;
  letter-spacing: normal;
}
h1 { font-size: clamp(38px,4.5vw,62px); line-height: 1.08; }
h2 { font-size: clamp(28px,3vw,42px); line-height: 1.15; }
h3 { font-size: 21px; line-height: 1.25; }
p { font-size: 16px; line-height: 1.7; }
.section-heading {
  display: block;
  width: 100%;
  max-width: none;
  margin-bottom: 38px;
}
.section-heading h2 {
  width: 100%;
  max-width: 850px;
  margin: 0 0 12px;
  color: #242424;
}
.section-heading p {
  width: 100%;
  max-width: 720px;
  margin: 0;
  color: #626262;
}
.nj-service-grid h3 { font-weight: 700; }
.page-hero h1, .contact-hero h1, .nj-hero-copy h1 { letter-spacing: normal; }

@media(max-width:720px) {
  h1 { font-size: clamp(34px,9vw,44px); }
  h2 { font-size: clamp(27px,7vw,36px); }
  .section-heading { margin-bottom: 28px; }
}

.footer-contact-list {
  width: 100%;
  max-width: 390px;
  margin-top: 2px;
}
.footer-contact-list a,
.footer-contact-list a:hover {
  color: #272727;
  transform: none;
}

/* Sticky simplified header */
.topbar { display: none !important; }
.header {
  position: sticky;
  z-index: 1000;
  top: 0;
  width: 100%;
}
.mobile-quote-link { display: none; }

@media(max-width:720px) {
  .header .nav .mobile-quote-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    margin-top: 14px;
    padding: 13px 18px !important;
    border: 1px solid #282828 !important;
    background: #282828 !important;
    color: #fff !important;
    font-weight: 700;
    text-align: center;
  }
  .header .nav .mobile-quote-link:hover,
  .header .nav .mobile-quote-link:focus {
    background: #080808 !important;
    color: #fff !important;
  }
}

/* Our work case studies */
.work-hero .btn { margin-top: 20px; }
.work-introduction { padding: 64px 0; border-bottom: 1px solid #dedede; background: #fff; }
.work-introduction .container { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.work-introduction h2 { margin: 0; font-size: clamp(28px,3vw,40px); }
.work-introduction p { max-width: 680px; margin: 0; color: #5d5d5d; font-size: 17px; }
.work-projects { background: #f4f4f4; }
.work-case-study { padding: 90px 0; border-bottom: 1px solid #d8d8d8; }
.work-case-study:last-child { border-bottom: 0; }
.work-case-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); gap: 64px; align-items: center; }
.work-case-alternate { background: #fff; }
.work-case-alternate .work-case-image { order: 2; }
.work-case-image { overflow: hidden; border: 1px solid #d3d3d3; background: #e8e8e8; }
.work-case-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .4s ease; }
.work-case-study:hover .work-case-image img { transform: scale(1.015); }
.work-number { margin: 0 0 10px; color: #9f3f1d; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.work-case-content > h2 { margin: 0 0 16px; font-size: clamp(30px,3.2vw,44px); }
.work-summary { margin: 0 0 30px; color: #555; font-size: 17px; line-height: 1.75; }
.work-detail-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; margin-bottom: 28px; padding-top: 25px; border-top: 1px solid #d6d6d6; }
.work-detail-grid h3 { margin: 0 0 8px; font-size: 15px; }
.work-detail-grid p { margin: 0; color: #626262; font-size: 14px; line-height: 1.7; }
.work-highlights { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 25px; padding: 0; list-style: none; }
.work-highlights li { padding: 7px 10px; border: 1px solid #d7d7d7; background: #fff; color: #4e4e4e; font-size: 12px; }
.work-case-content > a { display: inline-block; padding-bottom: 3px; border-bottom: 1px solid #9f3f1d; color: #743119; font-weight: 700; }
.work-closing { padding: 70px 0; background: #eaeaea; }
.work-closing .container { display: flex; justify-content: space-between; gap: 45px; align-items: center; }
.work-closing h2 { margin: 0 0 10px; }
.work-closing p { max-width: 720px; margin: 0; color: #5c5c5c; }
.work-closing .btn { flex: 0 0 auto; }

@media(max-width:900px) {
  .work-case-grid { grid-template-columns: 1fr; gap: 35px; }
  .work-case-alternate .work-case-image { order: 0; }
}
@media(max-width:720px) {
  .work-introduction { padding: 48px 0; }
  .work-introduction .container { grid-template-columns: 1fr; gap: 18px; }
  .work-case-study { padding: 58px 0; }
  .work-detail-grid { grid-template-columns: 1fr; gap: 20px; }
  .work-closing .container { align-items: stretch; flex-direction: column; }
  .work-closing .btn { width: 100%; justify-content: center; }
}

/* Decor by Nick brand collection integration */
.nj-hero {
  min-height: 680px;
  background: #eee8e1;
}
.nj-hero-image img {
  object-position: center;
  filter: saturate(.9) contrast(1.02);
}
.nj-hero-image:after {
  background: linear-gradient(90deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.9) 38%,rgba(255,255,255,.32) 65%,rgba(255,255,255,.05) 100%);
}
.nj-hero-copy {
  padding-top: 110px;
  padding-bottom: 110px;
}
.trust-panel {
  display: grid;
  grid-template-columns: minmax(120px,180px) minmax(0,1fr);
  gap: 26px;
  align-items: center;
  padding: 28px;
  border: 1px solid #dedede;
  background: #fff;
  box-shadow: 0 18px 44px rgba(36,23,16,.08);
}
.brand-mark {
  display: block;
  width: 100%;
  max-width: 180px;
  height: auto;
  margin: auto;
  filter: drop-shadow(0 12px 18px rgba(159,63,29,.16));
}
.trust-panel .trust-list span {
  border-left-color: #f15a0a;
  background: #f8f6f3;
}

@media(max-width:720px) {
  .nj-hero { min-height: 590px; }
  .nj-hero-image img { object-position: 57% center; }
  .nj-hero-image:after { background: linear-gradient(90deg,rgba(255,255,255,.92),rgba(255,255,255,.68)); }
  .nj-hero-copy { padding-top: 72px; padding-bottom: 72px; }
  .trust-panel { grid-template-columns: 100px minmax(0,1fr); gap: 18px; padding: 20px; }
}

@media(max-width:440px) {
  .trust-panel { grid-template-columns: 1fr; }
  .brand-mark { max-width: 118px; }
}
