:root {
    --ink: #242522;
    --black: #191a18;
    --paper: #f2eee3;
    --cream: #fffaf0;
    --gold: #e3ad31;
    --gold-dark: #765300;
    --stone: #d4cdbb;
    --line: rgba(36, 37, 34, .18);
    --max: 1440px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: #d8d1c1;
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased
}

main {
    width: min(100%, var(--max));
    margin: auto;
    overflow: hidden;
    background: var(--paper);
    box-shadow: 0 0 70px rgba(25, 26, 24, .16)
}

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

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

.kicker {
    margin: 0 0 15px;
    color: var(--gold-dark);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .19em;
    text-transform: uppercase
}

h1,
h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -.06em;
    line-height: .92
}

h2 {
    font-size: clamp(3rem, 5.6vw, 6rem)
}

h2 em {
    color: var(--gold-dark);
    font-weight: 500
}

.site-header {
    height: 78px;
    padding: 8px clamp(22px, 5vw, 70px);
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 28px;
    background: rgba(255, 250, 240, .95);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(15px)
}

.brand img {
    width: 158px;
    height: auto
}

nav {
    display: flex;
    gap: 32px;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase
}

nav a {
    padding: 10px 0;
    position: relative
}

nav a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 4px;
    height: 2px;
    background: var(--gold);
    transition: right .25s
}

nav a:hover:after,
nav a:focus-visible:after {
    right: 0
}

.header-call {
    min-height: 42px;
    padding: 0 17px;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--black);
    color: var(--cream);
    font-size: .65rem;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
    box-shadow: 5px 5px 0 var(--gold);
    transition: transform .2s, box-shadow .2s
}

.header-call:hover,
.header-call:focus-visible {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 var(--gold)
}

.header-call span {
    color: var(--gold);
    font-size: .85rem
}

.hero {
    height: 470px;
    display: grid;
    grid-template-columns: 54% 46%;
    background: var(--black);
    color: var(--cream);
    position: relative
}

.hero-copy {
    padding: 40px clamp(25px, 6vw, 88px);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    position: relative;
    z-index: 4
}

.hero .kicker {
    color: var(--gold)
}

h1 {
    font-size: clamp(4rem, 6.2vw, 6.4rem)
}

h1 em {
    color: var(--gold);
    font-weight: 500
}

.hero-lead {
    max-width: 555px;
    margin: 18px 0 0;
    color: rgba(255, 250, 240, .7);
    font-size: 1rem;
    line-height: 1.5
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 22px
}

.button {
    min-height: 50px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: transform .2s, box-shadow .2s
}

.button:hover {
    transform: translateY(-3px)
}

.button-gold {
    background: var(--gold);
    color: var(--black);
    box-shadow: 7px 7px 0 rgba(227, 173, 49, .17)
}

.quiet-link {
    padding: 9px 0;
    border-bottom: 1px solid var(--gold);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase
}

.hero-art {
    position: relative;
    min-width: 0
}

.hero-gold {
    position: absolute;
    inset: 0 -2px 0 42%;
    background: var(--gold);
    clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%)
}

.portrait {
    position: absolute;
    z-index: 2;
    inset: 25px 48px 0 30px;
    margin: 0;
    overflow: hidden;
    clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%)
}

.portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    filter: saturate(.75) contrast(1.08);
    animation: heroImageZoom 8s ease-out .36s both
}

.hero-art:hover .portrait img {
    filter: saturate(1) contrast(1)
}

.since-stamp {
    position: absolute;
    z-index: 6;
    right: 18px;
    bottom: 18px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--black);
    color: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(8deg);
    box-shadow: 0 0 0 5px var(--gold), 0 0 0 7px var(--black)
}

.since-stamp strong {
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 1.55rem
}

.since-stamp span {
    letter-spacing: .12em;
    text-transform: uppercase
}

.service-ribbon {
    min-height: 52px;
    padding: 6px clamp(18px, 4vw, 58px);
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 16px;
    font-family: Georgia, serif;
    font-size: clamp(.92rem, .9vw, 1.2rem);
    white-space: nowrap
}

.service-ribbon i {
    flex: 1 1 12px;
    max-width: 1px;
    height: 18px;
    background: currentColor;
    font-style: normal;
    font-size: 0
}

.section {
    padding: clamp(64px, 7vw, 98px) clamp(24px, 7vw, 105px)
}

.promise {
    background: var(--cream);
    display: grid;
    grid-template-columns: 58px 1fr 175px;
    gap: 28px;
    align-items: center
}

.promise.section {
    padding-top: 48px;
    padding-bottom: 48px
}

.promise .kicker {
    margin-bottom: 9px
}

.promise h2 {
    max-width: 930px;
    font-size: clamp(2.15rem, 3.35vw, 3.35rem);
    white-space: nowrap
}

.services {
    background: var(--paper)
}

.section-intro {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: end
}

.section-intro>p {
    max-width: 480px;
    margin: 0 0 5px auto;
    color: #62655f;
    font-size: 1rem;
    line-height: 1.65
}

.feature {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    min-height: 590px;
    background: var(--stone)
}

.feature-photo {
    position: relative;
    overflow: hidden
}

.feature-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(.18) saturate(.72) contrast(1.05);
    transition: filter .6s
}

.feature-photo:hover img {
    filter: sepia(0) saturate(1)
}

.feature-photo:after {
    content: "";
    position: absolute;
    inset: 0;
    border: 28px solid rgba(227, 173, 49, .88);
    border-right: 0;
    mix-blend-mode: multiply;
    pointer-events: none
}

.feature-photo span {
    position: absolute;
    left: 28px;
    bottom: 28px;
    padding: 10px 14px;
    background: var(--black);
    color: var(--gold);
    font-size: .6rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase
}

.feature-copy {
    padding: clamp(55px, 7vw, 95px);
    display: flex;
    flex-direction: column;
    justify-content: center
}

.feature-copy>p:not(.kicker) {
    max-width: 520px;
    margin: 26px 0;
    color: #575a55;
    line-height: 1.65
}

.feature-copy .button {
    align-self: flex-start
}

.reviews {
    background: var(--cream)
}

.reviews-head {
    grid-template-columns: 1fr
}

.award-chip {
    width: 155px;
    height: 155px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(6deg)
}

.award-chip strong {
    font-family: Georgia, serif;
    font-size: 1.15rem
}

.award-chip span {
    margin-top: 7px;
    font-size: .48rem;
    font-weight: 900;
    line-height: 1.4;
    text-transform: uppercase
}

.review-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.review-grid figure {
    min-height: 290px;
    margin: 0;
    padding: 30px;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    transition: background .25s, transform .25s
}

.review-grid figure:last-child {
    border-right: 0
}

.review-grid figure:hover {
    background: var(--paper);
    transform: translateY(-5px)
}

blockquote {
    margin: 0px 0px 20px 0px;
    font-family: Georgia, serif;
    font-size: clamp(1.15rem, 1.5vw, 1.55rem);
    line-height: 1.4
}

figcaption {
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: .68rem
}

.official-award {
    width: min(100%, 880px);
    margin: clamp(42px, 5vw, 68px) auto 0;
    padding: clamp(24px, 3vw, 36px);
    border-radius: 25px;
    background: var(--black);
    color: var(--cream);
    display: grid;
    grid-template-columns: minmax(150px, 210px) 1fr;
    gap: clamp(26px, 4vw, 52px);
    align-items: center
}

.official-award img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 18px 18px rgba(0, 0, 0, .3))
}

.official-award h3 {
    max-width: 680px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3.5vw, 3.4rem);
    font-weight: 500;
    letter-spacing: -.05em;
    line-height: .95
}

.official-award p:last-child {
    margin: 22px 0 0;
    color: #c9c5bb;
    font-size: clamp(1rem, 1.4vw, 1.25rem)
}

.unofficial-awards-heading {
    margin-top: clamp(58px, 7vw, 96px);
    text-align: center
}

.unofficial-awards-heading h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: 1
}

.awards {
    margin-top: clamp(34px, 4vw, 52px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(34px, 5vw, 80px);
    flex-wrap: wrap
}

.awards .award-chip {
    flex: 0 0 auto;
    margin: 0;
    transform: none
}

.award-chip.award-playful {
    background: var(--black);
    color: var(--cream);
    border-color: var(--gold);
    box-shadow: 0 0 0 5px var(--cream), 0 0 0 7px var(--gold), 10px 14px 0 rgba(36, 37, 34, .12)
}

.award-chip.award-playful:before {
    color: var(--gold)
}


@media(max-width:620px) {
    .official-award {
        grid-template-columns: 1fr;
        text-align: center
    }

    .official-award img {
        width: min(100%, 200px);
        margin: auto
    }
}

figcaption strong {
    text-transform: uppercase;
    letter-spacing: .1em
}

figcaption span {
    color: #777a74
}

.site-content-footer {
    position: relative;
    overflow: hidden;
    padding: clamp(64px, 7vw, 95px) clamp(24px, 7vw, 105px);
    border-top: 8px solid var(--gold);
    background: var(--black);
    color: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: end
}

.site-content-footer:before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    right: -170px;
    top: -260px;
    border: 1px solid rgba(227, 173, 49, .3);
    border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(227, 173, 49, .04), 0 0 0 120px rgba(227, 173, 49, .025)
}

.site-content-footer>* {
    position: relative;
    z-index: 1
}

.site-content-footer .kicker {
    color: var(--gold)
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.contact-details>p {
    max-width: 450px;
    margin: 0 0 30px;
    color: rgba(255, 250, 240, .68);
    line-height: 1.6
}

.contact-details a {
    width: 100%;
    padding: 17px 0;
    border-bottom: 1px solid rgba(227, 173, 49, .4);
    display: flex;
    justify-content: space-between;
    font-family: Georgia, serif;
    font-size: clamp(1.2rem, 2.3vw, 2.1rem);
    transition: color .2s, border-color .2s
}

.contact-details a span {
    color: var(--gold)
}

.contact-details a:hover {
    color: var(--gold);
    border-color: var(--gold)
}

footer {
    width: min(100%, var(--max));
    margin: auto;
    padding: 58px clamp(24px, 7vw, 105px) 24px;
    background: transparent;
    color: var(--ink);
    font-size: .82rem;
    line-height: 1.65
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .65fr 1fr;
    gap: clamp(45px, 6vw, 90px);
    padding-bottom: 45px
}

.footer-grid h3 {
    margin: 0 0 18px;
    color: var(--gold-dark);
    font-size: .68rem;
    letter-spacing: .17em;
    text-transform: uppercase
}

.footer-about img {
    width: 185px;
    height: auto;
    margin-bottom: 22px
}

.footer-about p {
    max-width: 440px;
    margin: 0;
    color: #62655f
}

.footer-links nav,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.footer-links nav {
    gap: 10px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none
}

.footer-links nav a,
.footer-contact a {
    transition: color .2s
}

.footer-links nav a:hover,
.footer-links nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
    color: var(--gold-dark)
}

.footer-contact {
    gap: 12px
}

.footer-contact a {
    font-weight: 800
}

.footer-contact a span,
.footer-contact p span {
    display: inline-block;
    width: 22px;
    color: var(--gold-dark)
}

.footer-contact p {
    margin: 0;
    color: #62655f
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(36, 37, 34, .2);
    display: flex;
    justify-content: space-between;
    gap: 25px;
    color: #686b65;
    font-size: .66rem;
    letter-spacing: .07em;
    text-transform: uppercase
}

.footer-bottom p {
    margin: 0
}

.footer-bottom a {
    color: var(--ink);
    font-weight: 900
}

.mobile-header-call {
    display: none
}

.email-value {
    width: auto !important;
    color: inherit !important
}

.footer-about p a {
    color: var(--ink);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: var(--gold-dark);
    text-underline-offset: 3px
}

.award-chip {
    position: relative;
    width: 180px;
    height: 180px;
    padding: 28px 18px;
    border: 2px solid var(--black);
    background: var(--gold);
    box-shadow: 0 0 0 5px var(--cream), 0 0 0 7px var(--black), 10px 14px 0 rgba(36, 37, 34, .12);
    transform: rotate(5deg)
}

.award-chip:before {
    content: "★";
    position: absolute;
    top: 15px;
    color: var(--black);
    font-size: .7rem
}

.award-chip strong {
    font-size: 1.42rem;
    line-height: .9;
    letter-spacing: -.03em
}

.award-chip span {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: .48rem;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 1.25;
    text-transform: uppercase
}

.award-chip .award-source {
    margin-bottom: 8px
}

@media(max-width:620px) {
    .award-chip {
        width: 150px;
        height: 150px;
        padding: 24px 14px
    }

    .award-chip:before {
        top: 11px
    }

    .award-chip strong {
        font-size: 1.18rem
    }

    .award-chip span {
        font-size: .42rem
    }
}

.enter {
    opacity: 0;
    animation: rise .75s cubic-bezier(.2, .7, .2, 1) forwards
}

.enter-1 {
    animation-delay: .05s
}

.enter-2 {
    animation-delay: .15s
}

.enter-3 {
    animation-delay: .25s
}

.enter-4 {
    animation-delay: .38s
}

.enter-5 {
    animation-delay: .5s
}

@media(max-width:960px) {
    .site-header {
        grid-template-columns: 1fr auto
    }

    .site-header>nav {
        display: none
    }

    .hero {
        height: auto;
        grid-template-columns: 1fr
    }

    .hero-copy {
        min-height: 470px
    }

    .hero-art {
        min-height: 490px
    }

    .promise {
        grid-template-columns: 45px 1fr
    }

    .promise h2 {
        white-space: normal
    }

    .section-intro,
    .feature,
    .site-content-footer {
        grid-template-columns: 1fr
    }

    .feature-photo {
        min-height: 470px
    }

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

    .review-grid figure {
        min-height: 150px;
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .review-grid figure:last-child {
        border-bottom: 0
    }

    .footer-grid {
        grid-template-columns: 1.2fr .8fr
    }

    .footer-contact {
        grid-column: 1/-1
    }

    .footer-contact p {
        max-width: none
    }
}

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

    .site-header {
        position: relative;
        height: 70px;
        padding-inline: 20px
    }

    .brand img {
        width: 140px
    }

    .header-call {
        display: none
    }

    .hero-copy {
        min-height: 440px;
        padding: 45px 22px
    }

    h1 {
        font-size: clamp(3.5rem, 16vw, 4.8rem)
    }

    h2 {
        font-size: clamp(3rem, 14vw, 4.5rem)
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 15px
    }

    .button {
        width: 100%
    }

    .quiet-link {
        align-self: flex-start
    }

    .hero-art {
        min-height: 420px
    }

    .portrait {
        inset: 20px 20px 0
    }

    .project-shot {
        left: 14px;
        width: 140px;
        height: 95px
    }

    .since-stamp {
        width: 92px;
        height: 92px;
        right: 12px
    }

    .service-ribbon {
        justify-content: flex-start;
        overflow: hidden
    }

    .service-ribbon span:nth-of-type(n+3),
    .service-ribbon i:nth-of-type(n+3) {
        display: none
    }

    .section {
        padding: 60px 22px
    }

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

    .feature-photo {
        min-height: 380px
    }

    .feature-photo:after {
        border-width: 15px
    }

    .feature-copy {
        padding: 60px 22px
    }

    .feature-copy ul {
        grid-template-columns: 1fr
    }

    .reviews-head {
        grid-template-columns: 1fr
    }

    .award-chip {
        margin-top: 35px;
        width: 130px;
        height: 130px
    }

    .site-content-footer {
        padding: 60px 22px;
        gap: 42px
    }

    .contact-details a {
        font-size: 1.1rem
    }

    footer {
        padding: 48px 22px 22px
    }

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

    .footer-contact {
        grid-column: auto
    }

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

}

.hero-art {
    overflow: hidden
}

.slash-in {
    animation: slashIn .72s cubic-bezier(.2, .75, .2, 1) .12s both
}

.photo-in {
    animation: photoSlide .82s cubic-bezier(.2, .75, .2, 1) .36s both
}

.stamp-pop {
    animation: stampPop .48s cubic-bezier(.18, 1.45, .35, 1) 1.02s both
}

@keyframes slashIn {
    from {
        transform: translateX(115%)
    }

    to {
        transform: translateX(0)
    }
}

@keyframes photoSlide {
    from {
        transform: translateX(125%)
    }

    to {
        transform: translateX(0)
    }
}

@keyframes stampPop {
    0% {
        opacity: 0;
        transform: scale(.35) rotate(-8deg)
    }

    70% {
        opacity: 1;
        transform: scale(1.1) rotate(10deg)
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(8deg)
    }
}

@keyframes heroImageZoom {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(1.075)
    }
}

.problem-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(60px, 6vw, 86px) clamp(24px, 7vw, 105px);
    background: var(--gold);
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: clamp(50px, 8vw, 120px);
    align-items: end
}

.problem-cta:before {
    content: "TO DO";
    position: absolute;
    z-index: -1;
    right: -20px;
    top: -48px;
    color: rgba(25, 26, 24, .065);
    font-family: Georgia, serif;
    font-size: clamp(8rem, 17vw, 17rem);
    font-weight: 700;
    letter-spacing: -.08em;
    white-space: nowrap
}

.problem-cta .kicker {
    color: var(--black)
}

.problem-cta h2 {
    font-size: clamp(3.4rem, 5.6vw, 6rem)
}

.problem-cta h2 em {
    color: var(--cream)
}

.problem-cta h2 em span {
    position: relative;
    display: inline-block
}

.problem-cta h2 em span:after {
    content: "";
    position: absolute;
    left: 1%;
    right: -2%;
    bottom: -.08em;
    height: .1em;
    border-radius: 50%;
    background: var(--black);
    transform: rotate(-1.5deg);
    opacity: .82
}

.problem-cta-action>p {
    max-width: 470px;
    margin: 0 0 26px;
    line-height: 1.6
}

.problem-cta-action>a {
    min-height: 92px;
    padding: 18px 22px;
    background: var(--black);
    color: var(--cream);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 7px 20px;
    align-items: center;
    box-shadow: 8px 8px 0 rgba(25, 26, 24, .16);
    transition: transform .22s, box-shadow .22s
}

.problem-cta-action>a:hover {
    transform: translate(-3px, -3px);
    box-shadow: 12px 12px 0 rgba(25, 26, 24, .16)
}

.problem-cta-action>a span {
    color: var(--gold);
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase
}

.problem-cta-action>a strong {
    font-family: Georgia, serif;
    font-size: 1.55rem
}

.problem-cta-action>a b {
    grid-column: 2;
    grid-row: 1/3;
    color: var(--gold);
    font-size: 1.4rem
}

.feature-services {
    min-height: 590px;
    background: var(--cream);
}

.feature-services .feature-copy {
    padding: clamp(38px, 4vw, 56px)
}

.feature-services .feature-copy>p:not(.kicker) {
    margin: 16px 0 20px
}

.feature-service-list {
    border-top: 1px solid rgba(36, 37, 34, .25)
}

.feature-service-list>a {
    min-height: 65px;
    padding: 8px 0;
    display: grid;
    grid-template-columns: 36px 1fr 30px;
    gap: 13px;
    align-items: center;
    border-bottom: 1px solid rgba(36, 37, 34, .25);
    transition: padding .2s, background .2s
}

.feature-service-list>a:hover {
    padding-left: 10px;
    background: rgba(227, 173, 49, .16)
}

.feature-service-list>a>span {
    color: var(--gold-dark);
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .1em
}

.feature-service-list h3 {
    margin: 0 0 3px;
    font-family: Georgia, serif;
    font-size: 1.3rem;
    font-weight: 500
}

.feature-service-list p {
    margin: 0 !important;
    color: #656860 !important;
    font-size: .72rem;
    line-height: 1.35 !important
}

.feature-service-list b {
    color: var(--gold-dark);
    font-size: 1rem
}

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

    .feature-services {
        min-height: 0
    }

    .feature-services .feature-photo {
        min-height: 520px
    }
}

@media(max-width:620px) {
    .problem-cta {
        padding: 58px 22px;
        gap: 35px
    }

    .problem-cta:before {
        top: -15px
    }

    .problem-cta-action>a {
        min-height: 82px
    }

    .feature-services .feature-photo {
        min-height: 400px
    }

    .feature-services .feature-copy {
        padding: 55px 22px
    }

    .feature-service-list>a {
        grid-template-columns: 30px 1fr 24px
    }
}

.ribbon-item {
    opacity: 0;
    animation: ribbonFade .48s ease forwards
}

.ribbon-item:nth-child(1) {
    animation-delay: .45s
}

.ribbon-item:nth-child(2) {
    animation-delay: .56s
}

.ribbon-item:nth-child(3) {
    animation-delay: .67s
}

.ribbon-item:nth-child(4) {
    animation-delay: .78s
}

.ribbon-item:nth-child(5) {
    animation-delay: .89s
}

.ribbon-item:nth-child(6) {
    animation-delay: 1s
}

.ribbon-item:nth-child(7) {
    animation-delay: 1.11s
}

@keyframes ribbonFade {
    from {
        opacity: 0;
        transform: translateY(-8px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(-22px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.js .reveal-on-show {
    opacity: 0;
    transform: translateY(-26px);
    transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform
}

.js .feature-photo.reveal-on-show {
    transform: translateX(-30px)
}

.js .problem-cta-action.reveal-on-show,
.js .contact-details.reveal-on-show {
    transform: translateX(30px)
}

.js .reveal-on-show.is-visible {
    opacity: 1;
    transform: none;
    will-change: auto
}

/* Scroll-reveal targets must not also run the onload .enter animation. */
.js .enter.reveal-on-show {
    animation: none !important
}

.hero-art:hover .portrait img {
    filter: saturate(.75) contrast(1.08)
}

.card-photo:hover>img {
    filter: grayscale(1) contrast(1.08)
}

.feature-photo:hover img {
    filter: sepia(.18) saturate(.72) contrast(1.05)
}

.since-stamp {
    right: 75px;
    bottom: -200px;
    width: 300px;
    height: 300px;
    box-shadow: 0 0 0 5px var(--gold), 0 0 0 7px var(--black), 0 24px 50px rgba(0, 0, 0, .42)
}

.since-stamp strong {
    font-size: 5.5rem
}

.since-stamp span {
    font-size: 1.2rem
}

.promise {
    grid-template-columns: 58px 1fr
}

.promise.section {
    padding-top: 20px;
    padding-bottom: 20px;
}

.promise h2 {
    line-height: 1.06
}

@media(min-width:621px) and (max-width:960px) {
    .since-stamp {
        right: 40px;
        bottom: -100px;
        width: 250px;
        height: 250px
    }

    .since-stamp strong {
        font-size: 4.5rem
    }

    .since-stamp span {
        font-size: 1.0rem
    }
}

@media(max-width:620px) {
    .since-stamp {
        right: 45px;
        bottom: -85px;
        width: 125px;
        height: 125px
    }

    .since-stamp strong {
        font-size: 1.7rem
    }

    .since-stamp span {
        font-size: .52rem
    }
}

@media(min-width:621px) {
    .hero {
        height: calc(100vh - 402px);
        height: calc(100svh - 402px);
        min-height: 390px
    }



    .service-ribbon {
        height: 52px
    }
}

@media(min-width:621px) and (max-width:960px) {
    .hero {
        grid-template-columns: 52% 48%
    }

    .hero-copy {
        min-height: 0;
        padding: 30px
    }

    .hero-copy h1 {
        font-size: clamp(3rem, 7vw, 4.2rem)
    }

    .hero-lead {
        font-size: .88rem
    }

    .hero-art {
        min-height: 0
    }

    .portrait {
        inset: 20px 20px 0 10px
    }

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

    .promise h2 {
        font-size: clamp(1.75rem, 4vw, 2.35rem);
        white-space: nowrap
    }

    .service-ribbon {
        padding-inline: 18px;
        gap: 8px;
        font-size: clamp(.82rem, 2vw, 1.05rem)
    }
}

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

.promise .promise-footnote {
    margin: 20px 0 0;
    font-weight: 400
}

.hero-lead {
    max-width: none;
    white-space: nowrap
}

@media(min-width:621px) and (max-width:960px) {
    .hero-lead {
        font-size: .9rem;
    }
}

@media(max-width:620px) {
    .hero-lead {
        white-space: normal
    }
}

.header-call {
    --button-push: var(--gold)
}

.hero .button {
    --button-push: #9f751b
}

.problem-cta-action>a {
    --button-push: rgba(25, 26, 24, .3)
}

.header-call,
.hero .button,
.problem-cta-action>a {
    transform: none;
    box-shadow: 6px 6px 0 var(--button-push);
    transition: box-shadow .32s cubic-bezier(.2, .7, .2, 1), background-color .25s ease, color .25s ease
}

.header-call:hover,
.header-call:focus-visible,
.hero .button:hover,
.hero .button:focus-visible,
.problem-cta-action>a:hover,
.problem-cta-action>a:focus-visible {
    transform: none;
    box-shadow: 11px 11px 0 var(--button-push)
}

.js .problem-cta-action>a.reveal-on-show {
    transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1), box-shadow .32s cubic-bezier(.2, .7, .2, 1), background-color .25s ease, color .25s ease;
    transition-delay: var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), 0s, 0s, 0s
}

main {
    background: transparent
}

.site-main {
    overflow: visible
}

.intro-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 20px
}

.hero {
    margin: 0;
    border-radius: 25px
}

.promise-panel {
    min-width: 0
}

.hero-art {
    border-radius: 0 25px 25px 0
}

.portrait {
    border-radius: 25px 25px 0 0
}

.promise {
    border-radius: 25px 25px 0 0
}

.site-header {
    width: min(100%, var(--max));
    margin: auto;
    position: sticky;
    top: 0;
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
    transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease
}

.site-header.is-stuck {
    background: rgba(255, 250, 240, .96);
    border-bottom-color: var(--line);
    box-shadow: 0 10px 30px rgba(25, 26, 24, .12);
    backdrop-filter: blur(15px)
}

@media(min-width:621px) {
    .site-header {
        height: 94px
    }

    .brand img {
        width: 190px
    }

    .hero {
        height: calc(100svh - 425px);
    }
}

@media(max-width:620px) {
    .site-header {
        height: 78px
    }

    .brand img {
        width: 155px
    }

    .hero-art {
        border-radius: 0 0 25px 25px
    }

    .award-chip {
        width: 150px;
        height: 150px
    }
}

@media(max-width:1440px) {
    main {
        box-shadow: none
    }
}

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

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

    .enter,
    .ribbon-item,
    .reveal-on-show {
        opacity: 1 !important
    }

    .slash-in,
    .photo-in,
    .stamp-pop,
    .reveal-on-show {
        opacity: 1 !important;
        transform: none !important
    }
}

/* Flat visual treatment across every component and interaction state. */
*,
*::before,
*::after {
    box-shadow: none !important
}

/* Button depth is intentionally retained while the surrounding layout stays flat. */
.header-call,
.hero .button,
.problem-cta-action>a {
    box-shadow: 6px 6px 0 var(--button-push) !important
}

.header-call:hover,
.header-call:focus-visible,
.hero .button:hover,
.hero .button:focus-visible,
.problem-cta-action>a:hover,
.problem-cta-action>a:focus-visible {
    box-shadow: 11px 11px 0 var(--button-push) !important
}

.since-stamp {
    box-shadow: 0 0 0 5px var(--gold), 0 0 0 7px var(--black), 0 24px 50px rgba(0, 0, 0, .90) !important
}

@media(max-width:620px) {
    body {
        padding-bottom: 0
    }

    .mobile-header-call {
        min-width: 74px;
        min-height: 42px;
        padding: 0 16px;
        justify-self: end;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--black);
        color: var(--cream);
        font-size: .68rem;
        font-weight: 900;
        letter-spacing: .1em;
        text-transform: uppercase;
        box-shadow: 5px 5px 0 var(--gold) !important;
        transition: box-shadow .32s cubic-bezier(.2, .7, .2, 1), background-color .25s ease, color .25s ease
    }

    .mobile-header-call:hover,
    .mobile-header-call:focus-visible {
        box-shadow: 9px 9px 0 var(--gold) !important
    }

    .hero {
        min-height: 590px;
        display: block;
        isolation: isolate;
        overflow: visible
    }

    .hero:after {
        content: "";
        position: absolute;
        z-index: 3;
        inset: 0;
        border-radius: 25px;
        background: linear-gradient(90deg, rgba(25, 26, 24, .9) 0%, rgba(25, 26, 24, .78) 56%, rgba(25, 26, 24, .6) 100%);
        pointer-events: none
    }

    .hero-copy {
        min-height: 590px;
        padding: 52px 22px 76px
    }

    .hero-art {
        position: absolute;
        z-index: 1;
        inset: 0;
        min-height: 0;
        border-radius: 25px
    }

    .hero-gold {
        inset: 0 0 0 56%;
        clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%)
    }

    .portrait {
        inset: 0 12% 0 0;
        border-radius: 25px 0 0 25px;
        clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%)
    }

    .portrait img {
        object-position: 54% 22%
    }

    .intro-layout {
        height: calc(100svh - 78px);
        grid-template-rows: minmax(330px, 1fr) auto;
        row-gap: 12px
    }

    .hero {
        min-height: 0;
        height: auto
    }

    .hero-copy {
        min-height: 0;
        height: 100%;
        padding: 30px 22px 42px
    }

    .promise-panel {
        display: grid;
        grid-template-rows: auto 44px
    }

    .promise.section {
        min-height: 210px;
        padding: 40px 22px 22px
    }

    .promise h2 {
        font-size: clamp(1.25rem, 4.25vw, 1.5rem);
        line-height: 1.15
    }

    .promise-line {
        white-space: nowrap
    }

    .promise .promise-footnote {
        margin-top: 12px;
        font-size: .58rem
    }

    .service-ribbon {
        min-height: 44px;
        height: 44px;
        padding: 5px 10px;
        justify-content: space-evenly;
        gap: clamp(5px, 1.5vw, 10px);
        overflow: visible;
        font-size: clamp(.64rem, 2.55vw, .84rem)
    }

    .service-ribbon span:nth-of-type(n),
    .service-ribbon i:nth-of-type(n) {
        display: block
    }

}

/* Final first-view sizing. Keep these values coordinated as one layout. */
html,
body {
    min-width: 320px
}

@media(min-width:961px) {
    .hero {
        height: calc(100svh - 396px);
        min-height: 390px
    }

    .promise {
        height: 230px
    }

    .promise.section {
        padding-top: 32px;
        padding-bottom: 32px
    }

    .promise h2 {
        font-size: clamp(2rem, 2.8vw, 3rem);
        line-height: 1.06
    }
}

@media(min-width:621px) and (max-width:960px) {
    .hero {
        height: calc(100svh - 376px);
        min-height: 360px
    }

    .promise {
        height: 210px
    }

    .promise.section {
        padding-top: 28px;
        padding-bottom: 28px
    }

    .promise h2 {
        font-size: clamp(1.45rem, 3vw, 1.85rem);
        line-height: 1.08
    }

    .promise .promise-footnote {
        margin-top: 14px
    }
}

@media(max-width:620px) {
    .intro-layout {
        min-height: calc(100svh - 78px);
        height: auto;
        grid-template-rows: minmax(330px, 1fr) auto
    }

    .promise {
        height: auto;
        min-height: 220px
    }

    .promise.section {
        padding: 36px 22px 34px
    }

    .promise h2 {
        font-size: clamp(1.05rem, 3.7vw, 1.28rem);
        line-height: 1.12
    }

    .promise .promise-footnote {
        margin-top: 16px
    }
}

/* Complete tablet hero layout. Prevents older stacked rules from mixing in. */
@media(min-width:621px) and (max-width:960px) {
    .hero {
        height: calc(100svh - 376px);
        min-height: 520px;
        display: grid;
        grid-template-columns: minmax(0, 52%) minmax(0, 48%);
        overflow: visible
    }

    .hero-copy {
        grid-column: 1;
        grid-row: 1;
        min-width: 0;
        min-height: 0;
        padding: 30px;
        overflow: hidden
    }

    .hero-copy h1 {
        font-size: clamp(2.75rem, 6.2vw, 3.8rem)
    }

    .hero-lead {
        max-width: 100%;
        white-space: normal;
        overflow-wrap: anywhere
    }

    .hero-actions {
        flex-wrap: wrap;
        gap: 16px
    }

    .hero-art {
        grid-column: 2;
        grid-row: 1;
        min-width: 0;
        min-height: 0
    }

    .since-stamp {
        right: 40px;
        bottom: -100px;
        width: 250px;
        height: 250px
    }

    .since-stamp strong {
        font-size: 4.5rem
    }

    .since-stamp span {
        font-size: 1rem
    }
}