@font-face {
    font-family: Roboto;
    src: url('../fonts/roboto-400.woff');
    font-weight: 400;
    font-display: swap
}

@font-face {
    font-family: Roboto;
    src: url('../fonts/roboto-700.woff');
    font-weight: 700;
    font-display: swap
}

@font-face {
    font-family: Roboto;
    src: url('../fonts/roboto-900.woff');
    font-weight: 900;
    font-display: swap
}

:root {
    --orange: #fa8a2c;
    --ink: #141414;
    --peach: #fdf2e7;
    --muted: #707070;
    --ease: cubic-bezier(.2, .65, .25, 1)
}

* {
    box-sizing: border-box
}

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

body {
    margin: 0;
    background: var(--ink);
    color: var(--ink);
    font: 16px/1.6 Roboto, Arial, sans-serif
}

body,
main {
    overflow-x: clip
}

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

h1,
h2,
h3 {
    font-family: Roboto, Arial, sans-serif;
    letter-spacing: -.035em;
    line-height: 1.08;
    font-weight: 700
}

h1 {
    font-weight: 900
}

h2 {
    font-size: clamp(34px, 3.2vw, 50px)
}

h3 {
    font-size: 25px
}

h2 em {
    font-style: normal;
    color: var(--orange)
}

p {
    color: var(--muted)
}

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

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

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

button {
    cursor: pointer;
    color: inherit
}

button,
a {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent
}

button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 5px
}

.container {
    width: min(1480px, calc(100% - 48px));
    margin: auto
}

.section {
    padding: 75px 0;
    position: relative
}

.section[id] {
    scroll-margin-top: 96px
}

.peach {
    background: var(--peach)
}

.black {
    background: var(--ink);
    color: #fff
}

.black p {
    color: #929292
}

.intro {
    margin: 25px 0;
    font-size: 17px;
    line-height: 1.65
}

.shape-definitions {
    position: absolute;
    pointer-events: none;
    overflow: hidden
}

.btn {
    display: inline-flex;
    align-items: center;
    position: relative;
    background: var(--orange);
    border: 0;
    color: white;
    border-radius: 40px;
    padding: 16px 28px;
    min-height: 54px;
    font-size: 14px;
    font-weight: 700;
    margin-right: 45px;
    white-space: nowrap;
    transition: background .35s, transform .35s
}

.button-dot {
    position: absolute;
    width: 54px;
    height: 54px;
    right: -50px;
    top: 0;
    border-radius: 50%;
    background: var(--orange);
    display: grid;
    place-items: center;
    transition: transform .4s, background .4s
}

.button-dot:after {
    content: '';
    font-size: 24px;
    font-weight: 400
}

.btn:hover {
    background: #e9791d;
    transform: translateY(-3px)
}

.btn:hover .button-dot {
    background: #e9791d;
    transform: rotate(-35deg)
}

.icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
    filter: invert(62%) sepia(85%) saturate(1280%) hue-rotate(340deg) brightness(100%) contrast(96%);
    flex: none
}

.header {
    background: var(--ink);
    position: sticky;
    top: 0;
    z-index: 60;
    padding: 14px 0
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
    flex: none
}

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

.nav-shell {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    background: white;
    border-radius: 10px;
    padding: 8px 13px 8px 35px;
    min-width: 0;
    justify-content: space-between
}

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

.nav>a,
.nav-services {
    font-size: 14px;
    font-weight: 700;
    position: relative
}

.nav>a:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: .3s
}

.nav>a:hover:after,
.nav>a[aria-current=page]:after {
    transform: scaleX(1)
}

.nav-services {
    background: none;
    border: 0;
    padding: 0
}

.nav-services:after {
    content: '';
    margin-left: 8px;
    font-size: 12px
}

.dropdown {
    position: relative
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 22px);
    left: -20px;
    min-width: 235px;
    background: #fff;
    border-radius: 10px;
    padding: 14px;
    box-shadow: 0 15px 40px #0002;
    opacity: 0;
    visibility: hidden;
    transform: translateY(7px);
    transition: .25s
}

.dropdown-menu:before {
    content: '';
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    height: 25px
}

.dropdown-menu a {
    display: block;
    font-size: 14px;
    padding: 10px;
    border-radius: 6px
}

.dropdown-menu a:hover {
    background: var(--peach);
    color: #d06914
}

.dropdown.is-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none
}

.header-cta {
    font-size: 12px;
    min-height: 41px;
    padding: 10px 21px;
    margin-right: 37px
}

.header-cta .button-dot {
    width: 41px;
    height: 41px;
    right: -37px
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    width: 42px
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: white;
    margin: 7px 0
}

.hero {
    padding: 0 0 32px
}

.roofin-hero {
    height: 650px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    background: #fff;
    isolation: isolate
}

.hero-house {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: -3
}

.hero-house img {
    height: 100%;
    object-position: 65% center;
    animation: heroPhoto 1.2s var(--ease)
}

.hero-paper {
    position: absolute;
    inset: 0 44% 0 0;
    background: #fff;
    z-index: -2
}

.hero-paper:after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/contours.svg');
    background-size: 640px;
    opacity: .4
}

.hero-copy {
    position: relative;
    z-index: 4;
    padding: 74px 0 55px 8%;
    width: 55%;
    pointer-events: none
}

.hero-copy a {
    pointer-events: auto
}

.hero-copy h1 {
    font-size: clamp(64px, 6.6vw, 100px);
    line-height: 1.02;
    letter-spacing: -.045em;
    margin: 22px 0 36px
}

.hero-proof {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0
}

.proof-icon {
    width: 39px;
    height: 39px;
    border-radius: 50%;
    background: var(--orange);
    padding: 9px
}

.proof-icon .icon {
    filter: brightness(0) invert(1);
    width: 100%;
    height: 100%
}

.hero-rings {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 27px solid var(--orange);
    background: #fff;
    border-radius: 50%;
    left: 55%;
    top: 4%;
    z-index: -1
}

.hero-rings i {
    position: absolute;
    inset: 28px;
    background: var(--orange);
    border-radius: 50%
}

.worker-cutout {
    object-fit: contain;
    object-position: bottom
}

.roofin-hero>.worker-cutout {
    position: absolute;
    height: 89%;
    width: 43%;
    bottom: -3px;
    left: 45%;
    z-index: 2;
    animation: personReveal 1.1s var(--ease)
}

.hero-corner {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 20px;
    height: 20px
}

.service-hero .roofin-hero {
    height: 520px
}

.service-hero .hero-copy {
    padding-top: 75px;
    width: 62%
}

.service-hero .hero-copy h1 {
    font-size: clamp(45px, 4.7vw, 70px);
    line-height: 1.07;
    margin-bottom: 20px
}

.service-hero .hero-copy p {
    max-width: 450px;
    margin-bottom: 30px
}

.service-hero .hero-rings {
    width: 250px;
    height: 250px;
    top: 5%;
    left: 63%
}

.service-hero .roofin-hero>.worker-cutout {
    left: 59%;
    height: 91%;
    width: 33%
}

.service-hero .hero-house {
    width: 43%
}

.service-hero .hero-paper {
    right: 40%
}

.dark-about {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 80px;
    align-items: center;
    max-width: 1250px;
    margin: auto
}

.about-intro>p {
    max-width: 530px;
    margin: 24px 0
}

.about-detail {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 28px;
    position: relative;
    margin-top: 38px;
    align-items: center
}

.about-detail>img {
    height: 245px;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
    border-radius: 10px;
    position: relative;
    z-index: 1
}

.about-detail article {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 25px
}

.about-detail article h3 {
    font-size: 19px;
    margin-bottom: 8px
}

.about-detail article p {
    font-size: 14px;
    line-height: 1.5
}

.about-detail article .icon {
    width: 34px;
    height: 34px
}

.about-detail .btn {
    margin-top: 0
}

.orange-arc {
    position: absolute;
    width: 135px;
    height: 135px;
    border: 20px solid var(--orange);
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 50%;
    top: -28px;
    left: 10px;
    transform: rotate(-40deg)
}

.twin-photo {
    height: 430px;
    position: relative;
    clip-path: url(#butterfly)
}

.twin-photo img {
    height: 100%;
    transition: transform .8s
}

.twin-photo:hover img {
    transform: scale(1.04)
}

.marquee-section {
    padding: 15px 0 35px
}

.marquee {
    overflow: hidden
}

.marquee>div {
    display: flex;
    width: max-content;
    animation: marquee 34s linear infinite
}

.marquee span {
    font-size: 43px;
    line-height: 1.2;
    font-weight: 900;
    white-space: nowrap;
    letter-spacing: -1.3px;
    color: #b6b6b6
}

.marquee b {
    color: var(--orange);
    font-weight: 400;
    margin: 0 17px
}

.marquee:hover>div {
    animation-play-state: paused
}

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

.reference-heading h2 {
    max-width: 880px
}

.reference-heading p {
    max-width: 280px
}

.reference-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px
}

.reference-service {
    background: #fff;
    border-radius: 23px;
    padding: 20px;
    transition: transform .5s, box-shadow .5s
}

.reference-service:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px #3f210510
}

.butterfly-photo {
    height: 245px;
    clip-path: url(#butterfly);
    overflow: hidden
}

.butterfly-photo>img {
    height: 100%;
    transition: transform .8s var(--ease)
}

.reference-service:hover img,
.material-slide:hover .butterfly-photo img {
    transform: scale(1.06)
}

.service-name {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding: 26px 12px
}

.service-name h3 {
    font-size: 28px;
    letter-spacing: -.04em
}

.round-link {
    width: 42px;
    height: 42px;
    border: 1px solid #eee;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex: none;
    transition: .3s
}

.reference-service:hover .round-link {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange)
}

ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.reference-service ul {
    margin: 0 12px;
    padding: 22px 0 12px;
    border-top: 1px solid #eee;
    color: #707070;
    font-size: 15px
}

.reference-service li+li {
    margin-top: 10px
}

.reference-service li:before,
.check-list li:before {
    content: '';
    display: inline-grid;
    place-items: center;
    color: var(--orange);
    border: 1.5px solid var(--orange);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 11px;
    line-height: 1;
    margin-right: 9px
}

.choice-section {
    padding-bottom: 0
}

.choice-layout {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 75px;
    align-items: center;
    max-width: 1250px;
    margin: auto
}

.notched-photo {
    clip-path: url(#notched);
    height: 425px
}

.notched-photo>img {
    height: 100%;
    transition: transform .8s
}

.notched-photo:hover>img {
    transform: scale(1.025)
}

.choice-features {
    border-block: 1px solid #343434;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 28px 0 32px;
    padding: 25px 0
}

.choice-features>div {
    display: flex;
    gap: 15px;
    align-items: center
}

.choice-features .icon {
    width: 43px;
    height: 43px;
    background: #fff1;
    border-radius: 50%;
    padding: 8px
}

.choice-features h3 {
    font-size: 20px;
    line-height: 1.3
}

.process-ribbon {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 3;
    transform: translateY(45px);
    margin-top: 18px
}

.process-ribbon article,
.process-person {
    background: #fff;
    color: var(--ink);
    border-radius: 10px 50px 50px 50px;
    padding: 35px 22px;
    text-align: center;
    min-height: 285px
}

.process-ribbon article+article {
    border-radius: 50px
}

.process-ribbon article h3 {
    font-size: 23px;
    margin: 20px 0 28px;
    line-height: 1.25
}

.process-ribbon article p {
    font-size: 14px;
    color: #777
}

.icon-circle {
    display: grid;
    place-items: center;
    background: var(--orange);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    margin: 0 auto
}

.icon-circle .icon {
    filter: brightness(0) invert(1);
    width: 31px;
    height: 31px
}

.process-person {
    padding: 10px;
    border-radius: 50px 10px 10px 50px;
    overflow: hidden;
    position: relative
}

.process-person:before {
    content: '';
    position: absolute;
    inset: 10px;
    background: var(--ink);
    border-radius: 40px 8px 8px 40px
}

.process-person .worker-cutout {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px)
}

.works-section {
    padding-top: 105px
}

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

.works-heading h2 {
    font-size: clamp(65px, 8vw, 120px);
    font-weight: 900;
    letter-spacing: -.045em
}

.works-heading p {
    max-width: 260px
}

.inspiration {
    overflow: hidden
}

.work-card {
    background: #fff;
    border-radius: 14px;
    padding: 10px;
    height: auto
}

.work-card>img {
    height: 360px;
    border-radius: 8px
}

.work-card>div {
    padding: 18px 10px
}

.work-card h3 {
    font-size: 24px;
    margin-bottom: 8px
}

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

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

.work-controls button {
    background: none;
    border: 1px solid #d9cabd;
    border-radius: 50%;
    height: 39px;
    width: 39px;
    font-size: 21px
}

.work-controls button:hover {
    background: var(--orange);
    color: white;
    border-color: var(--orange)
}

.work-controls .swiper-pagination {
    position: static;
    width: auto
}

.swiper-pagination-bullet {
    background: var(--orange);
    margin-inline: 6px !important
}

.swiper-pagination-bullet-active {
    opacity: 1
}

.perspective-layout {
    display: grid;
    grid-template-columns: 1fr 1.03fr;
    position: relative;
    align-items: stretch;
    gap: 35px
}

.perspective-photo {
    border: 10px solid #fff;
    border-radius: 25px;
    height: 465px;
    overflow: hidden
}

.perspective-photo img {
    height: 100%
}

.perspective-copy {
    background: white;
    border-radius: 25px;
    padding: 45px 45px 30px 70px
}

.perspective-copy h2 {
    font-size: 38px
}

.perspective-seal {
    position: absolute;
    z-index: 2;
    top: 35%;
    left: calc(49% - 55px);
    border: 6px solid var(--peach);
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    letter-spacing: 1px;
    text-align: center
}

.perspective-seal span {
    font-size: 45px;
    line-height: 1.1
}

.quotation {
    color: var(--orange);
    font-size: 65px;
    line-height: 1.1;
    display: block;
    margin-top: 10px
}

.large-copy {
    font-size: 22px;
    line-height: 1.4;
    color: var(--ink);
    margin: -8px 0 16px
}

.perspective-copy>p:not(.large-copy) {
    font-size: 15px
}

.quote-sign {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 24px
}

.quote-sign strong {
    display: block;
    font-size: 14px
}

.quote-sign span {
    display: block;
    font-size: 12px;
    color: var(--muted)
}

.capsule-section>.container>h2 {
    text-align: center;
    margin-bottom: 50px
}

.capsule-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.capsule-card {
    background: #fff;
    border: none;
    padding: 18px;
    border-radius: 180px;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    transition: transform .6s var(--ease), background .4s;
    position: relative
}

.capsule-copy {
    padding: 24px 12px 28px;
    text-align: center
}

.capsule-copy h3 {
    font-size: 26px;
    line-height: 1.08;
    margin-bottom: 15px
}

.capsule-copy>span {
    font-size: 11px;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 8px 13px;
    display: inline-block;
    color: #666
}

.capsule-photo {
    height: 230px;
    border-radius: 130px;
    overflow: hidden
}

.capsule-photo img {
    height: 100%;
    transition: transform .8s
}

.capsule-card:nth-child(even) .capsule-photo {
    order: -1
}

.capsule-card:nth-child(even) .capsule-copy {
    padding-top: 26px
}

.capsule-card>p {
    position: absolute;
    inset: 0;
    background: var(--orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    border-radius: 180px;
    transform: rotateY(90deg);
    transform-origin: 50%;
    opacity: 0;
    transition: transform .55s var(--ease), opacity .4s;
    font-size: 20px;
    line-height: 1.5
}

.capsule-card:hover>p,
.capsule-card.flipped>p {
    transform: none;
    opacity: 1
}

.capsule-card:hover {
    transform: translateY(-7px)
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: start;
    max-width: 1250px;
    margin: auto
}

.faq-photo {
    height: 300px;
    width: 88%;
    margin-top: 30px;
    border-radius: 12px
}

.accordion {
    display: grid;
    gap: 14px
}

.accordion details {
    border: 1px solid #edddce;
    border-radius: 9px;
    overflow: hidden;
    padding: 0 20px;
    background: #fff8f0;
    transition: background .3s, color .3s
}

.accordion details[open] {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff
}

.accordion summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px
}

.accordion summary::-webkit-details-marker {
    display: none
}

.plus {
    width: 22px;
    height: 22px;
    border: 1px solid currentColor;
    border-radius: 50%;
    position: relative;
    flex: none;
    opacity: .6
}

.plus:before,
.plus:after {
    content: '';
    position: absolute;
    height: 1px;
    width: 8px;
    top: 10px;
    left: 6px;
    background: currentColor
}

.plus:after {
    transform: rotate(90deg);
    transition: .3s
}

.accordion details[open] .plus:after {
    transform: none
}

.answer p {
    padding: 0 5px 21px 0;
    font-size: 14px;
    line-height: 1.7
}

.accordion details[open] .answer p {
    color: #fff
}

.reference-cta {
    height: 190px;
    background: var(--orange);
    border: 8px solid #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 8% 25px 27%;
    position: relative;
    overflow: hidden;
    gap: 30px;
    color: #fff
}

.reference-cta:before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/contours.svg') center/500px;
    opacity: .14;
    pointer-events: none
}

.reference-cta>.worker-cutout {
    position: absolute;
    height: 230px;
    width: 190px;
    left: 7%;
    bottom: -32px
}

.reference-cta h2 {
    font-size: 31px;
    position: relative
}

.reference-cta p {
    font-size: 14px;
    color: white;
    margin-top: 10px;
    position: relative
}

.reference-cta .btn {
    background: #fff;
    color: var(--ink);
    flex: none;
    font-size: 12px;
    padding: 12px 22px;
    min-height: 44px
}

.reference-cta .button-dot {
    background: #fff;
    color: var(--ink);
    width: 44px;
    height: 44px;
    right: -40px
}

.cta-section {
    padding-top: 15px;
    padding-bottom: 65px
}

.footer {
    background: var(--ink);
    color: white;
    padding: 50px 0 22px
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid #333
}

.footer-top h2 {
    font-size: 35px
}

.footer-main {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 60px;
    padding: 35px 0
}

.footer-main p {
    font-size: 13px;
    color: #aaa
}

.footer-main>div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px
}

.footer a:not(.btn):hover {
    color: var(--orange)
}

.footer-bottom {
    display: flex;
    gap: 25px;
    justify-content: space-between;
    border-top: 1px solid #333;
    padding-top: 20px;
    color: #aaa;
    font-size: 12px
}

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

.cookie-settings {
    background: none;
    border: 0;
    color: inherit;
    padding: 0;
    font: inherit
}

.asset-credits {
    width: min(1480px, calc(100% - 48px));
    margin: 15px auto 0;
    color: #888;
    font-size: 11px
}

.asset-credits p {
    font-size: 11px
}

.asset-credits a {
    text-decoration: underline
}

.asset-credits summary {
    cursor: pointer
}

.cookie-card {
    position: fixed;
    bottom: 17px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 17px;
    background: white;
    border: 1px solid #eee;
    box-shadow: 0 8px 30px #0002;
    border-radius: 12px;
    padding: 14px 18px;
    max-width: calc(100% - 24px);
    width: max-content
}

.cookie-card[hidden] {
    display: none
}

.cookie-card strong {
    font-size: 13px
}

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

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

.cookie-card button {
    background: var(--orange);
    color: white;
    border: 0;
    padding: 10px 17px;
    border-radius: 30px;
    font-size: 12px
}

.cookie-card button.quiet {
    background: var(--peach);
    color: #444
}

.collage-layout {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 90px;
    align-items: center;
    max-width: 1300px;
    margin: auto
}

.collage {
    height: 460px;
    position: relative
}

.collage-main {
    height: 100%;
    width: 70%;
    border-radius: 18px;
    overflow: hidden
}

.collage-main img {
    height: 100%;
    object-position: 42%
}

.collage-circle {
    position: absolute;
    right: 0;
    top: 25px;
    width: 57%;
    height: 62%;
    border-radius: 50%;
    overflow: hidden;
    border: 9px solid var(--peach)
}

.collage-circle img {
    height: 100%
}

.collage-label {
    position: absolute;
    left: 0;
    bottom: 28px;
    background: var(--orange);
    color: #fff;
    padding: 23px 26px;
    border-radius: 0 12px 12px 0;
    line-height: 1.3;
    font-size: 20px
}

.collage-label strong {
    font-weight: 700
}

.check-list {
    margin: 25px 0 32px;
    display: grid;
    gap: 14px;
    color: #666
}

.option-carousel {
    padding-bottom: 40px
}

.material-slide {
    background: #fff;
    padding: 17px;
    border-radius: 18px;
    height: auto
}

.material-slide>.butterfly-photo {
    height: 235px
}

.material-slide>div:last-child {
    padding: 23px 13px 15px;
    position: relative
}

.material-slide h3 {
    font-size: 26px;
    padding-right: 40px;
    margin-bottom: 15px
}

.material-slide p {
    font-size: 15px
}

.material-slide .icon {
    position: absolute;
    right: 9px;
    top: 21px;
    width: 30px;
    height: 30px
}

.technical-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: auto
}

.plan-buttons {
    display: grid;
    gap: 12px;
    margin-top: 30px
}

.plan-buttons button {
    background: #202020;
    border: 1px solid #343434;
    border-radius: 10px;
    padding: 18px 22px;
    color: white;
    text-align: left;
    transition: background .3s, border-color .3s
}

.plan-buttons button[aria-pressed=true] {
    background: var(--orange);
    border-color: var(--orange)
}

.plan-buttons strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: -.02em
}

.plan-buttons span {
    display: block;
    font-size: 14px;
    color: #aaa
}

.plan-buttons button[aria-pressed=true] span {
    color: white
}

.plan-photo {
    position: relative;
    height: 490px
}

.plan-caption {
    position: absolute;
    left: 25px;
    bottom: 40px;
    right: 70px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    color: var(--ink)
}

.plan-caption h3 {
    font-size: 22px
}

.plan-caption p {
    font-size: 14px;
    color: #666;
    margin-top: 10px
}

.detail-showcase {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 50px;
    align-items: center
}

.detail-label h2 {
    font-size: 80px;
    font-weight: 900;
    letter-spacing: -.05em
}

.detail-label p {
    margin-top: 20px
}

.parallax-panel {
    height: 410px;
    position: relative;
    border-radius: 16px;
    overflow: hidden
}

.parallax-image {
    position: absolute;
    inset: -12% 0;
    width: 100%;
    height: 124%;
    object-fit: cover;
    will-change: transform
}

.image-label {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: #fff;
    padding: 10px 17px;
    border-radius: 30px;
    font-size: 12px
}

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

.scope-header p {
    max-width: 400px
}

.scope-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0
}

.scope-grid article {
    padding: 35px;
    border-radius: 45px;
    background: #fff;
    text-align: center;
    transition: transform .45s
}

.scope-grid article:hover {
    transform: translateY(-7px)
}

.scope-grid .icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 25px
}

.scope-grid h3 {
    font-size: 25px;
    margin-bottom: 23px
}

.scope-grid p {
    font-size: 15px
}

.contact-top {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 60px
}

.contact-top h2 {
    font-size: 64px;
    font-weight: 900
}

.contact-top>div {
    max-width: 340px
}

.email-link {
    display: inline-block;
    font-size: 21px;
    margin-top: 18px;
    border-bottom: 1px solid var(--orange)
}

.reference-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.contact-form-copy {
    max-width: 650px
}

.contact-form-copy h2 {
    margin-bottom: 25px
}

.contact-worker {
    height: 660px;
    position: relative;
    display: flex;
    align-items: end
}

.contact-worker .worker-cutout {
    position: absolute;
    height: 88%;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1
}

.contact-ring {
    position: absolute;
    top: 35px;
    left: 22%;
    width: 250px;
    height: 250px;
    border: 35px solid var(--orange);
    border-radius: 50%
}

.contact-worker>p {
    position: relative;
    z-index: 2;
    background: var(--ink);
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 13px;
    color: #999
}

form {
    background: white;
    padding: 28px;
    border-radius: 12px;
    color: var(--ink);
    position: relative
}

form label {
    font-size: 13px;
    font-weight: 400
}

form>label {
    display: block;
    margin-top: 17px
}

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

input:not([type=checkbox]),
select,
textarea {
    display: block;
    width: 100%;
    font-size: 14px;
    background: #fffaf5;
    color: #333;
    border: 1px solid #ebded2;
    border-radius: 7px;
    padding: 12px 14px;
    margin-top: 7px;
    min-width: 0
}

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

select {
    min-height: 47px
}

.consent {
    display: flex !important;
    align-items: start;
    gap: 10px;
    font-size: 12px;
    margin: 19px 0 !important
}

.consent input {
    width: 17px;
    height: 17px;
    flex: none;
    margin: 3px 0;
    accent-color: var(--orange)
}

.consent a {
    text-decoration: underline
}

.form-status {
    margin-top: 14px;
    font-size: 13px
}

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

.form-status.success {
    color: #267439
}

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

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

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

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

.legal-hero p {
    margin-top: 20px
}

.legal-layout {
    background: var(--peach)
}

.legal-layout>.container {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 70px;
    align-items: start
}

.legal-nav {
    position: sticky;
    top: 125px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    display: grid;
    gap: 16px;
    font-size: 14px
}

.legal-nav a:hover {
    color: var(--orange)
}

.legal-copy article {
    margin-bottom: 30px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    scroll-margin-top: 125px
}

.legal-copy h2 {
    font-size: 28px
}

.legal-copy p {
    margin-top: 18px
}

.legal-copy>a {
    color: #ac5208
}

.legal-copy>[data-disclaimer] {
    font-size: 14px
}

.page-transition {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.page-transition>span {
    position: absolute;
    left: 0;
    right: 0;
    height: 25.1%;
    background: var(--orange);
    transform: translateX(-103%);
    transition: transform .4s var(--ease);
    border-bottom: 3px solid #00000015
}

.page-transition>span:nth-child(1) {
    top: 0
}

.page-transition>span:nth-child(2) {
    top: 25%;
    transition-delay: .035s
}

.page-transition>span:nth-child(3) {
    top: 50%;
    transition-delay: .07s
}

.page-transition>span:nth-child(4) {
    top: 75%;
    transition-delay: .105s
}

.page-transition b {
    font-size: 48px;
    z-index: 1;
    color: #fff;
    opacity: 0;
    transition: opacity .2s
}

.page-transition.active {
    visibility: visible
}

.page-transition.active>span {
    transform: none
}

.page-transition.active b {
    opacity: 1;
    transition-delay: .15s
}

[data-reveal] {
    opacity: 1;
    visibility: visible;
    clip-path: none
}

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

@keyframes personReveal {
    from {
        opacity: 0;
        transform: translateY(45px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes heroPhoto {
    from {
        transform: scale(1.1);
        opacity: .5
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

@media(min-width:1700px) {
    .roofin-hero {
        height: 710px
    }

    .hero-copy {
        padding-top: 90px
    }

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

    .hero-rings {
        width: 330px;
        height: 330px
    }

    .service-hero .roofin-hero {
        height: 570px
    }
}

@media(max-width:1200px) {
    .header-inner {
        gap: 25px
    }

    .nav-shell {
        padding-left: 22px
    }

    .nav {
        gap: 22px
    }

    .roofin-hero {
        height: 560px
    }

    .hero-copy {
        padding-top: 62px;
        padding-left: 6%
    }

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

    .hero-rings {
        width: 240px;
        height: 240px;
        border-width: 23px;
        top: 7%
    }

    .hero-rings i {
        inset: 23px
    }

    .dark-about,
    .choice-layout,
    .collage-layout,
    .technical-layout {
        gap: 45px
    }

    .about-detail {
        grid-template-columns: 130px 1fr;
        gap: 20px
    }

    .about-detail>img {
        height: 220px
    }

    .section {
        padding: 60px 0
    }

    .hero {
        padding: 0 0 25px
    }

    .marquee-section {
        padding: 15px 0 30px
    }

    .reference-service {
        padding: 16px
    }

    .butterfly-photo {
        height: 210px
    }

    .service-name {
        padding: 22px 6px
    }

    .service-name h3 {
        font-size: 26px
    }

    .reference-service ul {
        font-size: 14px;
        margin: 0 6px
    }

    .process-ribbon article {
        padding: 28px 18px
    }

    .process-ribbon article h3 {
        font-size: 21px
    }

    .process-ribbon article p {
        font-size: 13px
    }

    .works-section {
        padding-top: 95px
    }

    .work-card>img {
        height: 300px
    }

    .perspective-copy {
        padding: 35px 25px 25px 45px
    }

    .perspective-copy h2 {
        font-size: 33px
    }

    .perspective-photo {
        height: 440px
    }

    .capsule-grid {
        gap: 17px
    }

    .capsule-card {
        padding: 14px;
        min-height: 385px
    }

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

    .capsule-photo {
        height: 210px
    }

    .faq-layout {
        gap: 55px
    }

    .reference-cta {
        padding-right: 6%;
        padding-left: 25%;
        height: 180px
    }

    .reference-cta h2 {
        font-size: 28px
    }

    .reference-cta>.worker-cutout {
        left: 3%
    }

    .cta-section {
        padding-top: 15px
    }

    .detail-label h2 {
        font-size: 65px
    }

    .contact-top h2 {
        font-size: 55px
    }

    .footer-main {
        gap: 35px
    }

    .service-hero .hero-copy h1 {
        font-size: 56px
    }

    .service-hero .roofin-hero {
        height: 480px
    }
}

@media(max-width:950px) {
    .container {
        width: calc(100% - 40px)
    }

    .header-inner {
        gap: 22px
    }

    .brand {
        font-size: 24px
    }

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

    .nav {
        gap: 20px
    }

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

    .header-cta {
        font-size: 11px;
        padding-inline: 15px
    }

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

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

    .roofin-hero {
        height: 495px
    }

    .hero-copy {
        padding-top: 54px
    }

    .hero-rings {
        width: 210px;
        height: 210px;
        top: 8%;
        left: 56%
    }

    .hero-rings i {
        inset: 18px
    }

    .roofin-hero>.worker-cutout {
        width: 45%;
        left: 43%;
        height: 85%
    }

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

    .about-detail>img,
    .orange-arc {
        display: none
    }

    .dark-about {
        gap: 35px
    }

    .twin-photo {
        height: 390px
    }

    .reference-services {
        gap: 16px
    }

    .butterfly-photo {
        height: 180px
    }

    .service-name h3 {
        font-size: 23px
    }

    .round-link {
        height: 33px;
        width: 33px;
        font-size: 14px
    }

    .reference-service ul {
        font-size: 13px
    }

    .choice-layout {
        gap: 30px
    }

    .choice-features {
        gap: 12px
    }

    .choice-features h3 {
        font-size: 17px
    }

    .choice-features>div {
        gap: 9px
    }

    .choice-features .icon {
        width: 35px;
        height: 35px
    }

    .notched-photo {
        height: 380px
    }

    .process-ribbon {
        grid-template-columns: repeat(3, 1fr)
    }

    .process-person {
        display: none
    }

    .process-ribbon article {
        min-height: 270px
    }

    .perspective-copy h2 {
        font-size: 29px
    }

    .perspective-copy {
        padding: 30px 22px 25px 32px
    }

    .perspective-photo {
        height: 455px
    }

    .perspective-seal {
        height: 90px;
        width: 90px;
        left: calc(49% - 44px);
        font-size: 6px
    }

    .capsule-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px
    }

    .capsule-card {
        padding: 10px;
        min-height: 320px
    }

    .capsule-copy {
        padding: 25px 4px 20px
    }

    .capsule-copy h3 {
        font-size: 22px
    }

    .capsule-copy span {
        font-size: 9px;
        padding: 6px 8px
    }

    .capsule-photo {
        height: 175px
    }

    .capsule-card>p {
        font-size: 16px;
        padding: 25px
    }

    .faq-layout {
        gap: 30px
    }

    .faq-photo {
        width: 100%;
        height: 270px
    }

    .reference-cta {
        padding-left: 24%;
        padding-right: 30px
    }

    .reference-cta h2 {
        font-size: 26px
    }

    .reference-cta p {
        font-size: 12px
    }

    .reference-cta .btn {
        padding-inline: 15px
    }

    .reference-cta>.worker-cutout {
        width: 155px
    }

    .collage-layout {
        gap: 40px
    }

    .collage {
        height: 400px
    }

    .collage-circle {
        width: 65%;
        height: 56%
    }

    .collage-label {
        font-size: 17px;
        padding: 20px
    }

    .technical-layout {
        gap: 35px
    }

    .plan-photo {
        height: 450px
    }

    .detail-showcase {
        grid-template-columns: .65fr 1.35fr;
        gap: 30px
    }

    .detail-label h2 {
        font-size: 52px
    }

    .parallax-panel {
        height: 350px
    }

    .scope-grid article {
        padding: 25px
    }

    .scope-grid h3 {
        font-size: 23px
    }

    .contact-worker {
        height: 650px
    }

    .contact-ring {
        left: 10%;
        width: 200px;
        height: 200px
    }

    .contact-top h2 {
        font-size: 46px
    }

    .reference-contact {
        gap: 30px
    }

    .footer-top h2 {
        font-size: 29px
    }

    .footer-top {
        gap: 25px
    }

    .footer-top .btn {
        font-size: 12px
    }

    .footer-bottom {
        flex-direction: column
    }

    .service-hero .hero-copy h1 {
        font-size: 45px
    }

    .service-hero .hero-copy {
        padding-top: 55px
    }

    .service-hero .hero-rings {
        width: 190px;
        height: 190px;
        border-width: 18px
    }

    .service-hero .roofin-hero {
        height: 430px
    }

    .service-hero .hero-copy p {
        max-width: 340px;
        font-size: 14px
    }

    .service-hero .roofin-hero>.worker-cutout {
        height: 88%;
        left: 57%;
        width: 40%
    }
}

@media(max-width:700px) {
    html {
        scroll-padding-top: 80px
    }

    .container {
        width: calc(100% - 28px)
    }

    .header {
        padding: 9px 0
    }

    .header-inner {
        height: 47px;
        justify-content: space-between
    }

    .brand {
        font-size: 26px
    }

    .menu-toggle {
        display: block
    }

    .nav-shell {
        display: none;
        position: fixed;
        inset: 65px 0 0;
        overflow: auto;
        padding: 30px 25px;
        background: var(--peach);
        border-radius: 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 30px
    }

    .nav-shell:has(.is-open) {
        display: flex
    }

    .nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 5px
    }

    .nav>a,
    .nav-services {
        font-size: 25px;
        display: block;
        padding: 10px 0
    }

    .dropdown-menu {
        position: static;
        visibility: visible;
        opacity: 1;
        transform: none;
        box-shadow: none;
        background: none;
        padding: 0 0 0 10px
    }

    .dropdown-menu:before {
        display: none
    }

    .dropdown-menu a {
        font-size: 16px;
        padding: 10px 0
    }

    .nav-services:after {
        display: none
    }

    .header-cta {
        align-self: start;
        font-size: 14px;
        padding: 12px 20px;
        min-height: 45px
    }

    .header-cta .button-dot {
        width: 45px;
        height: 45px;
        right: -40px
    }

    .section {
        padding: 42px 0
    }

    h2 {
        font-size: 33px;
        text-align: center;
        letter-spacing: -.035em
    }

    .hero {
        padding: 0 0 18px
    }

    .roofin-hero {
        height: 655px;
        border-radius: 17px
    }

    .hero-house {
        top: auto;
        bottom: 0;
        height: 46%;
        width: 100%;
        right: 0
    }

    .hero-house img {
        object-position: center 65%
    }

    .hero-paper {
        inset: 0 0 40% 0
    }

    .hero-copy {
        width: 100%;
        padding: 28px 22px 0;
        text-align: left;
        z-index: 4
    }

    .hero-proof {
        font-size: 10px;
        gap: 10px
    }

    .proof-icon {
        width: 30px;
        height: 30px;
        padding: 7px
    }

    .hero-copy h1 {
        font-size: 58px;
        line-height: .97;
        margin: 20px 0 22px;
        letter-spacing: -.035em
    }

    .hero-copy .btn {
        padding: 12px 22px;
        min-height: 45px;
        font-size: 12px
    }

    .hero-copy .button-dot {
        width: 45px;
        height: 45px;
        right: -40px
    }

    .hero-rings {
        width: 185px;
        height: 185px;
        top: auto;
        bottom: 162px;
        left: 45%;
        border-width: 19px
    }

    .hero-rings i {
        inset: 18px
    }

    .roofin-hero>.worker-cutout {
        height: 46%;
        width: 65%;
        left: 28%;
        bottom: 0
    }

    .service-hero .roofin-hero {
        height: 565px
    }

    .service-hero .hero-copy {
        width: 100%;
        padding: 28px 20px
    }

    .service-hero .hero-copy h1 {
        font-size: 39px;
        line-height: 1.08;
        margin: 18px 0
    }

    .service-hero .hero-copy p {
        font-size: 14px;
        max-width: 300px;
        margin-bottom: 20px
    }

    .service-hero .hero-house {
        height: 41%;
        width: 100%
    }

    .service-hero .hero-paper {
        inset: 0 0 38% 0
    }

    .service-hero .hero-rings {
        top: auto;
        bottom: 132px;
        left: 45%;
        width: 170px;
        height: 170px
    }

    .service-hero .roofin-hero>.worker-cutout {
        height: 43%;
        width: 60%;
        left: 34%
    }

    .dark-about {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .about-intro>p {
        text-align: center;
        margin: 20px auto;
        max-width: 440px;
        font-size: 15px
    }

    .about-detail {
        grid-template-columns: 110px 1fr;
        gap: 18px;
        margin-top: 30px
    }

    .about-detail>img {
        display: block;
        height: 230px
    }

    .about-detail article h3 {
        font-size: 18px
    }

    .about-detail article p {
        font-size: 12px
    }

    .about-detail article .icon {
        width: 25px;
        height: 25px
    }

    .about-detail article {
        gap: 10px;
        margin-bottom: 20px
    }

    .about-detail .btn {
        font-size: 11px;
        min-height: 42px;
        padding: 12px 17px
    }

    .about-detail .button-dot {
        width: 42px;
        height: 42px;
        right: -38px
    }

    .twin-photo {
        height: 290px;
        width: min(430px, 100%);
        margin: auto
    }

    .marquee-section {
        padding: 8px 0 26px
    }

    .marquee span {
        font-size: 29px;
        letter-spacing: -.8px
    }

    .marquee b {
        margin: 0 12px
    }

    .reference-heading {
        display: block;
        margin-bottom: 27px;
        text-align: center
    }

    .reference-heading p {
        max-width: none;
        margin-top: 18px;
        font-size: 14px
    }

    .reference-services {
        grid-template-columns: 1fr;
        gap: 22px
    }

    .reference-service {
        padding: 18px;
        max-width: 470px;
        width: 100%;
        margin: auto
    }

    .butterfly-photo {
        height: 250px
    }

    .service-name {
        padding: 23px 10px
    }

    .service-name h3 {
        font-size: 28px
    }

    .round-link {
        width: 42px;
        height: 42px;
        font-size: 18px
    }

    .reference-service ul {
        font-size: 15px;
        margin: 0 10px;
        padding-top: 20px
    }

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

    .notched-photo {
        height: 310px;
        max-width: 450px;
        width: 100%;
        margin: auto
    }

    .choice-layout>.notched-photo {
        order: 1
    }

    .choice-layout>div:last-child {
        order: 0
    }

    .choice-layout .intro {
        text-align: center;
        font-size: 15px;
        margin: 22px 0
    }

    .choice-features {
        padding: 20px 0;
        margin: 22px 0;
        gap: 20px
    }

    .choice-features h3 {
        font-size: 19px
    }

    .choice-features>div {
        justify-content: center;
        gap: 13px
    }

    .choice-features .icon {
        width: 40px;
        height: 40px
    }

    .choice-layout .btn {
        display: flex;
        width: max-content;
        margin: 0 auto 0 calc(50% - 90px)
    }

    .process-ribbon {
        grid-template-columns: 1fr;
        transform: none;
        margin-top: 30px;
        gap: 12px
    }

    .process-ribbon article,
    .process-ribbon article+article {
        padding: 24px;
        border-radius: 35px;
        min-height: 0;
        display: grid;
        grid-template-columns: 55px 1fr;
        gap: 15px;
        text-align: left;
        align-items: center
    }

    .icon-circle {
        width: 52px;
        height: 52px;
        grid-column: 1;
        grid-row: 1;
        margin: 0
    }

    .process-ribbon article h3 {
        font-size: 23px;
        margin: 0;
        grid-column: 2;
        grid-row: 1
    }

    .process-ribbon article h3 br {
        display: none
    }

    .process-ribbon article p {
        grid-column: 1/-1;
        font-size: 14px
    }

    .choice-section {
        padding-bottom: 42px
    }

    .works-section {
        padding-top: 42px
    }

    .works-heading {
        display: block;
        text-align: center;
        margin-bottom: 25px
    }

    .works-heading h2 {
        font-size: 54px
    }

    .works-heading p {
        max-width: none;
        margin-top: 14px;
        font-size: 14px
    }

    .work-card>img {
        height: 280px
    }

    .work-card h3 {
        font-size: 24px
    }

    .perspective-layout {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .perspective-photo {
        height: 300px
    }

    .perspective-seal {
        top: 252px;
        left: calc(50% - 45px)
    }

    .perspective-copy {
        padding: 38px 25px 28px;
        text-align: center
    }

    .perspective-copy h2 {
        font-size: 32px
    }

    .large-copy {
        font-size: 22px
    }

    .perspective-copy>p:not(.large-copy) {
        font-size: 15px
    }

    .quote-sign {
        justify-content: center;
        text-align: left
    }

    .capsule-section>.container>h2 {
        margin-bottom: 30px
    }

    .capsule-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 12px
    }

    .capsule-card {
        min-height: 320px;
        padding: 11px
    }

    .capsule-copy {
        padding: 22px 4px
    }

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

    .capsule-copy span {
        font-size: 9px
    }

    .capsule-photo {
        height: 175px
    }

    .capsule-card:nth-child(even) .capsule-copy {
        padding-top: 25px
    }

    .capsule-card>p {
        font-size: 17px;
        padding: 24px
    }

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

    .faq-photo {
        height: 240px;
        margin-top: 24px
    }

    .accordion summary {
        font-size: 15px;
        padding: 18px 0
    }

    .answer p {
        font-size: 14px
    }

    .reference-cta {
        height: auto;
        min-height: 240px;
        padding: 27px 20px 26px 32%;
        border-width: 6px;
        display: block
    }

    .reference-cta h2 {
        text-align: left;
        font-size: 27px
    }

    .reference-cta p {
        font-size: 12px;
        margin-top: 12px
    }

    .reference-cta>.worker-cutout {
        left: -23px;
        width: 170px;
        height: 220px;
        bottom: -20px
    }

    .reference-cta .btn {
        margin-top: 21px;
        padding: 10px 18px;
        min-height: 40px;
        font-size: 11px
    }

    .reference-cta .button-dot {
        width: 40px;
        height: 40px;
        right: -36px
    }

    .cta-section {
        padding-top: 0;
        padding-bottom: 35px
    }

    .footer {
        padding: 35px 0 20px
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding-bottom: 30px
    }

    .footer-top h2 {
        font-size: 31px
    }

    .footer-top .btn {
        margin-right: 40px
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        padding: 25px 0
    }

    .footer-main>p {
        grid-column: 1/-1
    }

    .footer-main>div {
        font-size: 12px
    }

    .footer-bottom {
        font-size: 11px;
        gap: 16px
    }

    .footer-bottom>div {
        gap: 14px
    }

    .cookie-card {
        padding: 11px 12px;
        gap: 8px;
        max-width: calc(100% - 18px);
        bottom: 10px
    }

    .cookie-card strong {
        font-size: 11px
    }

    .cookie-card p {
        font-size: 10px;
        line-height: 1.4;
        max-width: 165px
    }

    .cookie-card button {
        padding: 9px 10px;
        font-size: 10px
    }

    .asset-credits {
        width: calc(100% - 28px);
        font-size: 10px
    }

    .collage-layout {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .collage {
        height: 340px;
        max-width: 460px;
        width: 100%;
        margin: auto
    }

    .collage-circle {
        height: 64%;
        width: 58%
    }

    .collage-label {
        font-size: 17px;
        padding: 18px 21px
    }

    .collage-layout .intro {
        text-align: center;
        font-size: 15px
    }

    .check-list {
        font-size: 15px;
        max-width: 400px;
        margin: 24px auto
    }

    .collage-layout>div:last-child>.btn {
        display: flex;
        width: max-content;
        margin-left: calc(50% - 100px)
    }

    .material-slide>.butterfly-photo {
        height: 235px
    }

    .material-slide h3 {
        font-size: 25px
    }

    .technical-layout {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .technical-layout .intro {
        text-align: center;
        font-size: 15px
    }

    .plan-buttons button {
        padding: 18px 20px
    }

    .plan-buttons strong {
        font-size: 21px
    }

    .plan-buttons span {
        font-size: 14px
    }

    .plan-photo {
        height: 380px
    }

    .plan-caption {
        left: 18px;
        right: 40px;
        bottom: 28px;
        padding: 18px
    }

    .detail-showcase {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center
    }

    .detail-label h2 {
        font-size: 64px
    }

    .detail-label p {
        margin-top: 14px;
        font-size: 15px
    }

    .parallax-panel {
        height: 320px
    }

    .image-label {
        font-size: 10px;
        left: 14px;
        bottom: 14px;
        padding: 9px 13px
    }

    .scope-header {
        display: block;
        text-align: center;
        margin-bottom: 27px
    }

    .scope-header p {
        margin: 18px auto 0;
        font-size: 15px
    }

    .scope-grid {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .scope-grid article {
        padding: 26px 30px;
        border-radius: 35px
    }

    .scope-grid h3 {
        font-size: 25px
    }

    .scope-grid .icon {
        margin-bottom: 20px
    }

    .contact-top {
        display: block;
        text-align: center
    }

    .contact-top h2 {
        font-size: 39px
    }

    .contact-top>div {
        max-width: none;
        margin-top: 22px
    }

    .contact-top p {
        font-size: 15px
    }

    .email-link {
        font-size: 20px
    }

    .reference-contact {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .contact-form-copy h2 {
        font-size: 34px
    }

    .contact-worker {
        height: 390px;
        max-width: 440px;
        width: 100%;
        margin: auto
    }

    .contact-worker .worker-cutout {
        height: 83%;
        width: 85%;
        left: 7%
    }

    .contact-ring {
        width: 180px;
        height: 180px;
        left: 25%;
        top: 10px;
        border-width: 25px
    }

    .contact-worker>p {
        font-size: 12px
    }

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

    form {
        padding: 23px
    }

    .consent {
        font-size: 11px
    }

    .legal-hero {
        padding: 40px 0
    }

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

    .legal-layout>.container {
        grid-template-columns: 1fr;
        gap: 25px
    }

    .legal-nav {
        position: static;
        padding: 22px
    }

    .legal-copy article {
        padding: 24px;
        margin-bottom: 18px
    }

    .legal-copy h2 {
        text-align: left;
        font-size: 26px
    }

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

    .page-transition b {
        font-size: 38px
    }
}

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

    *,
    *:before,
    *:after {
        animation: none !important;
        transition-duration: .01ms !important
    }

    [data-reveal] {
        opacity: 1;
        visibility: visible;
        clip-path: none
    }

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

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

.contact-top h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.08
}

.choice-section {
    padding-bottom: 0
}

@media(max-width:1200px) {
    .contact-top h1 {
        font-size: 55px
    }
}

@media(max-width:950px) {
    .contact-top h1 {
        font-size: 46px
    }
}

@media(max-width:700px) {
    .hero-copy h1 {
        font-size: clamp(42px, 14vw, 58px)
    }

    .service-hero .hero-copy h1 {
        font-size: clamp(31px, 9.4vw, 39px)
    }

    .contact-top h1 {
        font-size: 39px;
        text-align: center
    }

    .choice-section {
        padding-bottom: 42px
    }
}

h1,
h2,
[data-reveal] {
    visibility: visible;
    opacity: 1;
    clip-path: none
}

.hero-copy h1 {
    color: #141414;
    position: relative;
    z-index: 5
}

.hero-copy {
    pointer-events: auto
}

.nav-services {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    line-height: 1.4
}

.nav-services:after {
    content: '';
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    margin: 0;
    transition: transform .3s
}

.nav-services[aria-expanded=true]:after {
    transform: translateY(2px) rotate(225deg)
}

.dropdown-menu {
    min-width: 320px;
    padding: 11px;
    top: calc(100% + 23px);
    border: 1px solid #eee;
    box-shadow: 0 18px 45px #0000001c
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 13px;
    transition: background .3s, transform .3s
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
    background: var(--peach);
    transform: translateX(3px)
}

.dropdown-menu a .icon {
    width: 30px;
    height: 30px
}

.dropdown-menu strong {
    display: block;
    font-size: 14px;
    line-height: 1.4
}

.dropdown-menu small {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 4px;
    line-height: 1.45
}

.nav-shell.is-open {
    display: flex
}

.white {
    background: #fff
}

.reference-about {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: center
}

.oval-worker {
    position: relative;
    height: 510px;
    padding: 15px 22px;
    isolation: isolate
}

.oval-worker>img {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    object-position: 35% center;
    transition: transform .65s
}

.oval-worker:before,
.oval-worker:after {
    content: '';
    position: absolute;
    background: var(--orange);
    z-index: 0;
    width: 48%;
    height: 60%;
    border-radius: 24px
}

.oval-worker:before {
    top: 0;
    left: 0
}

.oval-worker:after {
    right: 0;
    bottom: 0
}

.oval-frame {
    position: absolute;
    inset: 15px 28px;
    border: 2px solid var(--orange);
    border-radius: 25px;
    z-index: 1
}

.oval-worker:hover>img {
    transform: scale(.98) rotate(-1deg)
}

.about-story h2 {
    font-size: 43px;
    line-height: 1.15
}

.about-story .intro {
    font-size: 17px;
    line-height: 1.6;
    margin: 23px 0
}

.about-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 25px;
    font-size: 15px;
    color: #686868
}

.about-checks li:before {
    content: '';
    font-weight: 700;
    color: var(--orange);
    margin-right: 10px
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 28px 0
}

.mission-grid article {
    border: 1px solid #dedede;
    border-left: 5px solid #c9c9c9;
    border-right: 5px solid #c9c9c9;
    border-radius: 12px;
    padding: 20px;
    transition: transform .4s, border-color .4s, box-shadow .4s
}

.mission-grid article:hover,
.mission-grid article:focus-visible {
    transform: translateY(-4px);
    border-color: var(--orange);
    box-shadow: 0 9px 25px #00000008
}

.mission-grid h3 {
    font-size: 23px;
    margin-bottom: 12px
}

.mission-grid p {
    font-size: 15px;
    line-height: 1.5
}

.section-intro {
    text-align: center;
    max-width: 650px;
    margin: 20px auto 35px
}

.team-section>.container>h2 {
    text-align: center
}

.team-capsules {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.team-capsule {
    background: white;
    border-radius: 170px;
    display: flex;
    flex-direction: column;
    padding: 17px;
    position: relative;
    overflow: hidden;
    min-height: 465px;
    transition: transform .55s var(--ease), box-shadow .55s
}

.team-copy {
    text-align: center;
    padding: 31px 10px 27px
}

.team-copy h3 {
    font-size: 27px;
    line-height: 1.1
}

.team-copy>span {
    display: inline-block;
    margin-top: 16px;
    padding: 7px 13px;
    border: 1px solid #ddd;
    border-radius: 24px;
    font-size: 10px;
    color: #777
}

.team-photo {
    height: 260px;
    background: var(--peach);
    border-radius: 150px;
    overflow: hidden;
    position: relative
}

.team-photo img {
    height: 115%;
    width: 100%;
    object-fit: contain;
    object-position: top;
    transition: transform .65s
}

.team-capsule:nth-child(even) .team-photo {
    order: -1
}

.team-capsule:nth-child(even) .team-copy {
    padding-top: 27px;
    padding-bottom: 20px
}

.team-extra {
    position: absolute;
    left: 17px;
    right: 17px;
    bottom: 17px;
    border-radius: 100px;
    background: var(--orange);
    padding: 30px 24px;
    text-align: center;
    transform: translateY(115%);
    transition: transform .55s var(--ease);
    z-index: 2
}

.team-extra p {
    font-size: 15px;
    color: white;
    line-height: 1.55
}

.team-extra a {
    display: inline-block;
    font-size: 13px;
    border-bottom: 1px solid #fff;
    color: white;
    margin-top: 14px
}

.team-capsule:hover,
.team-capsule:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px #cc8e5215
}

.team-capsule:hover .team-extra,
.team-capsule:focus-within .team-extra {
    transform: none
}

.team-capsule:hover .team-photo img {
    transform: scale(1.025)
}

.review-heading {
    display: grid;
    grid-template-columns: 1.5fr .5fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 35px
}

.review-heading h2 {
    font-size: 43px
}

.review-lead {
    font-size: 17px;
    line-height: 1.65;
    border-left: 4px solid var(--orange);
    padding-left: 20px;
    margin-top: 25px;
    max-width: 850px
}

.review-heading-mark {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: end;
    padding-bottom: 8px
}

.review-heading-mark .icon {
    width: 65px;
    height: 65px
}

.review-heading-mark strong {
    font-size: 24px;
    line-height: 1.25
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px
}

.review-card {
    padding: 32px;
    background: #fff7f0;
    border-radius: 20px;
    transition: transform .5s, box-shadow .5s
}

.review-card:hover,
.review-card:focus-visible {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px #ac611313
}

.review-quote {
    display: block;
    font-size: 70px;
    line-height: .85;
    color: var(--orange);
    height: 48px
}

.review-card blockquote {
    margin: 10px 0 25px;
    font-size: 20px;
    line-height: 1.6;
    color: #616161
}

.review-person {
    display: flex;
    align-items: center;
    gap: 16px
}

.review-person>img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-position: center 30%
}

.review-person h3 {
    font-size: 21px;
    margin-bottom: 6px
}

.review-person span {
    font-size: 12px;
    color: #888
}

.review-context {
    border-top: 1px solid #eadfd5;
    padding-top: 18px;
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.6
}

.demo-disclosure {
    margin-top: 18px;
    font-size: 12px;
    color: #898989
}

.craft-banner {
    height: 355px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    isolation: isolate
}

.craft-background {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -2;
    object-position: center 35%
}

.craft-banner:after {
    content: '';
    position: absolute;
    inset: 0;
    background: #0008;
    z-index: -1
}

.craft-banner-copy {
    position: relative;
    padding: 55px 5%;
    width: 68%;
    color: white;
    z-index: 2
}

.craft-banner-copy h2 {
    font-size: 43px
}

.craft-banner-copy>p {
    color: #f0f0f0;
    font-size: 17px;
    margin: 20px 0;
    max-width: 560px
}

.craft-points {
    display: flex;
    gap: 22px;
    color: white;
    font-size: 13px;
    margin-top: 30px
}

.craft-points span {
    border-left: 2px solid var(--orange);
    padding-left: 12px
}

.craft-person {
    position: absolute;
    right: 3%;
    bottom: 0;
    width: 30%;
    height: 95%;
    object-fit: contain;
    object-position: bottom;
    z-index: 1
}

.legal-hero-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
    text-align: left
}

.legal-category {
    font-size: 12px;
    letter-spacing: .13em;
    color: #9a5c2c;
    display: block;
    margin-bottom: 17px
}

.legal-hero h1 {
    font-size: 68px;
    letter-spacing: -.035em
}

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

.legal-emblem {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    background: #fff;
    border-radius: 100px;
    padding: 30px 40px;
    box-shadow: 0 7px 0 #fa8a2c22
}

.legal-emblem .icon {
    width: 65px;
    height: 65px
}

.legal-emblem span {
    font-size: 12px;
    letter-spacing: .13em;
    line-height: 1.8;
    font-weight: 700;
    color: #777
}

.legal-nav {
    box-shadow: 0 8px 0 #f1decf;
    border-top: 4px solid var(--orange)
}

.legal-nav>strong {
    font-size: 18px;
    margin-bottom: 8px
}

.legal-nav a {
    border-bottom: 1px solid #f1e8e0;
    padding-bottom: 10px;
    transition: color .3s, transform .3s
}

.legal-nav a:hover {
    transform: translateX(3px)
}

.legal-copy article {
    border: 1px solid #f1e5db;
    transition: border-color .35s, box-shadow .35s
}

.legal-copy article:hover {
    border-color: #edbd96;
    box-shadow: 0 8px 25px #e6c4aa1a
}

.cookie-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px
}

.cookie-overview article {
    margin: 0;
    padding: 24px 20px
}

.cookie-overview .icon {
    margin-bottom: 20px;
    width: 35px;
    height: 35px
}

.cookie-overview h2 {
    font-size: 23px;
    line-height: 1.2
}

.cookie-overview p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px
}

.preference-badge,
.cookie-overview .cookie-settings {
    display: inline-block;
    background: var(--peach);
    color: #a95818;
    border-radius: 25px;
    padding: 9px 13px;
    font-size: 11px;
    line-height: 1.3;
    margin-top: 20px
}

.cookie-overview .cookie-settings {
    background: var(--orange);
    color: white;
    font-weight: 700
}

.preference-badge.quiet {
    color: #777;
    background: #f5f5f5
}

form {
    border: 1px solid #eadfD6;
    box-shadow: 0 10px 0 #fa8a2c20
}

input:not([type=checkbox]),
textarea,
select {
    transition: border-color .3s, background .3s, box-shadow .3s
}

input:not([type=checkbox]):hover,
textarea:hover,
select:hover {
    border-color: #e8ad7e
}

input:not([type=checkbox]):focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--orange);
    background: white;
    box-shadow: 0 0 0 3px #fa8a2c1c
}

input::placeholder,
textarea::placeholder {
    color: #aaa;
    opacity: 1
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 100px #fffaf5 inset;
    -webkit-text-fill-color: #333
}

.consent input {
    appearance: none;
    -webkit-appearance: none;
    border: 1.5px solid #d8c4b3;
    background: white;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    transition: background .25s, border-color .25s;
    min-width: 18px;
    min-height: 18px
}

.consent input:checked {
    background: var(--orange);
    border-color: var(--orange)
}

.consent input:checked:after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg)
}

.consent:hover input {
    border-color: var(--orange)
}

.select-wrapper {
    position: relative;
    margin-top: 7px
}

.select-native-enhanced {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
    pointer-events: none
}

.select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 47px;
    border: 1px solid #ebded2;
    background: #fffaf5;
    border-radius: 7px;
    padding: 12px 14px;
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    transition: border-color .3s, box-shadow .3s
}

.select-trigger:after {
    content: '';
    width: 7px;
    height: 7px;
    border-bottom: 1.5px solid #ac6c37;
    border-right: 1.5px solid #ac6c37;
    transform: rotate(45deg) translateY(-2px);
    margin-right: 4px;
    transition: transform .3s
}

.select-trigger[aria-expanded=true] {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px #fa8a2c18
}

.select-trigger[aria-expanded=true]:after {
    transform: rotate(225deg) translate(-2px, -1px)
}

.select-options {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 7px);
    padding: 6px;
    background: #fff;
    border: 1px solid #eaddd1;
    box-shadow: 0 12px 28px #00000014;
    border-radius: 10px;
    z-index: 10
}

.select-options[hidden] {
    display: none
}

.select-options button {
    display: block;
    width: 100%;
    border: 0;
    background: white;
    border-radius: 6px;
    text-align: left;
    padding: 11px 12px;
    font-size: 14px;
    transition: background .25s, color .25s
}

.select-options button:hover,
.select-options button:focus-visible,
.select-options button[aria-selected=true] {
    background: var(--peach);
    color: #bc5a0b
}

.form-status {
    min-height: 1.3em
}

.reference-service:focus-visible .round-link {
    background: var(--orange);
    color: white
}

.work-card img,
.perspective-photo img,
.faq-photo {
    transition: transform .7s var(--ease), filter .5s
}

.work-card:hover>img {
    filter: saturate(1.08)
}

.reference-services,
.team-capsules,
.review-grid,
.mission-grid {
    align-items: stretch
}

.material-slide>div:last-child {
    min-height: 150px
}

.scope-grid article {
    display: flex;
    flex-direction: column
}

.scope-grid article p {
    margin-top: auto
}

.reference-service {
    display: flex;
    flex-direction: column
}

.reference-service ul {
    margin-top: auto
}

.hero-paper,
.hero-house {
    pointer-events: none
}

@media(max-width:1200px) {
    .reference-about {
        gap: 45px
    }

    .oval-worker {
        height: 480px
    }

    .about-story h2,
    .review-heading h2 {
        font-size: 37px
    }

    .about-checks {
        font-size: 14px;
        gap: 12px 20px
    }

    .mission-grid {
        gap: 14px
    }

    .mission-grid article {
        padding: 18px
    }

    .mission-grid h3 {
        font-size: 21px
    }

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

    .team-photo {
        height: 235px
    }

    .team-capsule {
        min-height: 430px
    }

    .team-capsules {
        gap: 19px
    }

    .review-heading {
        gap: 35px
    }

    .review-heading-mark strong {
        font-size: 21px
    }

    .review-card {
        padding: 28px
    }

    .review-card blockquote {
        font-size: 18px
    }

    .cookie-overview {
        grid-template-columns: 1fr
    }

    .cookie-overview article {
        display: grid;
        grid-template-columns: 35px 1fr auto;
        gap: 10px 18px;
        align-items: start;
        padding: 23px
    }

    .cookie-overview .icon {
        grid-row: 1/3;
        margin: 0
    }

    .cookie-overview h2 {
        text-align: left;
        grid-column: 2
    }

    .cookie-overview p {
        grid-column: 2;
        margin: 0
    }

    .cookie-overview .preference-badge,
    .cookie-overview .cookie-settings {
        grid-column: 3;
        grid-row: 1/3;
        align-self: center;
        margin: 0
    }

    .craft-banner-copy h2 {
        font-size: 37px
    }
}

@media(max-width:950px) {
    .reference-about {
        grid-template-columns: .75fr 1.25fr;
        gap: 30px
    }

    .oval-worker {
        height: 460px;
        padding-inline: 13px
    }

    .about-story h2 {
        font-size: 32px
    }

    .about-story .intro {
        font-size: 15px
    }

    .about-checks {
        grid-template-columns: 1fr 1fr;
        font-size: 12px;
        gap: 10px
    }

    .mission-grid article {
        padding: 14px
    }

    .mission-grid p {
        font-size: 13px
    }

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

    .team-capsules {
        gap: 12px
    }

    .team-capsule {
        padding: 11px;
        min-height: 375px
    }

    .team-copy {
        padding: 26px 5px
    }

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

    .team-copy>span {
        font-size: 8px;
        padding: 6px 9px
    }

    .team-photo {
        height: 210px
    }

    .team-extra {
        left: 11px;
        right: 11px;
        bottom: 11px;
        padding: 28px 19px
    }

    .team-extra p {
        font-size: 13px
    }

    .review-heading h2 {
        font-size: 33px
    }

    .review-heading-mark .icon {
        width: 45px;
        height: 45px
    }

    .review-heading-mark strong {
        font-size: 19px
    }

    .review-lead {
        font-size: 15px
    }

    .review-heading {
        grid-template-columns: 1.5fr .6fr;
        gap: 25px
    }

    .craft-points {
        gap: 12px;
        font-size: 11px
    }

    .craft-banner-copy {
        width: 73%;
        padding-top: 48px
    }

    .craft-person {
        right: 0;
        width: 31%;
        height: 85%
    }

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

    .legal-emblem {
        padding: 25px;
        gap: 15px
    }

    .legal-emblem .icon {
        width: 50px;
        height: 50px
    }

    .legal-emblem span {
        font-size: 10px
    }

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

    .cookie-overview article {
        grid-template-columns: 35px 1fr
    }

    .cookie-overview .preference-badge,
    .cookie-overview .cookie-settings {
        grid-column: 2;
        grid-row: auto;
        justify-self: start
    }

    .dropdown-menu {
        min-width: 290px
    }
}

@media(max-width:700px) {
    .nav-services {
        display: flex;
        justify-content: space-between;
        width: 100%;
        text-align: left
    }

    .nav-services:after {
        display: block;
        width: 9px;
        height: 9px
    }

    .dropdown-menu {
        display: none;
        min-width: 0;
        border: 0;
        padding: 7px;
        background: #fff;
        border-radius: 13px;
        box-shadow: none
    }

    .dropdown.is-open .dropdown-menu {
        display: block
    }

    .dropdown-menu a {
        padding: 13px;
        gap: 13px
    }

    .dropdown-menu strong {
        font-size: 15px
    }

    .dropdown-menu small {
        font-size: 12px
    }

    .dropdown-menu a .icon {
        width: 28px;
        height: 28px
    }

    .reference-about {
        grid-template-columns: 1fr;
        gap: 27px
    }

    .oval-worker {
        height: 360px;
        width: min(400px, 100%);
        margin: auto;
        padding: 12px 23px
    }

    .about-story h2 {
        font-size: 33px
    }

    .about-story .intro {
        text-align: center;
        font-size: 16px
    }

    .about-checks {
        font-size: 13px;
        gap: 12px;
        max-width: 440px;
        margin: 0 auto
    }

    .mission-grid {
        gap: 13px;
        margin: 25px 0
    }

    .mission-grid article {
        padding: 17px 14px
    }

    .mission-grid h3 {
        font-size: 21px
    }

    .mission-grid p {
        font-size: 14px
    }

    .about-story>.btn {
        display: flex;
        width: max-content;
        margin-left: calc(50% - 110px);
        font-size: 13px
    }

    .team-section>.container>h2 {
        font-size: 33px
    }

    .section-intro {
        font-size: 15px;
        margin: 18px auto 28px
    }

    .team-capsules {
        grid-template-columns: repeat(2, 1fr);
        gap: 17px 12px
    }

    .team-capsule {
        padding: 12px;
        min-height: 355px
    }

    .team-copy h3 {
        font-size: 22px
    }

    .team-photo {
        height: 190px
    }

    .team-copy {
        padding: 25px 3px 23px
    }

    .team-copy>span {
        font-size: 8px
    }

    .team-extra {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 27px 16px
    }

    .team-extra p {
        font-size: 13px
    }

    .team-extra a {
        font-size: 12px
    }

    .review-heading {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 27px
    }

    .review-heading h2 {
        font-size: 33px
    }

    .review-lead {
        font-size: 15px;
        padding-left: 16px;
        margin-top: 22px
    }

    .review-heading-mark {
        justify-content: center;
        padding: 0;
        gap: 15px
    }

    .review-heading-mark .icon {
        width: 38px;
        height: 38px
    }

    .review-heading-mark strong {
        font-size: 19px
    }

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

    .review-card {
        padding: 27px 25px
    }

    .review-card blockquote {
        font-size: 18px
    }

    .review-person h3 {
        font-size: 20px
    }

    .review-person>img {
        width: 57px;
        height: 57px
    }

    .review-context {
        font-size: 13px
    }

    .demo-disclosure {
        font-size: 11px;
        line-height: 1.5
    }

    .craft-banner {
        height: 370px
    }

    .craft-banner-copy {
        width: 100%;
        padding: 28px 24px
    }

    .craft-banner-copy h2 {
        text-align: left;
        font-size: 33px;
        max-width: 290px
    }

    .craft-banner-copy>p {
        font-size: 14px;
        max-width: 240px;
        margin-top: 17px
    }

    .craft-points {
        flex-direction: column;
        gap: 10px;
        max-width: 210px;
        font-size: 11px;
        margin-top: 22px
    }

    .craft-person {
        height: 56%;
        width: 43%;
        right: -8px;
        bottom: 0
    }

    .craft-background {
        object-position: 35% center
    }

    .legal-hero-layout {
        flex-direction: column;
        text-align: center;
        gap: 27px
    }

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

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

    .legal-category {
        font-size: 10px;
        margin-bottom: 15px
    }

    .legal-emblem {
        padding: 18px 28px
    }

    .legal-emblem .icon {
        width: 40px;
        height: 40px
    }

    .legal-layout>.container {
        grid-template-columns: 1fr;
        gap: 25px
    }

    .cookie-overview article {
        padding: 23px 20px;
        gap: 10px 15px
    }

    .cookie-overview h2 {
        font-size: 24px
    }

    .cookie-overview p {
        font-size: 14px
    }

    .select-options button {
        min-height: 44px
    }

    .material-slide>div:last-child {
        min-height: 140px
    }
}

.ui-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    flex-shrink: 0;
    vertical-align: middle
}

.button-dot:after,
.plus:before,
.plus:after {
    display: none
}

.button-dot .ui-icon {
    width: 22px;
    height: 22px
}

.round-link .ui-icon {
    width: 25px;
    height: 25px
}

.plus {
    display: grid;
    place-items: center
}

.plus .ui-icon {
    width: 13px;
    height: 13px;
    transition: transform .35s
}

.accordion details[open] .plus .ui-icon {
    transform: rotate(45deg)
}

.marquee .ui-icon {
    width: 35px;
    height: 35px
}

.reference-service li:before,
.check-list li:before,
.about-checks li:before {
    display: inline-block;
    width: 11px;
    height: 6px;
    border: 0;
    border-left: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    border-radius: 0;
    transform: rotate(-45deg);
    margin-right: 12px;
    vertical-align: 4px
}

.home-hero h1 {
    font-size: clamp(32px, 4.2vw, 66px);
    line-height: 1.02;
    letter-spacing: -.045em
}

.perspective-seal {
    width: 108px;
    height: 108px;
    left: calc(49% - 54px);
    text-decoration: none;
    border: 6px solid var(--peach);
    box-shadow: 0 5px 0 #cc631e26;
    gap: 8px;
    transition: transform .4s, box-shadow .4s, background .4s
}

.perspective-seal span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1
}

.perspective-seal .ui-icon {
    width: 29px;
    height: 29px
}

.perspective-seal:hover,
.perspective-seal:focus-visible {
    transform: rotate(-7deg) scale(1.06);
    background: #e77820;
    box-shadow: 0 9px 0 #cc631e26
}

.quote-sign-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 25px
}

.quote-sign {
    margin: 0;
    padding: 17px 12px;
    gap: 10px;
    background: #fff;
    border: 1px solid #edd7c2;
    border-radius: 15px;
    transition: transform .4s, box-shadow .4s, border-color .4s
}

.quote-sign:hover,
.quote-sign:focus-visible {
    transform: translateY(-5px);
    border-color: var(--orange);
    box-shadow: 0 8px 0 #f58b3020
}

.quote-sign .icon {
    width: 28px;
    height: 28px
}

.quote-sign strong {
    font-size: 13px
}

.quote-sign span {
    font-size: 11px
}

#specialists h2,
#homeowner-stories h2,
#options h2,
#scope h2 {
    font-size: clamp(25px, 3.1vw, 48px);
    max-width: none
}

#homeowner-stories .review-heading {
    display: block
}

#homeowner-stories .review-heading-mark {
    display: none
}

.review-grid.swiper {
    display: block;
    padding: 7px 0 12px;
    overflow: hidden
}

.review-grid .swiper-wrapper {
    align-items: stretch
}

.review-grid .review-card {
    height: auto;
    box-sizing: border-box;
    transition: background .4s, border-color .4s
}

.review-grid .review-card:hover,
.review-grid .review-card:focus-visible {
    background: #ffead5;
    border-color: var(--orange)
}

#options .reference-heading,
#scope .scope-header {
    display: block
}

#options .reference-heading p,
#scope .scope-header p {
    margin-top: 16px
}

#options .material-slide {
    padding: 13px
}

#options .material-slide>.butterfly-photo {
    height: 190px
}

#options .material-slide>div:last-child {
    min-height: 122px;
    padding: 18px 10px 8px
}

#options .material-slide h3 {
    font-size: 23px;
    margin-bottom: 10px
}

#options .material-slide p {
    margin-bottom: 0;
    line-height: 1.5
}

#options .material-slide .icon {
    top: 17px;
    width: 26px;
    height: 26px
}

.hotspot-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 55px;
    align-items: center
}

.hotspot-layout h2 {
    font-size: clamp(28px, 3.4vw, 48px)
}

.detail-choices {
    display: grid;
    gap: 12px;
    margin: 28px 0 24px
}

.detail-choice {
    padding: 19px 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid #ead3bb;
    border-radius: 16px;
    background: #fff;
    text-align: left;
    transition: background .35s, color .35s, border-color .35s, transform .35s
}

.detail-choice strong {
    font-size: 19px
}

.detail-choice[aria-pressed=true] {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: translateX(6px)
}

.detail-choice .ui-icon {
    width: 20px;
    height: 20px
}

.hotspot-copy {
    min-height: 106px;
    padding-left: 5px
}

.hotspot-copy h3 {
    font-size: 21px;
    margin-bottom: 9px
}

.hotspot-copy p {
    font-size: 15px;
    max-width: 390px
}

.hotspot-photo {
    position: relative;
    aspect-ratio: 1.22;
    border-radius: 30px;
    overflow: hidden
}

.hotspot-photo>img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.detail-point {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    background: #ffffff55;
    border: 1px solid #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: background .35s, box-shadow .35s
}

.detail-point span {
    width: 13px;
    height: 13px;
    background: white;
    border-radius: 50%;
    transition: background .35s, transform .35s
}

.detail-point[aria-pressed=true] {
    background: var(--orange);
    box-shadow: 0 0 0 9px #ff8b3640
}

.detail-point[aria-pressed=true] span {
    transform: scale(.65)
}

.scope-grid {
    gap: 20px
}

.scope-grid article.scope-flip {
    padding: 0;
    background: transparent;
    border-radius: 25px;
    perspective: 1000px;
    text-align: left;
    cursor: pointer;
    display: block;
    height: 285px;
    transform: none
}

.scope-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform .75s cubic-bezier(.2, .65, .2, 1)
}

.scope-front,
.scope-back {
    position: absolute;
    inset: 0;
    border: 5px solid var(--orange);
    border-radius: 25px;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden
}

.scope-front {
    padding: 27px;
    background: #fff;
    display: flex;
    flex-direction: column
}

.scope-grid .scope-front .icon {
    margin: 0 0 16px;
    width: 36px;
    height: 36px
}

.scope-grid .scope-front h3 {
    font-size: 23px;
    margin-bottom: 14px
}

.scope-grid .scope-front p {
    margin: 0;
    line-height: 1.6
}

.scope-back {
    transform: rotateY(180deg);
    background: var(--orange)
}

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

.scope-flip.flipped .scope-inner {
    transform: rotateY(180deg)
}

.scope-flip:focus-visible {
    outline: 3px solid #171717;
    outline-offset: 5px
}

.accordion {
    position: sticky;
    top: 115px;
    align-self: start
}

.faq-layout {
    align-items: start;
    overflow: visible
}

@media(hover:hover) {
    .scope-flip:hover .scope-inner {
        transform: rotateY(180deg)
    }
}

@media(max-width:950px) {
    .hotspot-layout {
        gap: 25px;
        grid-template-columns: 1fr 1fr
    }

    .scope-grid .scope-front {
        padding: 19px
    }

    .scope-grid .scope-front h3 {
        font-size: 21px
    }

    .scope-grid article.scope-flip {
        height: 310px
    }

    .quote-sign-row {
        gap: 8px
    }

    .quote-sign {
        flex-direction: column;
        align-items: flex-start
    }

    .perspective-seal {
        left: calc(49% - 54px)
    }
}

@media(max-width:700px) {
    .home-hero h1 {
        font-size: clamp(28px, 8.1vw, 45px);
        line-height: 1.06
    }

    .nav-shell {
        inset: 65px 12px 12px;
        border: 2px solid var(--orange);
        border-radius: 25px;
        background: #fff5eb;
        padding: 28px 20px;
        box-shadow: 0 15px 40px #0003;
        align-items: center
    }

    .nav-shell.is-open {
        display: flex
    }

    .nav.is-open {
        width: 100%;
        align-items: center;
        gap: 18px;
        text-align: center
    }

    .nav>a,
    .nav-services {
        font-size: 26px;
        font-weight: 700;
        justify-content: center;
        text-align: center;
        padding: 9px 15px
    }

    .nav .dropdown {
        width: 100%
    }

    .nav-services {
        gap: 12px
    }

    .dropdown-menu {
        position: static;
        min-width: 0 !important;
        width: 100%;
        text-align: left;
        border-radius: 18px;
        padding: 9px;
        margin-top: 12px;
        border: 1px solid #f3d1b1;
        box-shadow: none
    }

    .dropdown-menu a {
        justify-content: center;
        padding: 13px 7px
    }

    .dropdown-menu a strong {
        font-size: 15px
    }

    .dropdown-menu a small {
        font-size: 11px
    }

    .nav-shell .header-cta {
        display: flex;
        width: max-content;
        margin: auto auto 5px
    }

    .menu-toggle {
        border-radius: 50%;
        background: var(--orange);
        width: 43px;
        height: 43px;
        padding: 12px
    }

    .quote-sign {
        padding: 14px 10px;
        text-align: left
    }

    .quote-sign-row {
        grid-template-columns: 1fr 1fr
    }

    .perspective-seal {
        top: 252px;
        left: calc(50% - 54px)
    }

    #specialists h2,
    #homeowner-stories h2,
    #options h2,
    #scope h2 {
        font-size: clamp(19px, 5.2vw, 34px);
        letter-spacing: -.04em;
        line-height: 1.18
    }

    .hotspot-layout {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .hotspot-layout h2 {
        text-align: center
    }

    .detail-choice {
        padding: 15px 19px
    }

    .detail-choice strong {
        font-size: 18px
    }

    .hotspot-copy {
        min-height: 92px;
        text-align: center
    }

    .hotspot-copy p {
        margin: 0 auto
    }

    .hotspot-photo {
        aspect-ratio: 1.1
    }

    .scope-grid article.scope-flip {
        height: 250px
    }

    .scope-grid .scope-front {
        padding: 24px
    }

    .accordion {
        top: 83px
    }

    .review-grid .review-card {
        padding: 25px
    }

    #options .material-slide>.butterfly-photo {
        height: 175px
    }

    #options .material-slide>div:last-child {
        min-height: 119px
    }
}

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

    .scope-inner,
    .detail-choice,
    .detail-point,
    .perspective-seal,
    .quote-sign {
        transition: none
    }
}

.home-hero .hero-copy h1 {
    font-size: clamp(64px, 6.6vw, 100px);
    line-height: 1.02;
    letter-spacing: -.045em
}

.hero-paper:after {
    background-image: url('../images/panel-detail.webp');
    background-size: cover;
    background-position: center;
    opacity: .045;
    filter: grayscale(1)
}

.hero-rings {
    animation: ringDrift 6s ease-in-out infinite;
    transform-origin: 50% 50%
}

.hero-rings i {
    animation: ringCore 6s ease-in-out infinite
}

.marquee-flower {
    width: 42px;
    height: 42px;
    vertical-align: middle;
    color: var(--orange);
    margin: 0 14px;
    flex: none
}

.marquee b {
    font-weight: inherit
}

#services .reference-heading {
    display: block
}

#services h2 {
    font-size: clamp(30px, 3.7vw, 54px)
}

#services .reference-heading p {
    margin-top: 15px
}

.scope-grid article.scope-flip {
    height: 255px
}

.scope-inner {
    transition: transform 1s cubic-bezier(.22, .6, .2, 1)
}

.scope-grid .scope-front {
    padding: 23px
}

.scope-grid .scope-front .icon {
    width: 31px;
    height: 31px;
    margin-bottom: 12px
}

.scope-grid .scope-front h3 {
    font-size: 22px;
    margin-bottom: 10px
}

.scope-grid .scope-front p {
    font-size: 14px;
    line-height: 1.55
}

.btn {
    padding: 0 !important;
    background: transparent !important;
    gap: 5px;
    margin-right: 0 !important;
    min-height: 0;
    transform: none !important;
    isolation: isolate;
    overflow: visible;
    max-width: 100%
}

.btn-label {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 16px 27px;
    background: var(--orange);
    color: #fff;
    border-radius: 40px;
    transition: transform .65s cubic-bezier(.22, .7, .2, 1), background .4s
}

.btn .button-dot {
    position: static !important;
    width: 54px !important;
    height: 54px !important;
    flex: 0 0 54px;
    background: var(--orange);
    color: #fff;
    display: grid;
    place-items: center;
    transition: transform .65s cubic-bezier(.22, .7, .2, 1), background .4s;
    transform: none
}

.btn:hover .btn-label,
.btn:focus-visible .btn-label {
    transform: translateX(59px);
    background: #e87b24
}

.btn:hover .button-dot,
.btn:focus-visible .button-dot {
    transform: translateX(calc(-1 * var(--label-width) - 5px));
    background: #e87b24
}

.reference-cta .btn-label {
    background: white;
    color: var(--ink)
}

.reference-cta .btn .button-dot {
    background: #fff;
    color: var(--ink)
}

.btn:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 6px;
    border-radius: 40px
}

.menu-toggle svg {
    width: 30px;
    height: 30px;
    display: block
}

.menu-toggle path {
    transform-origin: 16px 16px;
    transition: transform .4s, opacity .3s
}

.menu-toggle[aria-expanded=true] .burger-top {
    transform: translateY(6px) rotate(45deg)
}

.menu-toggle[aria-expanded=true] .burger-middle {
    opacity: 0
}

.menu-toggle[aria-expanded=true] .burger-bottom {
    transform: translateY(-6px) rotate(-45deg)
}

.editorial-mosaic,
.offset-editorial,
.overlap-editorial,
.stack-editorial,
.twin-editorial,
.framed-editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.editorial-copy p,
.overlap-editorial p,
.stack-editorial p,
.twin-editorial p,
.framed-editorial p {
    max-width: 560px
}

.editorial-copy .btn,
.overlap-editorial .btn,
.framed-editorial .btn,
.twin-editorial .btn {
    margin-top: 22px
}

.mosaic-four {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px
}

.mosaic-four>article,
.mosaic-photo {
    min-height: 230px;
    border-radius: 4px;
    overflow: hidden
}

.mosaic-photo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform .8s
}

.mosaic-photo:hover img {
    transform: scale(1.055)
}

.mosaic-four article {
    background: var(--orange);
    padding: 29px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform .5s, background .5s
}

.mosaic-four article:hover,
.mosaic-four article:focus-visible {
    transform: translateY(-5px);
    background: #ff9b4f
}

.mosaic-four .icon {
    width: 32px;
    height: 32px;
    margin-bottom: 18px
}

.mosaic-four h3 {
    font-size: 22px;
    line-height: 1.18;
    margin-bottom: 15px
}

.mosaic-four p {
    font-size: 14px;
    line-height: 1.6;
    color: #342416;
    margin: 0
}

.offset-editorial {
    grid-template-columns: .8fr 1.2fr;
    align-items: start
}

.offset-editorial>div:first-child>img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    margin-top: 27px
}

.offset-editorial>div:last-child>img {
    width: 100%;
    height: 255px;
    object-fit: cover;
    margin: 23px 0
}

.offset-editorial h2 {
    max-width: 420px
}

.offset-editorial p {
    font-size: 16px
}

.framed-editorial {
    grid-template-columns: .85fr 1.15fr
}

.frame-stack {
    position: relative;
    padding: 0 22px 22px 0
}

.frame-stack:after {
    content: '';
    position: absolute;
    inset: 20px 0 0 20px;
    border: 3px solid #fff;
    pointer-events: none
}

.frame-stack>img {
    width: 100%;
    height: 245px;
    object-fit: cover
}

.frame-stack>div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 14px
}

.frame-stack>div>img {
    width: 100%;
    height: 160px;
    object-fit: cover
}

.overlap-pictures {
    position: relative;
    padding: 0 80px 55px 0;
    height: 460px
}

.overlap-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px
}

.overlap-small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 46%;
    height: 52%;
    object-fit: cover;
    border: 7px solid white;
    border-radius: 18px
}

.picture-caption {
    position: absolute;
    bottom: 1px;
    left: 0;
    max-width: 50%;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    background: var(--orange);
    padding: 15px 22px;
    border-radius: 35px
}

.mini-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 24px 0
}

.mini-features>div {
    display: flex;
    align-items: center;
    gap: 12px
}

.mini-features .icon {
    width: 32px;
    height: 32px;
    background: #fff1e5;
    padding: 5px;
    border-radius: 9px;
    box-sizing: content-box
}

.mini-features strong {
    font-size: 14px
}

.stack-editorial {
    grid-template-columns: .72fr 1.28fr
}

.stack-pictures {
    display: grid;
    gap: 16px
}

.stack-pictures>img {
    width: 100%;
    height: 190px;
    object-fit: cover
}

.editorial-sign {
    border-top: 1px solid #dcc5b0;
    margin-top: 30px;
    padding-top: 25px;
    display: flex;
    align-items: center;
    gap: 25px
}

.editorial-sign strong {
    max-width: 300px;
    font-size: 16px
}

.twin-pictures {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 430px
}

.twin-pictures>img {
    width: 57%;
    height: 100%;
    object-fit: cover
}

.twin-pictures>img+img {
    width: 40%;
    height: 85%
}

.repair-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin-top: 24px
}

.repair-checks li {
    border-left: 3px solid var(--orange);
    padding-left: 12px;
    font-size: 14px;
    font-weight: 700
}

.notes-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 32px
}

.notes-heading p {
    max-width: 360px
}

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

.note-card {
    display: block;
    position: relative
}

.note-card>img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 5px;
    transition: filter .5s, transform .6s
}

.note-card:hover>img {
    filter: brightness(.9);
    transform: translateY(-4px)
}

.note-topic {
    display: inline-block;
    background: var(--orange);
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    border-radius: 30px;
    padding: 12px 17px;
    position: relative;
    margin: -20px 18px 10px;
    vertical-align: top
}

.note-card h3 {
    font-size: 23px;
    line-height: 1.25;
    margin: 8px 0 16px;
    max-width: 330px
}

.note-link {
    font-size: 12px;
    font-weight: 700;
    border-bottom: 1px solid var(--orange);
    padding-bottom: 5px
}

.comparison {
    position: relative;
    height: 385px;
    overflow: hidden;
    border-radius: 20px;
    background: #e8e0d7;
    isolation: isolate
}

.compare-before,
.compare-after img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%
}

.compare-after {
    position: absolute;
    inset: 0;
    clip-path: inset(0 0 0 var(--reveal));
    pointer-events: none
}

.compare-labels {
    position: absolute;
    top: 22px;
    left: 25px;
    right: 25px;
    display: flex;
    justify-content: space-between;
    pointer-events: none
}

.compare-labels span {
    background: #fff;
    color: #141414;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 10px 16px;
    border-radius: 25px
}

.compare-labels span+span {
    background: var(--orange);
    color: white
}

.compare-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--reveal);
    width: 2px;
    background: white;
    pointer-events: none;
    transform: translateX(-50%)
}

.compare-divider>span {
    width: 48px;
    height: 48px;
    background: #fff;
    border: 5px solid #ffffff50;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 3px 16px #0002
}

.compare-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    touch-action: pan-y;
    margin: 0
}

.comparison:focus-within {
    outline: 3px solid var(--orange);
    outline-offset: 5px
}

.compare-caption {
    position: absolute;
    bottom: 19px;
    left: 25px;
    background: #141414db;
    color: white;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 12px;
    pointer-events: none
}

.compare-caption small {
    display: block;
    font-size: 9px;
    opacity: .65;
    margin-top: 3px
}

.comparison-replacement {
    border-radius: 3px;
    border-bottom: 6px solid var(--orange)
}

.comparison-repair {
    height: 320px;
    border-radius: 40px 5px 40px 5px
}

.facade-studio {
    height: 385px;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    background: var(--peach);
    cursor: pointer
}

.build-base {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%
}

.build-strips {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.build-strip {
    position: absolute;
    inset: 0;
    background: url('../images/studio-after.webp') center 48%/cover no-repeat;
    clip-path: inset(calc(var(--strip)*12.5%) 100% calc(100% - (var(--strip) + 1)*12.5%) 0);
    transition: clip-path .75s cubic-bezier(.25, .6, .3, 1);
    transition-delay: calc(var(--strip)*.08s)
}

.facade-studio.is-built .build-strip {
    clip-path: inset(calc(var(--strip)*12.5%) 0 calc(100% - (var(--strip) + 1)*12.5%) 0)
}

.studio-tag {
    position: absolute;
    left: 25px;
    bottom: 25px;
    display: grid;
    gap: 8px;
    background: #fff;
    padding: 18px 22px;
    border-radius: 13px;
    max-width: 55%
}

.studio-tag>span {
    font-size: 9px;
    letter-spacing: 1.5px;
    color: #915128;
    font-weight: 700
}

.studio-tag>strong {
    font-size: 16px
}

.studio-toggle {
    position: absolute;
    right: 25px;
    bottom: 25px;
    background: var(--orange);
    color: white;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 700;
    padding: 15px 20px;
    border: 0
}

.facade-studio:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 5px
}

@keyframes ringDrift {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1)
    }

    50% {
        transform: translate3d(0, -13px, 0) scale(1.055)
    }
}

@keyframes ringCore {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(.9)
    }
}

@media(min-width:1500px) {
    .home-hero .hero-copy h1 {
        font-size: 107px
    }
}

@media(max-width:1100px) {

    .editorial-mosaic,
    .offset-editorial,
    .overlap-editorial,
    .stack-editorial,
    .twin-editorial,
    .framed-editorial {
        gap: 35px
    }

    .mosaic-four {
        gap: 14px
    }

    .mosaic-four>article,
    .mosaic-photo {
        min-height: 200px
    }

    .mosaic-four article {
        padding: 21px
    }

    .mosaic-four h3 {
        font-size: 20px
    }

    .editorial-sign {
        display: block
    }

    .editorial-sign .btn {
        margin-top: 20px
    }

    .overlap-pictures {
        padding-right: 45px
    }

    .scope-grid article.scope-flip {
        height: 275px
    }

    .home-hero .hero-copy h1 {
        font-size: clamp(62px, 7.2vw, 80px)
    }
}

@media(max-width:700px) {
    body.menu-open {
        overflow: hidden
    }

    .menu-open .header {
        z-index: 150
    }

    .header-inner>.brand,
    .menu-toggle {
        position: relative;
        z-index: 153
    }

    .menu-open .header-inner>.brand {
        color: var(--ink)
    }

    .nav-shell,
    .nav-shell:has(.is-open),
    .nav-shell.is-open {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100dvh;
        max-height: 100dvh;
        z-index: 151;
        border: 0;
        border-radius: 0;
        background: #fff5eb;
        box-shadow: none;
        padding: 95px 24px 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 28px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity .35s, visibility .35s, transform .45s;
        overflow: auto
    }

    .nav-shell:before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('../images/panel-detail.webp') center/cover;
        opacity: .035;
        filter: grayscale(1);
        pointer-events: none;
        z-index: -1
    }

    .nav-shell.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none
    }

    .nav,
    .nav.is-open {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 13px;
        width: min(100%, 380px);
        margin: auto 0 0
    }

    .nav>a,
    .nav-services {
        font-size: clamp(23px, 6.5vw, 31px);
        font-weight: 900;
        text-align: center;
        justify-content: center;
        padding: 8px 12px
    }

    .nav .dropdown {
        width: 100%
    }

    .dropdown-menu {
        width: 100%;
        border: 1px solid #e9ccae;
        background: #fff9f2;
        margin-top: 8px
    }

    .dropdown-menu a {
        padding: 10px;
        justify-content: center;
        text-align: center
    }

    .dropdown-menu a .icon {
        width: 25px;
        height: 25px
    }

    .dropdown-menu a strong {
        font-size: 14px
    }

    .dropdown-menu a small {
        font-size: 10px
    }

    .nav-shell .header-cta {
        margin: 0 0 auto !important;
        display: inline-flex;
        flex: none
    }

    .menu-toggle {
        display: grid;
        place-items: center;
        width: 45px;
        height: 45px;
        padding: 0;
        color: #fff;
        border: 1px solid #ffab65;
        border-radius: 13px;
        background: var(--orange)
    }

    .home-hero .hero-copy h1 {
        font-size: clamp(46px, 13.5vw, 65px);
        line-height: .98;
        margin: 20px 0 23px
    }

    .home-hero .roofin-hero {
        height: 680px
    }

    .home-hero .hero-copy {
        padding-top: 28px
    }

    .home-hero .hero-rings {
        bottom: 146px
    }

    .btn-label {
        min-height: 46px;
        padding: 13px 21px
    }

    .btn .button-dot {
        width: 46px !important;
        height: 46px !important;
        flex-basis: 46px
    }

    .btn:hover .btn-label,
    .btn:focus-visible .btn-label {
        transform: translateX(51px)
    }

    .scope-grid article.scope-flip {
        height: 225px
    }

    .scope-grid .scope-front {
        padding: 21px
    }

    .editorial-mosaic,
    .offset-editorial,
    .overlap-editorial,
    .stack-editorial,
    .twin-editorial,
    .framed-editorial {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .editorial-copy {
        text-align: center
    }

    .editorial-copy p {
        margin-inline: auto
    }

    .mosaic-four>article,
    .mosaic-photo {
        min-height: 175px
    }

    .mosaic-four article {
        padding: 15px
    }

    .mosaic-four h3 {
        font-size: 18px
    }

    .mosaic-four p {
        font-size: 12px
    }

    .offset-editorial h2,
    .overlap-editorial h2,
    .stack-editorial h2,
    .twin-editorial h2,
    .framed-editorial h2 {
        text-align: center
    }

    .offset-editorial>div:first-child>img {
        height: 220px
    }

    .offset-editorial>div:last-child>img {
        height: 210px
    }

    .overlap-pictures {
        height: 330px;
        padding: 0 55px 45px 0
    }

    .picture-caption {
        font-size: 8px;
        padding: 13px
    }

    .mini-features {
        gap: 14px
    }

    .mini-features strong {
        font-size: 12px
    }

    .stack-pictures {
        grid-template-columns: 1fr 1fr;
        gap: 12px
    }

    .stack-pictures>img {
        height: 190px
    }

    .frame-stack>img {
        height: 220px
    }

    .frame-stack>div>img {
        height: 130px
    }

    .twin-pictures {
        height: 300px
    }

    .repair-checks {
        gap: 12px
    }

    .repair-checks li {
        font-size: 12px
    }

    .notes-heading {
        display: block;
        text-align: center
    }

    .notes-heading p {
        margin-inline: auto
    }

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

    .note-card>img {
        height: 220px
    }

    .note-card h3 {
        font-size: 22px
    }

    .comparison,
    .facade-studio {
        height: 285px;
        border-radius: 15px
    }

    .comparison-repair {
        height: 255px
    }

    .compare-labels {
        left: 12px;
        right: 12px;
        top: 12px
    }

    .compare-labels span {
        font-size: 8px;
        letter-spacing: .3px;
        padding: 9px 10px
    }

    .compare-caption {
        left: 12px;
        bottom: 12px;
        right: 12px;
        font-size: 10px;
        padding: 9px 11px
    }

    .studio-tag {
        left: 12px;
        right: 12px;
        bottom: 61px;
        max-width: none;
        padding: 12px 14px
    }

    .studio-tag strong {
        font-size: 12px
    }

    .studio-tag span {
        font-size: 8px
    }

    .studio-toggle {
        right: 12px;
        bottom: 12px;
        padding: 11px 15px;
        font-size: 11px
    }

    .marquee-flower {
        width: 29px;
        height: 29px;
        margin: 0 9px
    }

    #services h2 {
        font-size: clamp(23px, 6vw, 38px)
    }
}

@media(max-width:700px) and (max-height:650px) {

    .nav-shell,
    .nav-shell.is-open {
        padding-top: 75px;
        padding-bottom: 18px;
        gap: 14px
    }

    .nav,
    .nav.is-open {
        gap: 5px
    }

    .nav>a,
    .nav-services {
        font-size: 22px;
        padding: 5px
    }

    .dropdown-menu a {
        padding: 6px
    }

    .dropdown-menu a small {
        display: none
    }
}

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

    .hero-rings,
    .hero-rings i {
        animation: none
    }

    .btn-label,
    .btn .button-dot,
    .build-strip {
        transition: none
    }

    .nav-shell {
        transition: none
    }
}

@media(max-width:700px) {
    .nav-shell .header-cta {
        align-self: center
    }
}

section[id$="-comparison"] {
    padding-top: 30px
}

#facade-studio {
    padding-top: 40px;
    padding-bottom: 40px
}

.system-note {
    display: flex;
    align-items: stretch;
    gap: 18px;
    margin: 28px 0 26px;
    padding: 18px 20px;
    background: #fff;
    border-left: 5px solid var(--orange);
    border-radius: 8px;
    box-shadow: 0 14px 34px #3f21050f
}

.system-note p {
    flex: 1;
    min-width: 0;
    margin: 0;
    color: #2a2a2a;
    font-size: 15px;
    line-height: 1.55
}

.system-note p:first-child {
    font-weight: 700
}

.system-note span {
    width: 1px;
    background: #ead5c2;
    flex: none
}

@media(max-width:700px) {
    .system-note {
        display: grid;
        gap: 12px;
        padding: 17px 18px;
        text-align: left
    }

    .system-note span {
        width: 100%;
        height: 1px
    }

    .system-note p {
        font-size: 14px;
        line-height: 1.55
    }
}

#installation-insight .offset-editorial>div:first-child {
    position: sticky;
    top: 115px;
    align-self: start
}

@media(max-width:700px) {
    #installation-insight .offset-editorial>div:first-child {
        position: static
    }
}

.scope-grid .scope-front {
    position: relative;
    padding: 30px 34px;
    gap: 13px;
    justify-content: flex-start
}

.scope-grid .scope-front .icon {
    position: absolute;
    top: 30px;
    right: 32px;
    margin: 0;
    width: 36px;
    height: 36px
}

.scope-grid .scope-front h3 {
    padding-right: 62px;
    margin: 42px 0 0
}

.scope-grid .scope-front p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55
}

.scope-grid .scope-front .scope-detail {
    color: #5d5d5d
}

.scope-grid .scope-front .scope-extra {
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid #f3dcc7;
    color: #775c46
}

@media(max-width:700px) {
    .scope-grid .scope-front {
        padding: 26px 24px;
        gap: 11px
    }

    .scope-grid .scope-front .icon {
        top: 23px;
        right: 24px;
        width: 31px;
        height: 31px
    }

    .scope-grid .scope-front h3 {
        padding-right: 52px;
        margin-top: 36px
    }

    .scope-grid .scope-front p {
        font-size: 13px;
        line-height: 1.48
    }
}

.hero-paper:after {
    background-size: 540px auto;
    background-repeat: repeat;
    background-position: right center;
    opacity: .105;
    filter: grayscale(1);
    transform: none
}

.editorial-copy p+p {
    margin-top: 18px
}

.scope-grid .scope-front {
    padding: 21px;
    gap: 9px
}

.scope-grid .scope-front .icon {
    margin: 0;
    width: 28px;
    height: 28px
}

.scope-grid .scope-front h3 {
    margin: 0;
    font-size: 21px
}

.scope-grid .scope-front p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5
}

.scope-grid .scope-front .scope-extra {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f3dcc7;
    color: #775c46
}

.scope-grid article.scope-flip {
    height: 285px
}

.hotspot-copy {
    min-height: 106px
}

.detail-choices {
    gap: 10px;
    margin: 22px 0 20px
}

.detail-choice {
    padding: 16px 22px
}

@media(max-width:1100px) and (min-width:701px) {
    .scope-grid article.scope-flip {
        height: 315px
    }

    .scope-grid .scope-front {
        padding: 17px
    }

    .scope-grid .scope-front h3 {
        font-size: 19px
    }
}

@media(max-width:700px) {
    .home-hero .hero-copy h1 {
        font-size: clamp(40px, 11.7vw, 56px);
        line-height: 1.02;
        text-align: center;
        width: 100%;
        margin: 22px auto 25px;
        letter-spacing: -.035em
    }

    .home-hero .hero-copy {
        padding-left: 20px;
        padding-right: 20px
    }

    .home-hero .hero-proof {
        justify-content: center
    }

    .home-hero .hero-copy {
        text-align: center
    }

    .hero-paper:after {
        background-size: 390px auto;
        opacity: .085
    }

    .scope-grid article.scope-flip {
        height: 265px
    }

    .scope-grid .scope-front {
        padding: 22px
    }

    .scope-grid .scope-front h3 {
        font-size: 22px
    }

    .scope-grid .scope-front p {
        font-size: 14px
    }

    .detail-choice {
        padding: 15px 19px
    }
}

.scope-grid .scope-front {
    position: relative !important;
    padding: 30px 34px !important;
    gap: 13px !important;
    justify-content: flex-start
}

.scope-grid .scope-front .icon {
    position: absolute;
    top: 30px;
    right: 32px;
    margin: 0 !important;
    width: 36px !important;
    height: 36px !important
}

.scope-grid .scope-front h3 {
    padding-right: 62px;
    margin: 42px 0 0 !important
}

.scope-grid .scope-front p {
    margin: 0 !important;
    font-size: 14px;
    line-height: 1.55
}

.scope-grid .scope-front .scope-detail {
    color: #5d5d5d
}

.scope-grid .scope-front .scope-extra {
    margin-top: 4px !important;
    padding-top: 14px !important;
    border-top: 1px solid #f3dcc7;
    color: #775c46
}

@media(max-width:700px) {
    .scope-grid .scope-front {
        padding: 26px 24px !important;
        gap: 11px !important
    }

    .scope-grid .scope-front .icon {
        top: 23px;
        right: 24px;
        width: 31px !important;
        height: 31px !important
    }

    .scope-grid .scope-front h3 {
        padding-right: 52px;
        margin-top: 36px !important
    }

    .scope-grid .scope-front p {
        font-size: 13px !important;
        line-height: 1.48 !important
    }
}

.scope-grid {
    align-items: stretch !important
}

.scope-grid article.scope-flip {
    height: 340px !important;
    min-height: 340px !important
}

.scope-grid .scope-inner {
    height: 100% !important
}

@media(max-width:1100px) and (min-width:701px) {
    .scope-grid article.scope-flip {
        height: 370px !important;
        min-height: 370px !important
    }
}

@media(max-width:700px) {
    .scope-grid article.scope-flip {
        height: 330px !important;
        min-height: 330px !important
    }
}

.hotspot-photo {
    aspect-ratio: 1.38 !important
}

@media(max-width:700px) {
    .hotspot-photo {
        aspect-ratio: 1.24 !important
    }
}

.scope-grid {
    display: grid !important;
    align-items: stretch !important;
    grid-auto-rows: 1fr !important
}

.scope-grid article.scope-flip {
    height: 360px !important;
    min-height: 360px !important
}

.scope-grid .scope-inner,
.scope-grid .scope-front,
.scope-grid .scope-back {
    height: 100% !important;
    min-height: 100% !important
}

@media(max-width:1100px) and (min-width:701px) {
    .scope-grid article.scope-flip {
        height: 390px !important;
        min-height: 390px !important
    }
}

@media(max-width:700px) {
    .scope-grid article.scope-flip {
        height: 350px !important;
        min-height: 350px !important
    }
}

.section.peach .hotspot-layout>div:first-child {
    position: sticky;
    top: 115px;
    align-self: start
}

@media(max-width:700px) {
    .section.peach .hotspot-layout>div:first-child {
        position: static
    }
}