@font-face {
    font-family: Heebo;
    src: url('../vendor/heebo-400.woff') format('woff');
    font-weight: 400;
    font-display: swap
}

@font-face {
    font-family: Heebo;
    src: url('../vendor/heebo-500.woff') format('woff');
    font-weight: 500;
    font-display: swap
}

@font-face {
    font-family: Heebo;
    src: url('../vendor/heebo-600.woff') format('woff');
    font-weight: 600;
    font-display: swap
}

@font-face {
    font-family: Heebo;
    src: url('../vendor/heebo-700.woff') format('woff');
    font-weight: 700;
    font-display: swap
}

@font-face {
    font-family: Heebo;
    src: url('../vendor/heebo-800.woff') format('woff');
    font-weight: 800;
    font-display: swap
}

@font-face {
    font-family: Inter;
    src: url('../vendor/inter-400.woff') format('woff');
    font-weight: 400;
    font-display: swap
}

@font-face {
    font-family: Inter;
    src: url('../vendor/inter-500.woff') format('woff');
    font-weight: 500;
    font-display: swap
}

@font-face {
    font-family: Inter;
    src: url('../vendor/inter-600.woff') format('woff');
    font-weight: 600;
    font-display: swap
}

@font-face {
    font-family: Inter;
    src: url('../vendor/inter-700.woff') format('woff');
    font-weight: 700;
    font-display: swap
}

@font-face {
    font-family: Inter;
    src: url('../vendor/inter-800.woff') format('woff');
    font-weight: 800;
    font-display: swap
}

:root {
    --green: #009b83;
    --deep: #007e6d;
    --pink: #ee368d;
    --ink: #2c3941;
    --muted: #657279;
    --soft: #f4f7f6;
    --border: #dce6e3;
    --ease: cubic-bezier(.22, .65, .25, 1);
    --shadow: 0 18px 46px #1b504414
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px
}

body {
    margin: 0;
    color: var(--ink);
    font: 16px/1.7 Inter, Arial, sans-serif;
    background: #fff
}

button,
input,
textarea,
select {
    font: inherit
}

button,
a,
input,
textarea,
select {
    -webkit-tap-highlight-color: transparent
}

button,
a {
    touch-action: manipulation
}

button {
    cursor: pointer
}

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

p {
    color: var(--muted);
    margin: 0 0 22px
}

h1,
h2,
h3 {
    font-family: Heebo, Arial, sans-serif;
    line-height: 1.08;
    letter-spacing: -.035em;
    margin: 0 0 20px
}

h1 {
    font-size: clamp(48px, 5.3vw, 80px);
    font-weight: 750
}

h2 {
    font-size: clamp(36px, 3.5vw, 54px);
    font-weight: 700
}

h3 {
    font-size: 24px;
    letter-spacing: -.02em;
    line-height: 1.2
}

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

button {
    border: 0
}

svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7
}

a,
button {
    transition: color .3s, background-color .3s, box-shadow .35s, transform .4s var(--ease), border-color .3s
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--pink);
    outline-offset: 5px
}

button:disabled {
    opacity: .6;
    cursor: wait
}

button[hidden],
[hidden] {
    display: none !important
}

.container {
    width: calc(100% - 96px);
    max-width: 1480px;
    margin-inline: auto;
    min-width: 0
}

.section {
    padding: 88px 0
}

.compact-section {
    padding: 26px 0
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 40px
}

.section-heading p {
    margin: 0
}

.center {
    text-align: center
}

.left {
    margin-left: 0;
    text-align: left
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-width: 0
}

.split>*,
.grid>*,
.tab-layout>* {
    min-width: 0
}

.grid {
    display: grid;
    gap: 24px
}

.three {
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: white;
    padding: 13px 27px;
    border: 1px solid transparent;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.5;
    width: fit-content;
    min-height: 46px;
    box-shadow: 0 5px 0 #00746116
}

.button:hover {
    background: var(--deep);
    box-shadow: 0 9px 22px #00746126;
    transform: translateY(-3px)
}

.button.small {
    padding: 10px 21px;
    min-height: 40px;
    font-size: 13px
}

.text-link {
    font-size: 14px;
    font-weight: 650;
    display: inline-block;
    border-bottom: 1px solid currentColor;
    color: var(--green);
    padding-bottom: 2px
}

.icon {
    width: 46px;
    height: 46px;
    object-fit: contain;
    flex: 0 0 auto;
    transition: transform .4s var(--ease);
    margin-bottom: 20px
}

.card:hover .icon,
.service-tile:hover .icon {
    transform: translateY(-5px) rotate(-7deg)
}

.site-header {
    position: sticky;
    top: 18px;
    z-index: 100;
    width: calc(100% - 96px);
    max-width: 1480px;
    margin: 18px auto -96px;
    height: 78px
}

.nav-shell {
    display: flex;
    align-items: center;
    gap: 35px;
    height: 78px;
    padding: 0 27px;
    background: #fff;
    border: 1px solid #eef1ef;
    border-radius: 9px;
    box-shadow: 0 8px 30px #17342e12
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.brand img {
    width: 38px;
    height: 38px;
    object-fit: contain
}

.brand span {
    font-family: Heebo, Arial, sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--ink)
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-left: auto
}

nav>a,
.services-toggle {
    font-size: 14px;
    background: transparent;
    padding: 10px 0;
    white-space: nowrap;
    color: var(--ink)
}

nav>a:hover,
nav>a[aria-current=page],
.services-toggle:hover {
    color: var(--green);
    text-shadow: 0 4px 13px #009b8330
}

nav>a {
    position: relative
}

nav>a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3px;
    height: 2px;
    background: var(--green);
    transform: scaleX(0);
    transition: transform .3s
}

nav>a:hover:after {
    transform: scaleX(1)
}

.nav-dropdown {
    position: relative
}

.services-toggle {
    display: flex;
    align-items: center;
    gap: 6px
}

.services-toggle svg {
    width: 14px
}

.dropdown-panel {
    position: absolute;
    left: -20px;
    top: 100%;
    width: 210px;
    background: #fff;
    padding: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 9px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .25s var(--ease)
}

.dropdown-panel a {
    display: block;
    padding: 9px;
    border-radius: 5px;
    font-size: 14px
}

.dropdown-panel a:hover {
    background: var(--soft);
    color: var(--green)
}

.nav-dropdown.open .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.menu-toggle {
    display: none
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 20px;
    z-index: 1000;
    background: #fff;
    padding: 12px
}

.skip-link:focus {
    top: 10px
}

.hero {
    position: relative;
    isolation: isolate;
    height: min(850px, 94svh);
    min-height: 660px;
    overflow: hidden;
    background: #627f80
}

.hero-swiper,
.hero-tint {
    position: absolute;
    inset: 0
}

.hero-swiper {
    z-index: -3
}

.hero-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6.5s linear;
    transform: scale(1.015)
}

.hero-swiper .swiper-slide-active img {
    transform: scale(1.07)
}

.hero-tint {
    background: #18343b26;
    z-index: -2
}

.hero-content {
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 80px
}

.paint-panel {
    width: 570px;
    max-width: 50%;
    padding: 70px 53px 65px;
    text-align: center;
    background: url('../images/brush-mask.png') center/100% 100% no-repeat;
    position: relative
}

.paint-panel h1 {
    color: var(--deep);
    font-size: clamp(44px, 4.5vw, 70px);
    line-height: 1.02
}

.paint-panel p {
    font-size: 15px;
    max-width: 320px;
    margin: 0 auto 24px;
    line-height: 1.65;
    color: #5b696e
}

.hero-bottom {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    font-size: 13px
}

.hero-bottom>span {
    margin-right: auto;
    text-shadow: 0 1px 8px #0009
}

.hero-pagination {
    width: auto !important;
    display: flex;
    align-items: center;
    gap: 10px
}

.hero-pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: .5;
    width: 8px;
    height: 8px;
    margin: 0 !important
}

.hero-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 24px;
    border-radius: 10px
}

.hero-pause {
    color: #fff;
    background: #1c393c60;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 12px;
    min-height: 34px
}

.service-hero {
    height: 650px;
    min-height: 570px
}

.service-hero .paint-panel {
    width: 600px
}

.service-hero h1 {
    font-size: clamp(44px, 4vw, 65px)
}

.image-composition {
    position: relative;
    padding-bottom: 22px
}

.image-composition>img {
    width: 100%;
    height: 435px;
    border-radius: 12px;
    box-shadow: var(--shadow)
}

.floating-note {
    position: absolute;
    left: -28px;
    bottom: 0;
    background: #fff;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 10px;
    box-shadow: 0 16px 38px #23463c20;
    border-bottom: 3px solid var(--green);
    font-size: 15px;
    transform: rotate(-3deg)
}

.floating-note .icon {
    margin: 0
}

.floating-note strong {
    color: var(--green)
}

.marquee {
    padding: 20px 0;
    background: var(--pink);
    color: white;
    overflow: hidden
}

.marquee-window {
    overflow: hidden
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 35s linear infinite
}

.marquee-track>span {
    white-space: nowrap;
    font-family: Heebo, Arial, sans-serif;
    font-size: 31px;
    font-weight: 650
}

.marquee b {
    display: inline-block;
    font-size: 25px;
    margin: 0 30px
}

.marquee:hover .marquee-track {
    animation-play-state: paused
}

@keyframes marquee {
    to {
        transform: translateX(-25%)
    }
}

.teal-section {
    background: var(--green);
    color: #fff
}

.teal-section p {
    color: #e5f5f1
}

.service-intro {
    position: relative;
    min-height: 440px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center
}

.service-backdrop {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    object-position: left
}

.service-intro-content h2 {
    margin-bottom: 30px
}

.service-tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.service-tile {
    display: flex;
    flex-direction: column;
    background: #fff;
    color: var(--ink);
    border-radius: 10px;
    padding: 30px 26px;
    box-shadow: 0 10px 0 #006c5c25;
    transition: .4s var(--ease)
}

.service-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 28px #00594740
}

.service-tile h3 {
    color: var(--deep);
    font-size: 24px
}

.service-tile p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65
}

.service-tile .text-link {
    margin-top: auto;
    align-self: flex-start;
    color: var(--pink)
}

.cards-swiper {
    padding: 4px 2px 2px;
    overflow: hidden
}

.cards-swiper .swiper-wrapper {
    align-items: stretch
}

.cards-swiper .swiper-slide {
    height: auto
}

.photo-card {
    border-radius: 10px;
    background: var(--soft);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 0 #d8e6e260;
    transition: transform .5s var(--ease), background .4s
}

.photo-card>img {
    width: 100%;
    height: 245px;
    transition: transform .6s var(--ease)
}

.photo-card>div {
    background: inherit;
    padding: 28px;
    text-align: center;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center
}

.photo-card h3 {
    color: var(--deep)
}

.photo-card p {
    font-size: 15px
}

.photo-card .button {
    margin-top: auto
}

.photo-card:hover {
    background: #eaf4ef
}

.photo-card:hover>img {
    transform: scale(1.045)
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 35px
}

.slider-controls button {
    border-radius: 50%;
    height: 42px;
    width: 42px;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--green);
    border: 1px solid var(--border)
}

.slider-controls button:hover {
    background: var(--green);
    color: #fff
}

.slider-controls .swiper-pagination {
    position: static;
    width: auto;
    display: flex;
    gap: 11px
}

.slider-controls .swiper-pagination-bullet {
    background: var(--green);
    margin: 0 !important;
    width: 7px;
    height: 7px
}

.pattern-section {
    background: #fafcfb;
    position: relative;
    isolation: isolate
}

.pattern-section:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .28;
    background: url('../images/pattern.png') center/cover
}

.card {
    padding: 37px 32px;
    border-radius: 10px;
    background: white;
    box-shadow: var(--shadow);
    border: 1px solid #edf1ef;
    transition: transform .4s var(--ease), box-shadow .4s
}

.card:hover {
    transform: translateY(-7px);
    box-shadow: 0 23px 50px #15514320
}

.card p {
    margin: 0;
    font-size: 15px
}

.process-grid .card {
    background: var(--green);
    color: #fff;
    box-shadow: 0 7px 0 #007e6d25;
    border: 0;
    position: relative
}

.process-grid .card:nth-child(2) {
    background: var(--deep)
}

.process-grid .card .icon {
    background: #fff;
    border-radius: 12px;
    padding: 7px;
    width: 53px;
    height: 53px
}

.process-grid p {
    color: #e2f5f0
}

.colour-stage {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #009b83;
    box-shadow: var(--shadow)
}

.colour-stage>img {
    height: 440px;
    width: 100%;
    transition: filter .6s
}

.colour-stage[data-colour=pink]>img {
    filter: hue-rotate(220deg)
}

.colour-stage[data-colour=blue]>img {
    filter: hue-rotate(80deg)
}

.colour-stage[data-colour=clay]>img {
    filter: hue-rotate(305deg) saturate(.8)
}

.colour-stage[data-colour=cream]>img {
    filter: saturate(.35) brightness(1.05)
}

.swatch-label {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    background: white;
    padding: 18px 23px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 13px
}

.swatch-label strong {
    color: var(--deep);
    font-size: 17px
}

.colour-options {
    display: flex;
    gap: 15px;
    margin: 27px 0
}

.colour-choice {
    background: var(--swatch);
    width: 48px;
    height: 58px;
    border: 4px solid white;
    border-radius: 5px;
    box-shadow: 0 0 0 1px var(--border);
    transform: rotate(-4deg)
}

.colour-choice:hover {
    transform: translateY(-5px) rotate(0)
}

.colour-choice.active {
    box-shadow: 0 0 0 2px var(--ink);
    transform: translateY(-5px) rotate(0)
}

#colour-description {
    font-size: 14px
}

.parallax-panel {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 415px;
    display: flex;
    align-items: center;
    isolation: isolate
}

.parallax-image {
    position: absolute;
    inset: -12% 0;
    width: 100%;
    height: 124%;
    z-index: -3;
    will-change: transform
}

.parallax-shade {
    position: absolute;
    inset: 0;
    background: #1e36366b;
    z-index: -2
}

.parallax-copy {
    padding: 65px;
    max-width: 650px;
    color: #fff
}

.parallax-copy p {
    color: #fff
}

.parallax-copy .button {
    background: #fff;
    color: var(--deep)
}

.benefits>div {
    display: flex;
    gap: 20px;
    margin: 25px 0
}

.benefits .icon {
    margin: 0;
    width: 45px;
    height: 45px
}

.benefits h3 {
    font-size: 21px;
    margin: 0 0 9px
}

.benefits p {
    font-size: 15px;
    margin: 0
}

.brush-photo {
    mask: url('../images/brush-mask.png') center/100% 100% no-repeat;
    padding: 0;
    overflow: hidden
}

.brush-photo img {
    height: 480px;
    width: 100%
}

.soft-section {
    background: var(--soft)
}

.accordion {
    max-width: 960px;
    margin: auto
}

.faq-item {
    border-bottom: 1px solid #d8e3df
}

.faq-item h3 {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    letter-spacing: -.015em
}

.faq-toggle {
    background: transparent;
    color: var(--ink);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    text-align: left;
    padding: 23px 0;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5
}

.faq-toggle:hover,
.faq-toggle[aria-expanded=true] {
    color: var(--green)
}

.plus {
    width: 18px;
    height: 18px;
    position: relative;
    flex: 0 0 18px
}

.plus:before,
.plus:after {
    content: '';
    position: absolute;
    background: currentColor;
    left: 1px;
    right: 1px;
    top: 8px;
    height: 2px;
    transition: transform .35s
}

.plus:after {
    transform: rotate(90deg)
}

[aria-expanded=true] .plus:after {
    transform: rotate(0)
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    visibility: hidden;
    transition: grid-template-rows .4s var(--ease), visibility .4s
}

.faq-answer>div {
    overflow: hidden;
    min-height: 0
}

.faq-answer p {
    padding: 0 30px 24px 0;
    margin: 0;
    font-size: 15px
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
    visibility: visible
}

.contact-split {
    gap: 90px;
    align-items: start
}

.contact-email {
    color: var(--green);
    font-weight: 600;
    overflow-wrap: anywhere;
    display: block;
    margin-bottom: 22px
}

.disclaimer-short {
    font-size: 13px;
    line-height: 1.7;
    max-width: 520px
}

.contact-photo {
    height: 145px;
    width: 280px;
    border-radius: 8px
}

.contact-form {
    position: relative;
    background: var(--soft);
    padding: 35px;
    border: 1px solid #e0e9e4;
    border-radius: 12px;
    box-shadow: 0 8px 0 #e6eeeb, 0 24px 50px #123b3110
}

.contact-form h3 {
    font-size: 26px;
    margin-bottom: 25px
}

.contact-form label,
label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: 14px;
    font-weight: 550
}

.contact-form>label,
.form-row {
    margin-bottom: 17px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

input,
textarea,
select {
    width: 100%;
    min-width: 0;
    border: 1px solid #d9e3df;
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
    padding: 12px 13px;
    line-height: 1.5;
    transition: border-color .3s, box-shadow .3s;
    font-size: 15px
}

textarea {
    resize: vertical;
    min-height: 110px
}

input:hover,
textarea:hover,
select:hover {
    border-color: var(--green)
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px #009b8312
}

select {
    appearance: none;
    padding-right: 38px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23007e6d' stroke-width='2'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: right 12px center
}

.consent {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 10px !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.6
}

.consent input,
.checklist input {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    accent-color: var(--green);
    margin: 2px 0 0;
    cursor: pointer
}

.consent a {
    color: var(--deep);
    text-decoration: underline
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.form-status {
    font-size: 14px;
    margin: 15px 0 0
}

.form-status:empty {
    display: none
}

.form-status.error {
    color: #a3254e
}

.site-footer {
    padding: 60px 0 25px;
    background: #233b3a;
    color: #fff
}

.site-footer .brand span {
    color: #fff
}

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

.footer-grid>div:first-child p {
    font-size: 13px;
    color: #c3d3cf;
    margin: 20px 0 0;
    max-width: 490px
}

.footer-grid h3 {
    font-size: 20px;
    letter-spacing: -.01em
}

.footer-grid>div:not(:first-child)>a {
    display: block;
    margin: 10px 0;
    font-size: 14px;
    color: #d8e4e0;
    overflow-wrap: anywhere
}

.site-footer a:hover {
    color: #74dfbf
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid #ffffff20;
    margin-top: 35px;
    padding-top: 24px;
    font-size: 12px;
    color: #becfca
}

.footer-bottom>div {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.cookie-settings {
    padding: 0;
    background: none;
    color: inherit;
    font-size: 12px
}

.credits {
    font-size: 11px;
    color: #b4c5bf;
    padding-top: 17px
}

.credits a {
    text-decoration: underline
}

.cookie-banner {
    position: fixed;
    z-index: 150;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    max-width: calc(100% - 32px);
    padding: 14px 18px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 10px 50px #152f3226;
    border-radius: 12px
}

.cookie-banner p {
    margin: 0;
    font-size: 12px;
    line-height: 1.5
}

.cookie-banner strong {
    display: block;
    color: var(--ink);
    font-size: 13px
}

.cookie-banner p a {
    text-decoration: underline
}

.cookie-banner .subtle {
    font-size: 12px;
    background: transparent;
    color: var(--deep);
    padding: 8px;
    white-space: nowrap
}

.page-transition {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: var(--green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    pointer-events: none;
    visibility: hidden;
    clip-path: inset(0 0 100% 0);
    transition: clip-path .3s var(--ease), visibility .3s
}

.page-transition.active {
    visibility: visible;
    clip-path: inset(0 0 0 0)
}

.page-transition img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    background: white;
    padding: 10px;
    border-radius: 16px
}

.page-transition span {
    font-family: Heebo, sans-serif;
    font-size: 23px
}

.paint-progress {
    width: 120px;
    height: 4px;
    border-radius: 3px;
    background: #fff6;
    overflow: hidden
}

.paint-progress:after {
    content: '';
    display: block;
    background: var(--pink);
    width: 50%;
    height: 100%;
    animation: loading .6s alternate infinite
}

@keyframes loading {
    to {
        transform: translateX(100%)
    }
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px
}

.tab-buttons button {
    padding: 11px 26px;
    border-radius: 25px;
    background: var(--soft);
    color: var(--ink);
    font-size: 15px
}

.tab-buttons button[aria-selected=true] {
    background: var(--green);
    color: #fff;
    box-shadow: 0 5px 15px #009b8325
}

.tab-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 55px;
    align-items: center;
    animation: fade-in .45s var(--ease)
}

.tab-layout img {
    height: 380px;
    width: 100%;
    border-radius: 10px
}

.tab-layout h3 {
    font-size: 33px
}

.tab-layout li {
    padding: 7px 0;
    color: var(--muted);
    font-size: 15px
}

.tab-layout li::marker {
    color: var(--green)
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

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

.finish-card {
    padding: 25px;
    text-align: left;
    background: #fff;
    color: var(--ink);
    border: 2px solid transparent;
    border-radius: 10px;
    box-shadow: var(--shadow)
}

.finish-card.selected {
    border-color: var(--green);
    transform: translateY(-4px)
}

.finish-card p {
    font-size: 14px
}

.finish-sample {
    display: block;
    height: 90px;
    background: #009b83;
    border-radius: 5px;
    margin-bottom: 22px
}

.finish-sample.eggshell {
    background: #359a86
}

.finish-sample.satin {
    background: #6ab3a0
}

.finish-note {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #fff;
    border-radius: 8px;
    padding: 22px 28px;
    margin-top: 25px;
    border-left: 4px solid var(--green)
}

.finish-note strong {
    font-size: 22px;
    color: var(--green);
    min-width: 100px
}

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

.prep-board,
.weather-board,
.quote-board {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.checklist {
    display: grid;
    gap: 12px
}

.checklist label {
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: white;
    color: var(--ink);
    border-radius: 7px;
    box-shadow: 0 5px 16px #183f3210;
    cursor: pointer;
    font-size: 15px
}

.checklist label:has(input:checked) {
    background: #e8f6ef
}

.checklist label:has(input:checked) span {
    color: var(--deep)
}

.check-progress {
    display: block;
    font-weight: 600;
    font-size: 15px;
    margin-top: 15px
}

.detail-image img {
    height: 430px;
    width: 100%;
    border-radius: 10px
}

.scope-planner {
    display: grid;
    grid-template-columns: 240px 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 35px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow)
}

.scope-planner h3 {
    font-size: 23px;
    margin-bottom: 10px
}

.scope-planner p {
    font-size: 14px;
    margin: 0
}

.editorial-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #f1f6f2;
    border-radius: 12px;
    overflow: hidden;
    align-items: center
}

.editorial-cta img {
    height: 390px;
    width: 100%
}

.editorial-cta>div {
    padding: 45px
}

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

.exposure-card {
    padding: 35px;
    border-radius: 10px;
    background: white;
    text-align: left;
    border: 2px solid transparent;
    box-shadow: var(--shadow);
    color: var(--ink)
}

.exposure-card p {
    margin: 0;
    font-size: 15px
}

.exposure-card[aria-pressed=true] {
    border-color: var(--green);
    transform: translateY(-5px)
}

.exposure-note {
    background: white;
    padding: 23px 28px;
    border-radius: 8px;
    margin: 26px 0 0;
    font-size: 15px;
    min-height: 75px
}

.weather-board>div:last-child {
    padding: 35px;
    background: #fff;
    border-radius: 10px;
    color: var(--ink);
    box-shadow: 0 10px 0 #007e6d55
}

.weather-board #season-note {
    color: var(--muted);
    margin: 20px 0 0;
    font-size: 15px
}

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

.reveal-card {
    height: 390px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    isolation: isolate
}

.reveal-card img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: -2;
    transition: transform .6s var(--ease)
}

.reveal-card>div {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffffed;
    padding: 25px;
    transition: background .4s
}

.reveal-card h3 {
    font-size: 27px;
    margin: 0
}

.reveal-card p {
    margin: 0;
    max-height: 0;
    opacity: 0;
    font-size: 15px;
    transition: max-height .4s var(--ease), opacity .4s, margin .4s
}

.reveal-card:hover p,
.reveal-card:focus p {
    max-height: 180px;
    opacity: 1;
    margin-top: 15px
}

.reveal-card:hover img,
.reveal-card:focus img {
    transform: scale(1.06)
}

.reveal-card:hover>div,
.reveal-card:focus>div {
    background: #fff
}

.small-planning-photo {
    height: 150px;
    width: 320px;
    border-radius: 8px
}

.exterior-cta {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
    isolation: isolate
}

.exterior-cta>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2
}

.exterior-cta:before {
    content: '';
    position: absolute;
    inset: 0;
    background: #19312b60;
    z-index: -1
}

.exterior-cta>div {
    padding: 55px;
    color: white;
    max-width: 650px
}

.exterior-cta p {
    color: white
}

.legal-hero {
    padding: 180px 0 65px;
    background: var(--soft) url('../images/pattern.png') center/cover
}

.legal-hero a {
    font-size: 14px;
    color: var(--green)
}

.legal-hero h1 {
    margin: 25px 0;
    font-size: clamp(42px, 5vw, 72px);
    color: var(--deep)
}

.legal-hero p {
    margin: 0
}

.legal-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 80px
}

.legal-nav {
    position: sticky;
    top: 125px;
    align-self: start;
    background: var(--soft);
    border: 1px solid var(--border);
    padding: 23px;
    border-radius: 8px
}

.legal-nav a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    color: var(--deep)
}

.legal-content article {
    margin-bottom: 40px;
    scroll-margin-top: 120px
}

.legal-content h2 {
    font-size: 29px
}

.legal-content a {
    color: var(--green);
    text-decoration: underline
}

.legal-content p {
    max-width: 900px
}

.legal-content article:last-child {
    margin-bottom: 0
}

@media(min-width:1800px) {
    .hero {
        max-height: 930px
    }

    .paint-panel {
        width: 610px
    }

    .section {
        padding: 95px 0
    }
}

@media(max-width:1100px) {

    .container,
    .site-header {
        width: calc(100% - 56px)
    }

    .nav-shell {
        gap: 20px;
        padding: 0 20px
    }

    nav {
        gap: 19px
    }

    .nav-cta {
        padding-inline: 18px
    }

    .brand span {
        font-size: 20px
    }

    .split {
        gap: 40px
    }

    .paint-panel {
        max-width: 58%;
        padding: 65px 40px
    }

    .section {
        padding: 70px 0
    }

    .service-intro {
        gap: 30px;
        grid-template-columns: .85fr 1.3fr
    }

    .service-tiles {
        gap: 13px
    }

    .service-tile {
        padding: 25px 20px
    }

    .service-tile h3 {
        font-size: 22px
    }

    .service-tile p {
        font-size: 13px
    }

    .scope-planner {
        grid-template-columns: 200px 1fr
    }

    .scope-planner .button {
        grid-column: 2
    }

    .footer-grid {
        gap: 35px
    }

    .hero {
        min-height: 640px
    }

    .card {
        padding: 27px
    }

    .contact-form {
        padding: 27px
    }
}

@media(max-width:900px) {
    .site-header {
        top: 12px;
        height: 70px;
        margin-top: 12px;
        margin-bottom: -82px
    }

    .nav-shell {
        height: 70px
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
        flex-direction: column;
        gap: 6px;
        justify-content: center;
        align-items: center;
        background: var(--soft);
        height: 42px;
        width: 42px;
        border-radius: 50%;
        z-index: 2
    }

    .menu-toggle span {
        width: 18px;
        height: 2px;
        background: var(--ink);
        transition: transform .3s
    }

    .menu-toggle[aria-expanded=true] span:first-child {
        transform: translateY(4px) rotate(45deg)
    }

    .menu-toggle[aria-expanded=true] span:last-child {
        transform: translateY(-4px) rotate(-45deg)
    }

    .nav-cta {
        margin-left: 0
    }

    nav {
        position: fixed;
        top: 94px;
        left: 28px;
        right: 28px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        background: #fff;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 20px 35px #14382a28;
        max-height: calc(100svh - 120px);
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: .3s var(--ease)
    }

    nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0)
    }

    nav>a,
    .services-toggle {
        font-size: 19px
    }

    .services-toggle {
        justify-content: space-between;
        width: 100%
    }

    .dropdown-panel {
        position: static;
        display: none;
        width: 100%;
        opacity: 1;
        transform: none;
        visibility: visible;
        box-shadow: none;
        border: 0;
        background: var(--soft);
        margin-top: 8px
    }

    .nav-dropdown.open .dropdown-panel {
        display: block
    }

    .dropdown-panel a {
        font-size: 16px
    }

    .hero {
        min-height: 620px;
        height: 78svh
    }

    .paint-panel {
        max-width: 64%;
        width: 530px
    }

    .hero h1 {
        font-size: 53px
    }

    .hero-content {
        padding-top: 65px
    }

    .hero-bottom>span {
        font-size: 12px
    }

    .split {
        gap: 35px
    }

    .split h2 {
        font-size: 37px
    }

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

    .service-backdrop {
        height: 300px
    }

    .service-intro-content h2 {
        text-align: center
    }

    .service-tile {
        padding: 30px
    }

    .three {
        gap: 16px
    }

    .card {
        padding: 25px 20px
    }

    .card h3 {
        font-size: 22px
    }

    .card p {
        font-size: 14px
    }

    .floating-note {
        left: 12px;
        padding: 15px;
        font-size: 13px
    }

    .image-composition>img {
        height: 365px
    }

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

    .contact-split>div {
        max-width: 660px
    }

    .contact-photo {
        display: none
    }

    .prep-board,
    .weather-board,
    .quote-board {
        gap: 35px
    }

    .scope-planner {
        gap: 25px
    }

    .editorial-cta>div {
        padding: 30px
    }

    .editorial-cta h2 {
        font-size: 36px
    }

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

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

    .footer-grid>div:first-child p {
        max-width: none
    }

    .legal-layout {
        grid-template-columns: 190px 1fr;
        gap: 35px
    }
}

@media(max-width:640px) {
    html {
        scroll-padding-top: 95px
    }

    .container,
    .site-header {
        width: calc(100% - 32px)
    }

    .section {
        padding: 49px 0
    }

    .compact-section {
        padding: 18px 0
    }

    h1 {
        font-size: 43px
    }

    h2,
    .split h2 {
        font-size: 35px;
        text-align: center
    }

    h3 {
        font-size: 22px
    }

    .section-heading {
        margin-bottom: 28px
    }

    .section-heading p {
        font-size: 14px
    }

    .left {
        text-align: center
    }

    .nav-shell {
        padding: 0 14px;
        gap: 10px
    }

    .brand span {
        font-size: 19px
    }

    .brand img {
        width: 30px;
        height: 30px
    }

    .nav-cta {
        display: none
    }

    .site-header,
    .nav-shell {
        height: 62px
    }

    .site-header {
        margin-bottom: -74px
    }

    nav {
        top: 87px;
        left: 16px;
        right: 16px;
        max-height: calc(100svh - 106px);
        min-height: 300px
    }

    .hero {
        min-height: 600px;
        height: 88svh;
        max-height: 760px
    }

    .hero-content {
        padding-top: 75px;
        justify-content: center;
        align-items: center
    }

    .paint-panel {
        max-width: 100%;
        width: 395px;
        padding: 55px 32px 51px
    }

    .hero h1 {
        font-size: 48px
    }

    .paint-panel p {
        font-size: 13px;
        max-width: 270px;
        margin-bottom: 22px
    }

    .hero-swiper img {
        object-position: 60% center
    }

    .hero-bottom {
        bottom: 22px;
        justify-content: center;
        gap: 18px
    }

    .hero-bottom>span {
        display: none
    }

    .hero-pause {
        font-size: 11px
    }

    .hero-pagination {
        gap: 13px
    }

    .service-hero {
        min-height: 560px;
        height: 76svh;
        max-height: 640px
    }

    .service-hero .paint-panel {
        padding-inline: 28px
    }

    .service-hero h1 {
        font-size: 44px
    }

    .split {
        grid-template-columns: 1fr;
        gap: 29px;
        text-align: center
    }

    .split p {
        font-size: 15px
    }

    .split .button {
        margin-inline: auto
    }

    .split>div>p:last-child {
        margin-bottom: 0
    }

    .image-composition>img {
        height: 290px
    }

    .floating-note {
        text-align: left;
        bottom: 0;
        left: 18px
    }

    .marquee {
        padding: 14px 0
    }

    .marquee-track>span {
        font-size: 24px
    }

    .marquee b {
        margin: 0 19px;
        font-size: 19px
    }

    .service-backdrop {
        height: 220px
    }

    .service-intro {
        gap: 28px
    }

    .service-tiles {
        gap: 14px
    }

    .service-tile {
        text-align: center;
        padding: 23px 15px;
        align-items: center
    }

    .service-tile .icon {
        width: 36px;
        height: 36px
    }

    .service-tile h3 {
        font-size: 21px
    }

    .service-tile p {
        font-size: 13px
    }

    .service-tile .text-link {
        align-self: center;
        font-size: 12px
    }

    .three {
        grid-template-columns: 1fr;
        gap: 17px
    }

    .card {
        text-align: center;
        padding: 26px
    }

    .card .icon {
        margin-inline: auto
    }

    .photo-card>img {
        height: 250px
    }

    .photo-card>div {
        padding: 25px 22px
    }

    .slider-controls {
        margin-top: 26px
    }

    .colour-stage>img {
        height: 320px
    }

    .colour-options {
        justify-content: center;
        gap: 13px
    }

    .colour-choice {
        width: 43px;
        height: 52px
    }

    .swatch-label {
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 14px;
        flex-direction: column;
        gap: 3px
    }

    .parallax-panel {
        min-height: 370px
    }

    .parallax-copy {
        text-align: center;
        padding: 38px 25px;
        width: 100%
    }

    .parallax-copy h2 {
        font-size: 35px
    }

    .parallax-copy p {
        font-size: 14px
    }

    .parallax-image {
        will-change: auto
    }

    .benefits>div {
        text-align: left;
        gap: 16px;
        margin: 24px 0
    }

    .benefits h3 {
        font-size: 21px
    }

    .benefits p {
        font-size: 14px
    }

    .brush-photo img {
        height: 340px
    }

    .faq-toggle {
        font-size: 15px;
        padding: 19px 0;
        gap: 16px
    }

    .faq-answer p {
        text-align: left;
        font-size: 14px;
        padding-right: 10px
    }

    .contact-form {
        padding: 24px 20px;
        text-align: left
    }

    .contact-form h3 {
        text-align: center;
        font-size: 25px
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .contact-form label {
        font-size: 13px
    }

    .contact-email {
        font-size: 16px
    }

    .disclaimer-short {
        font-size: 12px !important
    }

    .contact-form .button {
        display: flex;
        margin-inline: auto
    }

    .site-footer {
        padding: 43px 0 22px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        text-align: center;
        gap: 24px 17px
    }

    .footer-grid .brand {
        justify-content: center
    }

    .footer-grid h3 {
        font-size: 19px
    }

    .footer-grid>div:not(:first-child)>a {
        font-size: 12px
    }

    .footer-grid>div:first-child p {
        font-size: 12px
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        font-size: 11px
    }

    .footer-bottom>div {
        justify-content: center;
        gap: 18px
    }

    .credits {
        text-align: center;
        font-size: 10px
    }

    .cookie-banner {
        padding: 11px 12px;
        gap: 9px;
        bottom: 12px;
        flex-wrap: wrap;
        justify-content: center;
        width: calc(100% - 24px)
    }

    .cookie-banner p {
        font-size: 11px;
        flex: 1 1 160px
    }

    .cookie-banner strong {
        font-size: 12px
    }

    .cookie-banner .button {
        font-size: 12px;
        padding: 8px 14px;
        min-height: 36px
    }

    .cookie-banner .subtle {
        font-size: 11px
    }

    .tab-buttons {
        gap: 8px;
        margin-bottom: 25px
    }

    .tab-buttons button {
        font-size: 13px;
        padding: 9px 16px
    }

    .tab-layout {
        grid-template-columns: 1fr;
        gap: 26px;
        text-align: center
    }

    .tab-layout img {
        height: 270px
    }

    .tab-layout h3 {
        font-size: 29px
    }

    .tab-layout p {
        font-size: 15px
    }

    .tab-layout ul {
        padding-left: 22px;
        text-align: left
    }

    .finish-grid {
        gap: 10px
    }

    .finish-card {
        padding: 15px 10px;
        text-align: center
    }

    .finish-card h3 {
        font-size: 20px
    }

    .finish-card p {
        font-size: 12px
    }

    .finish-card .text-link {
        font-size: 11px
    }

    .finish-sample {
        height: 70px
    }

    .finish-note {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 21px
    }

    .finish-note p {
        font-size: 13px
    }

    .prep-board,
    .weather-board,
    .quote-board {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center
    }

    .prep-board p,
    .weather-board p {
        font-size: 15px
    }

    .checklist label {
        text-align: left;
        font-size: 14px;
        padding: 15px
    }

    .detail-image img {
        height: 290px
    }

    .scope-planner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 25px;
        gap: 22px
    }

    .scope-planner .button {
        grid-column: auto;
        margin: auto
    }

    .scope-planner label {
        text-align: left
    }

    .editorial-cta {
        grid-template-columns: 1fr
    }

    .editorial-cta img {
        height: 240px
    }

    .editorial-cta>div {
        text-align: center;
        padding: 30px 22px
    }

    .editorial-cta p {
        font-size: 14px
    }

    .exposure-grid {
        grid-template-columns: 1fr;
        gap: 14px
    }

    .exposure-card {
        padding: 23px;
        text-align: center
    }

    .exposure-card .icon {
        margin-inline: auto
    }

    .exposure-card h3 {
        margin-bottom: 10px
    }

    .exposure-note {
        text-align: center;
        font-size: 14px;
        padding: 20px
    }

    .weather-board>div:last-child {
        padding: 25px
    }

    .weather-board label {
        text-align: left
    }

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

    .reveal-card {
        height: 315px
    }

    .reveal-card h3 {
        font-size: 27px;
        text-align: center
    }

    .reveal-card p {
        max-height: 180px;
        opacity: 1;
        margin-top: 13px;
        text-align: center;
        font-size: 14px
    }

    .small-planning-photo {
        margin: auto
    }

    .exterior-cta {
        min-height: 380px
    }

    .exterior-cta>div {
        padding: 35px 24px;
        text-align: center
    }

    .exterior-cta p {
        font-size: 14px
    }

    .legal-hero {
        padding: 140px 0 42px;
        text-align: center
    }

    .legal-hero h1 {
        font-size: 44px
    }

    .legal-hero p {
        font-size: 14px
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .legal-nav {
        position: static;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px 17px;
        padding: 17px
    }

    .legal-nav a {
        font-size: 12px;
        padding: 4px
    }

    .legal-content h2 {
        font-size: 28px;
        text-align: left
    }

    .legal-content p {
        font-size: 15px
    }

    .legal-content article {
        margin-bottom: 30px
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    *,
    *:before,
    *:after {
        animation: none !important;
        transition: none !important
    }

    .hero-swiper img {
        transform: none !important
    }

    [data-aos] {
        opacity: 1 !important;
        transform: none !important
    }

    .page-transition {
        display: none !important
    }

    .parallax-image {
        transform: none !important
    }
}

.paint-panel {
    background: none;
    isolation: isolate
}

.paint-panel:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #fff;
    mask: url('../images/panel-mask.png') center/100% 100% no-repeat
}

.brush-photo {
    mask-image: url('../images/panel-mask.png')
}

.hero:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 38px;
    background: url('../images/brush-mask.png') bottom/100% 100% no-repeat;
    pointer-events: none;
    z-index: 3
}

.hero-bottom {
    bottom: 52px
}

.icon:not([src*="palette"]) {
    filter: invert(40%) sepia(70%) saturate(992%) hue-rotate(126deg) brightness(87%) contrast(102%)
}

.process-grid .icon {
    filter: none;
    background: #fff
}

.service-tile .icon {
    filter: invert(40%) sepia(81%) saturate(1790%) hue-rotate(300deg) brightness(99%) contrast(88%)
}

@media(hover:hover) {
    .nav-dropdown:hover .dropdown-panel {
        opacity: 1;
        visibility: visible;
        transform: translateY(0)
    }
}

/* Painting studio update */
:root {
    --orange: #f17e39;
    --yellow: #f6c644;
    --warm-ink: #734221
}

.hero:after {
    height: clamp(76px, 12vw, 185px);
    bottom: -1px;
    background-size: 100% 100%;
    background-position: center bottom
}

.hero-bottom {
    display: none
}

.hero-content {
    padding-bottom: 45px
}

.hero-swiper img {
    transition: transform 6.7s linear
}

.hero .paint-panel {
    transition: transform .65s var(--ease)
}

.hero .paint-panel:hover {
    transform: translateY(-4px)
}

.paint-section,
.paint-values,
.offer-section,
.perspectives-section {
    position: relative;
    isolation: isolate
}

.paint-section>.container,
.paint-values>.container,
.offer-section>.container,
.perspectives-section>.container {
    position: relative;
    z-index: 2
}

.paint-section:after {
    content: '';
    width: 70px;
    height: 6px;
    border-radius: 7px;
    background: var(--section-accent, var(--green));
    position: absolute;
    left: max(48px, calc((100% - 1480px)/2));
    top: 26px;
    transform: scaleX(.6);
    transform-origin: left;
    opacity: .3;
    transition: transform .6s, opacity .6s;
    pointer-events: none
}

.paint-section:hover:after {
    transform: scaleX(1);
    opacity: .8
}

.paint-section:has(.parallax-panel):after {
    display: none
}

.section-heading h2 {
    transition: transform .6s var(--ease), color .5s
}

.section:hover .section-heading h2 {
    transform: translateY(-3px)
}

.paint-decor {
    position: absolute;
    width: 145px;
    height: 160px;
    pointer-events: none;
    z-index: 0;
    opacity: .16;
    top: 35px;
    animation: tool-sway 7s ease-in-out infinite;
    animation-play-state: paused
}

.paint-decor img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none
}

.decor-right {
    right: 22px;
    transform: rotate(18deg);
    transform-origin: 75% 80%
}

.decor-left {
    left: 22px;
    top: auto;
    bottom: 30px;
    transform: rotate(-22deg);
    animation-delay: -2s
}

.paint-splash {
    position: absolute;
    width: 220px;
    height: 210px;
    right: 0;
    top: 25px;
    z-index: 0;
    background: var(--green);
    mask: url('../images/fi-splat.webp') center/contain no-repeat;
    opacity: .075;
    pointer-events: none;
    animation: splash-breathe 8s ease-in-out infinite;
    animation-play-state: paused
}

.splash-orange {
    background: var(--orange);
    right: auto;
    left: 0;
    top: auto;
    bottom: 10px
}

.splash-pink {
    background: var(--pink);
    width: 180px;
    height: 175px;
    right: 15px
}

.splash-yellow {
    background: var(--yellow);
    right: 15px;
    top: 25px;
    opacity: .16
}

.teal-section .paint-splash {
    background: var(--yellow);
    opacity: .17
}

.teal-section .paint-decor {
    opacity: .22
}

.is-inview>.paint-decor,
.is-inview>.paint-splash {
    animation-play-state: running
}

@keyframes tool-sway {

    0%,
    100% {
        translate: 0 0;
        rotate: -7deg
    }

    50% {
        translate: 9px -13px;
        rotate: 9deg
    }
}

@keyframes splash-breathe {

    0%,
    100% {
        scale: .92;
        rotate: -3deg
    }

    50% {
        scale: 1.06;
        rotate: 4deg
    }
}

.button:hover {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 7px 0 #be54281a, 0 13px 27px #cb67112b
}

.button:active {
    transform: translateY(0);
    box-shadow: 0 2px 0 #be54281a
}

.service-tile:nth-child(2) {
    border-bottom: 5px solid var(--yellow)
}

.service-tile:first-child {
    border-bottom: 5px solid var(--orange)
}

.service-tile .icon {
    filter: none !important
}

.floating-note {
    border-bottom-color: var(--orange)
}

.floating-note:hover {
    transform: translateY(-5px) rotate(0)
}

.service-tile,
.card,
.photo-card,
.finish-card,
.exposure-card,
.offer-card,
.story-card,
.reveal-card,
.legal-card {
    transform-style: preserve-3d;
    transition: transform .5s var(--ease), box-shadow .5s, background-color .5s, border-color .4s
}

.service-tile:hover,
.card:hover,
.photo-card:hover,
.finish-card:hover,
.exposure-card:hover,
.offer-card:hover,
.story-card:hover {
    transform: perspective(1000px) translateY(-7px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    box-shadow: 0 14px 0 #deebe330, 0 25px 40px #3150471d
}

.photo-card:nth-child(2n) {
    border-bottom-color: var(--orange)
}

.photo-card>div {
    border-bottom: 3px solid var(--green)
}

.swiper-slide:nth-child(3n+2) .photo-card>div {
    border-bottom-color: var(--orange)
}

.swiper-slide:nth-child(3n+3) .photo-card>div {
    border-bottom-color: var(--yellow)
}

.slider-controls button {
    box-shadow: 0 4px 0 #dee8e3
}

.slider-controls button:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px)
}

.slider-controls .swiper-pagination-bullet {
    transition: width .4s, background .4s;
    border-radius: 10px
}

.slider-controls .swiper-pagination-bullet-active {
    background: var(--orange);
    width: 20px
}

.benefits>div {
    padding: 14px 18px;
    margin: 10px -18px;
    border-radius: 9px;
    transition: background .4s, transform .4s
}

.benefits>div:hover {
    background: #fff6db;
    transform: translateX(5px)
}

.faq-item {
    padding-inline: 16px;
    border-radius: 8px;
    transition: background .4s, box-shadow .4s
}

.faq-item:hover {
    background: #fffbf0
}

.faq-item.open {
    background: #fff;
    box-shadow: 0 5px 25px #1e5c4310
}

.faq-toggle .plus {
    color: var(--orange)
}

.checklist label:hover {
    transform: translateX(4px);
    box-shadow: inset 4px 0 var(--orange), 0 8px 20px #1c453614
}

.tab-buttons button:hover {
    background: #fff0cf;
    color: var(--warm-ink);
    transform: translateY(-3px)
}

.tab-buttons button[aria-selected=true] {
    background: var(--green);
    color: #fff
}

.contact-form {
    border-top: 5px solid var(--orange);
    transition: box-shadow .5s, transform .5s
}

.contact-form:hover {
    box-shadow: 0 8px 0 #f4cc812b, 0 28px 60px #24452b1c
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover {
    border-color: var(--orange)
}

.legal-card {
    padding: 25px 28px;
    border-left: 4px solid #f6c644;
    background: #fff;
    box-shadow: 0 10px 30px #24452b0a;
    border-radius: 8px
}

.legal-card:hover {
    border-left-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow)
}

.legal-hero {
    position: relative
}

.legal-hero:after {
    content: '';
    position: absolute;
    right: 10%;
    bottom: 25px;
    width: 160px;
    height: 140px;
    mask: url('../images/fi-splat.webp') center/contain no-repeat;
    background: var(--orange);
    opacity: .12;
    pointer-events: none
}

.legal-nav a:hover {
    color: var(--orange);
    transform: translateX(4px)
}

/* Unbroken, closely packed moving content */
.marquee {
    background: var(--orange);
    padding: 15px 0;
    border-block: 1px solid #e56b2a;
    box-shadow: inset 0 -5px #cc622019
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 38s linear infinite;
    gap: 0
}

.marquee-group {
    display: flex;
    align-items: center;
    flex: 0 0 auto
}

.marquee-group>span {
    display: flex;
    align-items: center;
    gap: 17px;
    white-space: nowrap;
    padding-right: 30px
}

.marquee-group .icon {
    width: 34px;
    height: 34px;
    margin: 0;
    filter: brightness(0) invert(1) !important;
    transform: rotate(-9deg)
}

.marquee-group b {
    margin: 0;
    font-family: Heebo, Arial, sans-serif;
    font-size: 29px;
    line-height: 1.3;
    color: #fff;
    font-weight: 650
}

.marquee-group i {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--yellow);
    margin-left: 15px;
    box-shadow: 0 0 0 5px #ffffff15
}

.marquee:hover .marquee-track {
    animation-play-state: paused
}

/* Reference-inspired paint stamps with truthful content */
.paint-values {
    padding: 48px 0 57px
}

.paint-value-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
    align-items: center
}

.paint-value {
    position: relative;
    isolation: isolate;
    text-align: center;
    min-height: 160px;
    display: grid;
    place-items: center;
    color: white;
    padding: 30px 16px;
    transition: transform .5s var(--ease)
}

.paint-value:before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--green);
    mask: url('../images/panel-mask.png') center/100% 100% no-repeat;
    z-index: -1
}

.paint-value:nth-child(even) {
    transform: translateY(14px) rotate(3deg)
}

.paint-value:nth-child(odd) {
    transform: rotate(-3deg)
}

.paint-value-pink:before {
    background: var(--pink)
}

.paint-value-orange:before {
    background: var(--orange)
}

.paint-value strong {
    display: block;
    font: 750 clamp(30px, 3vw, 48px)/1.1 Heebo, Arial, sans-serif;
    letter-spacing: -.04em
}

.paint-value span {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 500
}

.paint-value:hover {
    transform: translateY(-8px) rotate(0) scale(1.025)
}

/* Refined reference process */
.process-remix {
    background: #fff
}

.process-remix:before {
    background-image: url('../images/dashed.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center 68%;
    opacity: .45
}

.process-remix .process-grid {
    padding: 16px 0
}

.process-remix .card {
    position: relative;
    text-align: center;
    padding: 43px 33px 31px;
    min-height: 275px;
    box-shadow: 0 8px 0 #00695216
}

.process-label {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 18px;
    border-radius: 30px;
    background: var(--pink);
    font-size: 12px;
    white-space: nowrap;
    font-weight: 650;
    color: #fff;
    box-shadow: 0 4px 0 #a9295e10
}

.process-remix .card:nth-child(2) .process-label {
    background: var(--orange)
}

.process-remix .card:nth-child(3) .process-label {
    background: var(--yellow);
    color: #553f12
}

.process-remix .card .icon {
    margin: 0 auto 19px;
    width: 65px;
    height: 65px;
    object-fit: contain;
    background: #fff;
    padding: 9px;
    border-radius: 16px;
    filter: none !important;
    box-shadow: 0 4px 0 #003e3e20
}

.process-remix h3 {
    font-size: 24px;
    margin-bottom: 13px
}

.process-remix p {
    font-size: 14px;
    line-height: 1.7
}

/* Wall recolouring is isolated to a pixel mask, never a whole-photo filter. */
.colour-lab {
    background: #f8faf8
}

.colour-lab .split {
    grid-template-columns: 1.25fr 1fr;
    gap: 55px
}

.colour-stage {
    box-shadow: 0 12px 0 #e2ebe4, 0 25px 45px #244a3815;
    border: 9px solid white;
    border-radius: 15px;
    overflow: hidden;
    min-width: 0
}

.colour-stage .room-original {
    height: auto !important;
    width: 100%;
    aspect-ratio: 1.5;
    filter: none !important;
    transform: none !important
}

.wall-canvases {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1
}

.wall-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: 0;
    transition: opacity .42s var(--ease)
}

.wall-layer.visible {
    opacity: 1
}

.swatch-label {
    z-index: 3;
    bottom: 18px;
    left: 18px;
    right: 18px;
    padding: 15px 18px;
    pointer-events: none
}

.colour-options {
    gap: 12px;
    margin: 30px 0 28px;
    align-items: start
}

.colour-choice {
    height: 67px;
    width: 49px;
    border: 4px solid #fff;
    border-radius: 4px;
    position: relative;
    margin-bottom: 24px;
    box-shadow: 0 0 0 1px #d8dfda, 0 5px 0 #c6d3cb50;
    transform: rotate(-5deg)
}

.colour-choice:nth-child(even) {
    transform: rotate(5deg)
}

.colour-choice span {
    position: absolute;
    top: 77px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    color: #657269;
    font-weight: 600;
    white-space: nowrap
}

.colour-choice:hover,
.colour-choice.active {
    transform: translateY(-8px) rotate(0);
    box-shadow: 0 0 0 2px var(--ink), 0 8px 0 #bccfc63b
}

.colour-caveat {
    font-size: 12px !important;
    color: #7e8a82 !important;
    margin-top: -8px
}

.colour-lab #colour-description {
    font-size: 15px;
    color: var(--deep);
    min-height: 52px
}

/* Orange photographic offer section */
.offer-section {
    padding: 65px 0 70px;
    background: var(--orange)
}

.offer-section:before {
    content: '';
    position: absolute;
    inset: 0 0 34%;
    background: var(--orange);
    z-index: 0
}

.offer-section:after {
    content: '';
    position: absolute;
    inset: 72% 0 0;
    background: #fff;
    z-index: 0
}

.offer-section>.container {
    z-index: 2
}

.offer-section .section-heading {
    color: #fff;
    margin-bottom: 45px
}

.offer-section .section-heading p {
    color: #fff5e8
}

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

.offer-photo {
    overflow: hidden;
    aspect-ratio: 1.5
}

.offer-photo img {
    height: 100%;
    width: 100%;
    transition: transform .65s var(--ease)
}

.offer-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    background: transparent
}

.offer-card:hover .offer-photo img {
    transform: scale(1.045)
}

.offer-copy {
    position: relative;
    padding: 51px 25px 28px;
    text-align: center;
    margin: -15px 16px 0;
    background: white;
    box-shadow: 0 10px 32px #1d462614;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 4px solid var(--green)
}

.offer-icon {
    position: absolute;
    left: 50%;
    top: -26px;
    transform: translateX(-50%) rotate(-5deg);
    width: 57px;
    height: 57px;
    background: var(--yellow);
    border: 5px solid white;
    box-shadow: 0 5px 16px #65431215;
    display: grid;
    place-items: center;
    transition: transform .5s
}

.offer-icon .icon {
    margin: 0;
    width: 33px;
    height: 33px;
    filter: none !important
}

.offer-card:hover .offer-icon {
    transform: translateX(-50%) rotate(4deg) translateY(-4px)
}

.offer-copy h3 {
    font-size: 24px
}

.offer-copy p {
    font-size: 14px;
    line-height: 1.65
}

.offer-copy .text-link {
    margin-top: auto;
    font-size: 13px
}

.offer-card:nth-child(2) .offer-copy {
    border-bottom-color: var(--pink)
}

.offer-card:nth-child(3) .offer-copy {
    border-bottom-color: var(--yellow)
}

/* Editorial scenario carousel, no fabricated testimonials */
.perspectives-section {
    background: #fafcfb
}

.story-card {
    position: relative;
    height: 100%;
    border: 1px solid #e6eeea;
    border-radius: 10px;
    background: white;
    padding: 37px 30px 25px;
    box-shadow: 0 7px 0 #e4ebe850;
    display: flex;
    flex-direction: column
}

.quote-mark {
    position: absolute;
    top: 3px;
    left: 25px;
    font: 80px/1 Georgia, serif;
    color: var(--orange);
    opacity: .3;
    pointer-events: none
}

.story-card .story-question {
    position: relative;
    color: var(--ink);
    font-weight: 650;
    line-height: 1.5;
    font-size: 19px;
    min-height: 86px;
    margin-bottom: 17px
}

.story-card>p:not(.story-question) {
    font-size: 14px
}

.story-caption {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: auto;
    padding-top: 10px
}

.story-caption .icon {
    filter: none !important;
    width: 43px;
    height: 43px;
    margin: 0
}

.story-caption strong {
    display: block;
    font-size: 14px;
    color: var(--green)
}

.story-caption span {
    font-size: 11px;
    color: #87928d
}

.story-card:hover .story-caption .icon {
    transform: translateY(-4px) rotate(5deg)
}

.story-swiper {
    padding-top: 8px
}

.scroll-photo-frame {
    overflow: hidden
}

.scroll-photo {
    transform: translate3d(0, var(--photo-shift, 0px), 0) scale(1.10) !important;
    will-change: transform
}

.photo-window {
    overflow: hidden;
    border-radius: 12px
}

.photo-window>img {
    width: 100%;
    height: 435px
}

.image-composition .photo-window {
    box-shadow: var(--shadow)
}

.editorial-cta.scroll-photo-frame {
    overflow: hidden
}

.editorial-cta .scroll-photo {
    clip-path: inset(0)
}

.editorial-cta>div {
    position: relative;
    z-index: 2;
    background: #f1f6f2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center
}

.editorial-cta>div .button {
    margin-top: 4px
}

@media(max-width:1100px) {
    .colour-lab .split {
        gap: 32px
    }

    .paint-value-grid {
        gap: 20px
    }

    .paint-value {
        min-height: 145px
    }

    .offer-grid {
        gap: 20px
    }

    .offer-copy {
        margin-inline: 10px;
        padding-inline: 18px
    }

    .colour-options {
        gap: 9px
    }

    .colour-choice {
        width: 43px
    }

    .paint-decor {
        width: 110px;
        height: 120px
    }

    .process-remix .card {
        padding-inline: 22px
    }
}

@media(max-width:900px) {
    .colour-lab .split {
        grid-template-columns: 1fr
    }

    .colour-lab .split>div:last-child {
        text-align: center
    }

    .colour-lab .colour-options {
        justify-content: center
    }

    .colour-stage {
        max-width: 700px;
        margin: auto;
        width: 100%
    }

    .colour-lab .split h2 {
        font-size: 43px
    }

    .colour-lab #colour-description {
        min-height: 0
    }

    .paint-value-grid {
        gap: 12px
    }

    .paint-value {
        min-height: 130px;
        padding: 20px 12px
    }

    .paint-value strong {
        font-size: 33px
    }

    .paint-value span {
        font-size: 11px
    }

    .offer-copy h3 {
        font-size: 21px
    }

    .offer-copy p {
        font-size: 13px
    }

    .offer-icon {
        height: 50px;
        width: 50px
    }

    .process-remix .card {
        padding-inline: 19px
    }

    .paint-decor {
        opacity: .11
    }

    .photo-window>img {
        height: 365px
    }
}

@media(max-width:640px) {
    .hero:after {
        height: 75px;
        background-size: auto 75px;
        background-position: right bottom
    }

    .hero-content {
        padding-bottom: 10px
    }

    .hero .paint-panel:hover {
        transform: none
    }

    .paint-section:after {
        left: 16px;
        top: 15px;
        width: 42px;
        height: 4px
    }

    .paint-decor {
        width: 80px;
        height: 95px;
        right: 5px;
        opacity: .11
    }

    .paint-splash {
        width: 115px;
        height: 120px;
        opacity: .065
    }

    .splash-yellow {
        opacity: .13
    }

    .paint-values {
        padding: 25px 0 37px
    }

    .paint-value-grid {
        grid-template-columns: 1fr 1fr;
        gap: 11px 15px
    }

    .paint-value {
        min-height: 132px
    }

    .paint-value strong {
        font-size: 33px
    }

    .paint-value span {
        font-size: 11px
    }

    .paint-value:nth-child(even) {
        transform: translateY(8px) rotate(3deg)
    }

    .marquee {
        padding: 14px 0
    }

    .marquee-group>span {
        gap: 10px;
        padding-right: 20px
    }

    .marquee-group .icon {
        width: 27px;
        height: 27px
    }

    .marquee-group b {
        font-size: 24px
    }

    .marquee-group i {
        height: 10px;
        width: 10px;
        margin-left: 7px
    }

    .process-remix .process-grid {
        gap: 33px
    }

    .process-remix .card {
        min-height: 0;
        padding: 39px 25px 26px
    }

    .process-remix h3 {
        font-size: 24px
    }

    .process-remix:before {
        background-size: auto 65%;
        background-position: center
    }

    .colour-lab .split h2 {
        font-size: 35px
    }

    .colour-stage {
        border-width: 5px
    }

    .swatch-label {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 10px 13px;
        gap: 2px
    }

    .swatch-label>span {
        font-size: 10px
    }

    .swatch-label strong {
        font-size: 15px
    }

    .colour-options {
        gap: 10px;
        margin-top: 21px;
        margin-bottom: 25px
    }

    .colour-choice {
        width: 39px;
        height: 54px;
        border-width: 3px
    }

    .colour-choice span {
        top: 64px;
        font-size: 8px
    }

    .colour-lab #colour-description {
        font-size: 14px
    }

    .colour-caveat {
        font-size: 11px !important
    }

    .offer-section {
        padding: 46px 0 50px
    }

    .offer-section .section-heading {
        margin-bottom: 28px
    }

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

    .offer-copy {
        margin: -13px 17px 0;
        padding: 41px 25px 25px
    }

    .offer-copy h3 {
        font-size: 25px
    }

    .offer-copy p {
        font-size: 14px
    }

    .offer-section:after {
        inset: 45% 0 0
    }

    .offer-photo {
        aspect-ratio: 1.7
    }

    .story-card {
        padding: 35px 24px 24px
    }

    .story-card .story-question {
        font-size: 19px;
        min-height: 0
    }

    .faq-item {
        padding-inline: 10px
    }

    .legal-card {
        padding: 22px 20px
    }

    .photo-window>img {
        height: 290px
    }

    .editorial-cta>div {
        align-items: center
    }

    .scroll-photo {
        will-change: auto
    }

    .legal-hero:after {
        width: 90px;
        height: 80px;
        right: 10px
    }

    .benefits>div:hover,
    .checklist label:hover {
        transform: none
    }
}

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

    .paint-decor,
    .paint-splash {
        animation: none !important
    }

    .scroll-photo {
        transform: scale(1.10) !important
    }

    .marquee-track {
        animation: none !important
    }

    .hero .paint-panel:hover,
    .service-tile:hover,
    .card:hover,
    .photo-card:hover,
    .finish-card:hover,
    .exposure-card:hover,
    .offer-card:hover,
    .story-card:hover {
        transform: none !important
    }

    .wall-layer {
        transition: none !important
    }
}

.colour-stage .room-original {
    aspect-ratio: 1672/941 !important
}

.colour-lab .swatch-label {
    max-width: 90%;
    margin-inline: auto
}

.colour-lab .split {
    grid-template-columns: 1.25fr 1fr
}

@media(max-width:900px) {
    .colour-lab .split {
        grid-template-columns: 1fr
    }
}

@media(min-width:641px) {
    .hero:after {
        height: calc(100vw * 181 / 1512);
        max-height: none;
        min-height: 76px
    }
}

.asset-credits summary {
    cursor: pointer;
    list-style: none;
    display: inline-block;
    padding: 4px 0;
    color: #bfd0c9;
    transition: color .3s
}

.asset-credits summary:hover {
    color: var(--yellow)
}

.asset-credits summary:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: 4px
}

.asset-credits p {
    margin: 10px 0 0;
    font-size: 11px;
    line-height: 1.7;
    color: #bfd0c9
}

.asset-credits[open] p {
    animation: fade-in .3s ease-out
}