:root {
    --orange: #ff7e34;
    --orange-dark: #d95a18;
    --yellow: #f3c928;
    --brown: #2b211b;
    --brown-2: #3b2d24;
    --cream: #fff6ec;
    --sand: #f4eadf;
    --white: #fff;
    --ink: #2d2825;
    --muted: #6f655f;
    --line: #dfd3c7;
    --shadow: 0 18px 50px rgba(43, 33, 27, .12);
    --radius: 22px;
    --max: 1180px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
}

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

a {
    color: inherit;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px
}

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

button {
    cursor: pointer
}

h1,
h2,
h3 {
    font-family: "Roboto Slab", Georgia, serif;
    color: var(--brown);
    line-height: 1.08;
    margin: 0 0 .7rem
}

h1 {
    font-size: clamp(2.65rem, 6vw, 5.5rem);
    letter-spacing: -.045em
}

h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
    letter-spacing: -.035em
}

h3 {
    font-size: 1.25rem
}

p {
    margin: 0 0 1.1rem
}

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

.section {
    padding: 88px 0
}

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

.dark {
    background: var(--brown);
    color: var(--cream)
}

.dark h2,
.dark h3 {
    color: var(--white)
}

.center {
    text-align: center
}

.muted {
    color: var(--muted);
    font-weight: 400;
    font-size: .9rem
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    background: var(--yellow);
    color: var(--brown);
    padding: 12px 18px;
    border-radius: 10px;
    z-index: 1000;
    font-weight: 800
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid var(--orange);
    background: var(--orange);
    color: var(--brown);
    font-weight: 850;
    padding: 13px 21px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(255, 126, 52, .18);
    transition: .18s transform, .18s background, .18s box-shadow
}

.button:hover {
    transform: translateY(-2px);
    background: #ff934f;
    box-shadow: 0 12px 24px rgba(255, 126, 52, .24)
}

.button:focus-visible,
.primary-nav a:focus-visible,
.text-link:focus-visible,
.filter:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 3px
}

.button.ghost {
    background: transparent;
    color: var(--brown);
    border-color: var(--brown);
    box-shadow: none
}

.button.ghost:hover {
    background: var(--brown);
    color: var(--white)
}

.button.light {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--brown)
}

.button.outline-light {
    background: transparent;
    border-color: var(--cream);
    color: var(--cream);
    box-shadow: none
}

.button.small {
    padding: 10px 16px;
    font-size: .9rem
}

.button-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center
}

.eyebrow {
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .77rem;
    font-weight: 900;
    color: var(--orange-dark)
}

.eyebrow.light {
    color: var(--yellow)
}

.hero-copy {
    font-size: clamp(1.08rem, 2.2vw, 1.3rem);
    max-width: 740px;
    color: #4c443f
}

.topline {
    background: var(--brown);
    color: var(--cream);
    font-size: .79rem;
    font-weight: 750
}

.topline-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    min-height: 34px;
    align-items: center
}

.top-contact {
    display: flex;
    gap: 10px;
    align-items: center
}

.topline a {
    text-decoration: none
}

.site-header {
    background: rgba(255, 255, 255, .96);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(43, 33, 27, .1);
    backdrop-filter: blur(14px)
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
    gap: 24px
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: 0
}

.brand-dog {
    display: block;
    width: 112px;
    height: 68px;
    overflow: hidden;
    position: relative;
    flex: 0 0 auto
}

.brand-dog img {
    width: 150px;
    height: 150px;
    max-width: none;
    object-fit: cover;
    object-position: center top;
    transform: translate(-19px, -5px)
}

.brand-words {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.brand-name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--yellow);
    text-shadow: 1px 1px 0 var(--brown);
    letter-spacing: -.05em
}

.brand-sub {
    text-transform: uppercase;
    color: var(--brown);
    font-family: Georgia, serif;
    font-weight: 900;
    letter-spacing: .14em;
    font-size: .83rem;
    margin-top: 7px
}

.brand.compact .brand-dog {
    width: 88px;
    height: 58px
}

.brand.compact .brand-dog img {
    width: 124px;
    height: 124px;
    max-width: none;
    transform: translate(-18px, -4px)
}

.brand.compact .brand-name {
    font-size: 1.42rem
}

.brand.compact .brand-sub {
    font-size: .7rem;
    margin-top: 5px
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 23px;
    font-size: .93rem;
    font-weight: 800
}

.primary-nav>a:not(.button) {
    text-decoration: none;
    padding: 29px 0 26px;
    border-bottom: 3px solid transparent
}

.primary-nav>a.active:not(.button),
.primary-nav>a:not(.button):hover {
    border-bottom-color: var(--orange);
    color: var(--orange-dark)
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    width: 44px;
    height: 44px;
    padding: 9px
}

.nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    background: var(--brown);
    margin: 6px 0;
    border-radius: 2px
}

.home-hero {
    background: linear-gradient(135deg, var(--cream) 0 58%, #ffd6bd 58% 100%);
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden
}

.home-hero:after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 80px solid rgba(243, 201, 40, .28);
    border-radius: 50%;
    right: -170px;
    top: -190px
}

.home-hero-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1
}

.hero-content {
    padding: 20px 0
}

.hero-content h1 {
    max-width: 800px
}

.trust-line {
    font-weight: 900;
    color: var(--brown);
    margin: 22px 0
}

.microcopy {
    font-size: .89rem;
    color: var(--muted);
    margin-top: 16px
}

.list-card {
    background: var(--brown);
    color: var(--cream);
    border-radius: 30px;
    padding: 26px 28px 28px;
    box-shadow: var(--shadow);
    transform: rotate(1.2deg);
    border: 4px solid var(--yellow);
    position: relative
}

.list-card:before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px dashed rgba(255, 255, 255, .25);
    border-radius: 20px;
    pointer-events: none
}

.list-card-brand {
    position: relative;
    z-index: 1
}

.list-card .brand-name {
    color: var(--yellow);
    text-shadow: 1px 1px 0 #000
}

.list-card .brand-sub {
    color: var(--cream)
}

.list-kicker {
    font-size: .72rem;
    letter-spacing: .19em;
    font-weight: 900;
    color: var(--orange);
    margin: 10px 0 10px
}

.list-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    position: relative;
    z-index: 1
}

.list-card li {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    font-weight: 750
}

.list-card li svg {
    color: var(--yellow);
    flex: 0 0 auto
}

.list-card>a {
    color: var(--yellow);
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1
}

.trust-bar {
    background: var(--brown);
    color: var(--cream)
}

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

.trust-grid>div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 19px 12px;
    border-right: 1px solid rgba(255, 255, 255, .15);
    font-size: .88rem;
    font-weight: 800
}

.trust-grid>div:last-child {
    border-right: 0
}

.trust-grid svg {
    color: var(--yellow)
}

.section-heading {
    max-width: 760px;
    margin-bottom: 38px
}

.section-heading.split {
    max-width: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: end
}

.section-heading.split>p {
    font-size: 1.05rem;
    color: var(--muted)
}

.card-grid {
    display: grid;
    gap: 20px
}

.card-grid.five {
    grid-template-columns: repeat(5, 1fr)
}

.card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 310px;
    transition: .18s transform, .18s box-shadow, .18s border-color
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: #c7b7a8
}

.card .icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--cream);
    color: var(--orange-dark);
    margin-bottom: 24px
}

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

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--orange-dark);
    font-weight: 900;
    margin-top: auto
}

.text-link svg {
    transition: .18s transform
}

.text-link:hover svg {
    transform: translateX(4px)
}

.audience-grid {
    grid-template-columns: repeat(5, 1fr)
}

.audience-card {
    min-height: 320px;
    background: linear-gradient(180deg, #fff, #fffaf5)
}

.inspection-section {
    background: linear-gradient(115deg, #fff 0 54%, var(--cream) 54%)
}

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

.inspection-visual {
    min-height: 390px;
    display: grid;
    place-items: center
}

.paper {
    width: 280px;
    height: 350px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: rotate(-4deg);
    padding: 55px 32px;
    position: relative
}

.paper:before {
    content: "PROPERTY INSPECTION";
    position: absolute;
    top: 24px;
    left: 32px;
    font-size: .69rem;
    font-weight: 900;
    letter-spacing: .12em;
    color: var(--brown)
}

.paper span {
    display: block;
    height: 10px;
    background: #e8dfd7;
    margin: 20px 0;
    border-radius: 5px
}

.paper span:nth-child(2) {
    width: 78%
}

.paper span:nth-child(3) {
    width: 90%
}

.paper span:nth-child(4) {
    width: 65%
}

.stamp {
    position: absolute;
    right: 24px;
    bottom: 42px;
    border: 4px solid var(--orange);
    color: var(--orange);
    font-weight: 900;
    letter-spacing: .08em;
    padding: 8px 12px;
    transform: rotate(-8deg)
}

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

.family-lockup,
.about-badge {
    border: 2px solid rgba(255, 255, 255, .18);
    border-radius: 28px;
    padding: 45px 35px;
    text-align: center;
    background: rgba(255, 255, 255, .05)
}

.family-lockup span,
.about-badge span {
    display: block;
    font-family: Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 900;
    color: var(--yellow);
    text-shadow: 3px 3px 0 #000;
    letter-spacing: -.05em
}

.family-lockup strong,
.about-badge strong {
    display: block;
    font-family: Georgia, serif;
    letter-spacing: .16em;
    font-size: clamp(1rem, 2.3vw, 1.8rem);
    color: var(--white)
}

.family-lockup small,
.about-badge small {
    display: block;
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--orange);
    font-weight: 900
}

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

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

.project-art {
    height: 180px;
    display: grid;
    place-items: center;
    color: var(--brown)
}

.project-orange .project-art {
    background: linear-gradient(135deg, var(--orange), #ffb07f)
}

.project-yellow .project-art {
    background: linear-gradient(135deg, var(--yellow), #ffe788)
}

.project-cream .project-art {
    background: linear-gradient(135deg, var(--cream), #ead6c5)
}

.project-card>div:last-child {
    padding: 24px
}

.project-card span,
.gallery-card span {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 900;
    color: var(--orange-dark)
}

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

.faq-grid details {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    padding: 0 20px
}

.faq-grid summary {
    font-weight: 850;
    color: var(--brown);
    padding: 20px 28px 20px 0;
    cursor: pointer;
    position: relative
}

.faq-grid summary:after {
    content: "+";
    position: absolute;
    right: 0;
    top: 16px;
    font-size: 1.6rem;
    color: var(--orange)
}

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

.faq-grid p {
    color: var(--muted);
    padding-bottom: 18px
}

.cta-band {
    padding: 68px 0;
    background: var(--orange);
    color: var(--brown)
}

.cta-band-inner {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center
}

.cta-band h2 {
    max-width: 700px
}

.cta-band p:not(.eyebrow) {
    max-width: 760px
}

.page-hero {
    background: linear-gradient(125deg, var(--cream), #fff 60%, #ffe1cf);
    padding: 76px 0;
    border-bottom: 1px solid var(--line)
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 50px;
    align-items: center
}

.hero-symbol {
    width: 190px;
    height: 190px;
    border-radius: 48px;
    background: var(--yellow);
    display: grid;
    place-items: center;
    color: var(--brown);
    transform: rotate(4deg);
    box-shadow: var(--shadow)
}

.breadcrumbs {
    padding-top: 18px;
    padding-bottom: 5px;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: .82rem;
    color: var(--muted)
}

.breadcrumbs a {
    color: var(--orange-dark)
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start
}

.two-col.wide-gap {
    gap: 90px
}

.step-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.step-list li {
    display: flex;
    gap: 18px;
    padding: 0 0 23px
}

.step-list li>span,
.process-grid article>span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--yellow);
    display: grid;
    place-items: center;
    font-weight: 900;
    flex: 0 0 auto
}

.note-panel,
.sister-note {
    border: 2px solid var(--brown);
    border-radius: 24px;
    padding: 28px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center
}

.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.check-list li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    background: var(--cream);
    border-radius: 14px;
    padding: 16px;
    font-weight: 750
}

.check-list svg {
    color: var(--orange-dark);
    flex: 0 0 auto;
    margin-top: 2px
}

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

.process-grid article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px
}

.process-grid article>span {
    margin-bottom: 20px
}

.split-feature {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: center
}

.split-feature>div:first-child {
    max-width: 760px
}

.paint-swatch {
    display: grid;
    grid-template-columns: repeat(2, 75px);
    gap: 12px;
    transform: rotate(4deg)
}

.paint-swatch span {
    width: 75px;
    height: 75px;
    border-radius: 18px;
    border: 3px solid rgba(255, 255, 255, .3)
}

.paint-swatch span:nth-child(1) {
    background: var(--orange)
}

.paint-swatch span:nth-child(2) {
    background: var(--yellow)
}

.paint-swatch span:nth-child(3) {
    background: var(--cream)
}

.paint-swatch span:nth-child(4) {
    background: #7d9b83
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.comparison-grid>div {
    background: #fff;
    border-radius: 24px;
    padding: 34px;
    border: 1px solid var(--line)
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px
}

.filter {
    border: 1px solid var(--brown);
    background: #fff;
    color: var(--brown);
    border-radius: 999px;
    padding: 9px 15px;
    font-weight: 800
}

.filter.active,
.filter:hover {
    background: var(--brown);
    color: #fff
}

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

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

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

.gallery-art {
    height: 190px;
    display: grid;
    place-items: center;
    font-family: Georgia, serif;
    font-weight: 900;
    letter-spacing: .18em;
    color: var(--brown)
}

.gallery-art.orange {
    background: linear-gradient(135deg, var(--orange), #ffba8f)
}

.gallery-art.yellow {
    background: linear-gradient(135deg, var(--yellow), #ffe88f)
}

.gallery-art.cream {
    background: linear-gradient(135deg, var(--cream), #ead6c5)
}

.gallery-art.brown {
    background: linear-gradient(135deg, var(--brown), #6a4f3e);
    color: #fff
}

.gallery-card>div:last-child {
    padding: 24px
}

.about-badge {
    background: var(--brown)
}

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

.value-grid article {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff
}

.form-layout {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 42px;
    align-items: start
}

.estimate-form {
    display: grid;
    gap: 24px
}

.form-section {
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 28px;
    background: #fff
}

.form-step {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .72rem;
    font-weight: 900;
    color: var(--orange-dark);
    margin-bottom: 6px
}

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

.form-grid label,
.block {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-weight: 800;
    color: var(--brown)
}

.form-grid label.full {
    grid-column: 1/-1
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #b9aca1;
    border-radius: 11px;
    padding: 12px 13px;
    background: #fff;
    color: var(--ink)
}

textarea {
    resize: vertical
}

.check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin: 12px 0 18px
}

.check-grid label,
.consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-weight: 650
}

.check-grid input,
.consent input {
    width: auto;
    margin-top: 5px
}

.estimate-form fieldset {
    border: 0;
    padding: 0;
    margin: 0
}

.estimate-form legend {
    font-weight: 900;
    color: var(--brown)
}

.upload-box {
    border: 2px dashed #b9aca1;
    border-radius: 18px;
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: center;
    color: var(--brown);
    cursor: pointer;
    background: var(--cream)
}

.upload-box input {
    max-width: 280px;
    margin-left: auto;
    border: 0;
    background: transparent
}

.upload-box small {
    display: block;
    color: var(--muted);
    font-weight: 500
}

.submit-button {
    margin-top: 20px
}

.honeypot {
    position: absolute;
    left: -10000px
}

.form-aside {
    position: sticky;
    top: 125px;
    display: grid;
    gap: 18px
}

.aside-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 25px;
    background: var(--cream)
}

.aside-card ol {
    padding-left: 20px
}

.dark-card {
    background: var(--brown);
    color: var(--cream)
}

.dark-card h2,
.dark-card a {
    color: #fff
}

.dark-card small {
    color: #d6c8bd
}

.form-status {
    font-weight: 800;
    margin-top: 14px
}

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

.contact-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 30px;
    background: #fff
}

.contact-card svg {
    color: var(--orange-dark)
}

.contact-card>a {
    font-weight: 900;
    color: var(--orange-dark);
    font-size: 1.12rem
}

.contact-card address {
    font-style: normal;
    font-weight: 800
}

.map-placeholder {
    min-height: 320px;
    border: 2px dashed #b7a89d;
    border-radius: 24px;
    background: #fff;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    color: var(--muted);
    text-align: center
}

.prose {
    max-width: 840px
}

.prose h2 {
    font-size: 1.8rem;
    margin-top: 36px
}

.compact-hero {
    padding: 60px 0
}

.status-page {
    min-height: 66vh;
    display: grid;
    place-items: center;
    padding: 80px 0;
    background: var(--cream)
}

.status-card {
    text-align: center;
    max-width: 720px
}

.status-icon {
    width: 110px;
    height: 110px;
    border-radius: 30px;
    background: var(--yellow);
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    color: var(--brown);
    font-size: 2rem;
    font-weight: 900;
    transform: rotate(4deg)
}

.status-card .button-row {
    justify-content: center
}

.site-footer {
    background: #1f1814;
    color: #ddd0c6;
    padding: 70px 0 25px
}

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

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

.footer-lead {
    max-width: 360px
}

.serval-line {
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--orange);
    font-weight: 900
}

.footer-heading {
    font-family: Inter, ui-sans-serif, sans-serif;
    color: #fff;
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: .12em
}

.footer-grid>div:not(:first-child) {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.site-footer a {
    color: #ddd0c6
}

.site-footer address {
    font-style: normal
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .14);
    margin-top: 50px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: .78rem
}

.footer-bottom span:last-child {
    display: flex;
    gap: 16px
}

.mobile-actions {
    display: none
}

@media (max-width:1050px) {

    .card-grid.five,
    .audience-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .primary-nav {
        gap: 14px;
        font-size: .86rem
    }

    .home-hero-grid {
        grid-template-columns: 1.1fr .9fr;
        gap: 35px
    }

    .project-gallery {
        grid-template-columns: repeat(2, 1fr)
    }

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

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

@media (max-width:820px) {
    body {
        padding-bottom: 66px
    }

    .topline {
        display: none
    }

    .site-header {
        top: 0
    }

    .nav-wrap {
        min-height: 76px
    }

    .nav-toggle {
        display: block
    }

    .primary-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 76px;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 16px 30px rgba(43, 33, 27, .15);
        padding: 18px 20px 24px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 2px
    }

    .primary-nav.open {
        display: flex
    }

    .primary-nav>a:not(.button) {
        padding: 12px 4px;
        border-bottom: 1px solid var(--line)
    }

    .primary-nav .button {
        margin-top: 12px
    }

    .home-hero-grid,
    .page-hero-grid,
    .section-heading.split,
    .inspection-grid,
    .family-grid,
    .two-col,
    .form-layout {
        grid-template-columns: 1fr
    }

    .home-hero {
        background: linear-gradient(160deg, var(--cream) 0 73%, #ffd6bd 73%)
    }

    .list-card {
        max-width: 520px
    }

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

    .trust-grid>div:nth-child(2) {
        border-right: 0
    }

    .trust-grid>div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .15)
    }

    .card-grid.five,
    .audience-grid {
        grid-template-columns: repeat(2, 1fr)
    }

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

    .inspection-visual {
        order: 2;
        min-height: 300px
    }

    .paper {
        width: 230px;
        height: 290px
    }

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

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

    .hero-symbol {
        width: 130px;
        height: 130px;
        border-radius: 34px
    }

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

    .form-aside {
        position: static
    }

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

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

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

    .mobile-actions {
        position: fixed;
        display: grid;
        grid-template-columns: 1fr 1fr;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 200;
        background: var(--brown);
        border-top: 2px solid var(--yellow)
    }

    .mobile-actions a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: #fff;
        text-decoration: none;
        padding: 12px;
        font-weight: 900
    }

    .mobile-actions a:last-child {
        background: var(--orange);
        color: var(--brown)
    }
}

@media (max-width:560px) {
    .container {
        width: min(var(--max), calc(100% - 28px))
    }

    .section {
        padding: 64px 0
    }

    .home-hero {
        padding: 45px 0 62px
    }

    .brand.compact .brand-dog {
        width: 68px
    }

    .brand.compact .brand-dog img {
        width: 108px;
        height: 108px;
        max-width: none;
        transform: translate(-18px, -4px)
    }

    .brand.compact .brand-name {
        font-size: 1.15rem
    }

    .brand.compact .brand-sub {
        font-size: .6rem
    }

    .home-hero-grid {
        gap: 32px
    }

    .button-row {
        align-items: stretch
    }

    .button-row .button {
        width: 100%
    }

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

    .trust-grid>div {
        border-right: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, .15)
    }

    .trust-grid>div:last-child {
        border-bottom: 0
    }

    .card-grid.five,
    .audience-grid,
    .process-grid,
    .project-gallery,
    .faq-grid,
    .check-list,
    .comparison-grid,
    .contact-grid,
    .value-grid,
    .form-grid,
    .check-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .card {
        min-height: 0
    }

    .page-hero-grid {
        grid-template-columns: 1fr
    }

    .hero-symbol {
        display: none
    }

    .section-heading.split {
        gap: 15px
    }

    .note-panel,
    .sister-note {
        grid-template-columns: 1fr
    }

    .split-feature,
    .cta-band-inner {
        flex-direction: column;
        align-items: flex-start
    }

    .paint-swatch {
        grid-template-columns: repeat(4, 55px)
    }

    .paint-swatch span {
        width: 55px;
        height: 55px
    }

    .form-grid label.full {
        grid-column: auto
    }

    .upload-box {
        align-items: flex-start;
        flex-direction: column
    }

    .upload-box input {
        margin-left: 0
    }

    .footer-bottom {
        flex-direction: column
    }

    .footer-grid>div {
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        padding-bottom: 20px
    }

    .footer-grid>div:last-child {
        border-bottom: 0
    }

    .paper {
        transform: none
    }

    .list-card {
        transform: none
    }
}

@media (prefers-reduced-motion:reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important
    }
}
