@import url("https://fonts.googleapis.com/css2?family=Lora&family=Roboto:wght@400;700&display=swap");

:root {
    --bg: #ffffff;
    --panel: #ffffff;
    --text: #000000;
    --muted: #777777;
    --line: #cccccc;
    --line-soft: #eeeeee;
    --ink: #141721;
    --plum: #352234;
    --plum-solid: #3b2d3b;
    --accent: #8b1e5a;
    --radius: 6px;
    --shadow: 0 0 15px -3px rgba(0, 0, 0, .45);
    --shadow-soft: 0 0 5px -1px rgba(0, 0, 0, .35);
}

* {
    box-sizing: border-box;
    margin: 0;
    outline: none;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    min-height: 100%;
    background: #ffffff;
    color: var(--text);
    font: 400 16px / 1.5 "Roboto", "Helvetica", "Trebuchet MS", sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(to right, transparent, #ffffff calc(50% - 620px) calc(50% + 620px), transparent),
        url("../img/cm-print.png") 50vw 0 / 100% auto repeat-y;
}

a {
    color: #777777;
    text-decoration: none;
}

a:hover {
    color: var(--accent);
}

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

nav.topbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 999;
    background: rgba(0, 0, 0, .9);
    color: #ffffff;
}

nav.topbar a {
    color: #ffffff;
}

nav.topbar ul {
    list-style: none;
    text-align: center;
}

#cm-menu-bar {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 0;
    white-space: nowrap;
}

#cm-menu-flag {
    position: absolute;
    visibility: hidden;
}

#cm-menu-logo {
    width: 67px;
    height: 62px;
    display: block;
    margin: 15px 0;
}

#cm-menu-phone {
    font-size: 150%;
}

#cm-menu-switch {
    position: relative;
    width: 2em;
    height: 2em;
    cursor: pointer;
}

#cm-menu-switch::after,
#cm-menu-switch::before {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: transform .2s;
    transform-origin: 50%;
}

#cm-menu-switch::before {
    content: url("../img/expand.svg");
}

#cm-menu-switch::after {
    content: url("../img/collapse.svg");
    transform: scale(0);
}

#cm-menu-flag:checked + #cm-menu-bar #cm-menu-switch::before {
    transform: scale(0);
}

#cm-menu-flag:checked + #cm-menu-bar #cm-menu-switch::after {
    transform: scale(1);
}

#cm-menu-bar .menu {
    font-weight: 700;
}

#cm-menu-bar .menu a,
#cm-menu-bar .menu-label {
    display: block;
}

#cm-menu-bar .menu-label {
    color: #ffffff;
}

#cm-menu-bar .menu li {
    line-height: 2;
}

#cm-menu-bar .menu .wpml-ls-flag {
    width: 1.125em;
    height: .75em;
}

@media (min-width: 1200px) {
    #cm-menu-phone::before {
        content: "\2706";
        margin-right: .3em;
        font-size: 120%;
        vertical-align: top;
    }
}

@media (min-width: 950px) {
    #cm-menu-switch {
        display: none;
    }

    #cm-menu-bar .menu {
        display: flex;
        justify-content: space-between;
    }

    #cm-menu-bar .menu .menu-item-has-children {
        cursor: default;
    }

    #cm-menu-bar .menu > li {
        transform-origin: 50% 0;
    }

    #cm-menu-bar .menu li {
        position: relative;
        margin: 0 1em;
        transition: transform .2s;
    }

    #cm-menu-bar .menu li:hover {
        transform: scale(1.1);
    }

    .sub-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        padding-bottom: 4px;
        border: 1px solid rgba(0, 0, 0, .6);
        border-top-width: 4px;
        border-radius: 0 0 4px 4px;
        background: rgba(255, 255, 255, .9);
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%);
        transition: opacity .2s, visibility .2s;
    }

    :hover > .sub-menu {
        opacity: 1;
        visibility: visible;
    }

    #cm-menu-bar .sub-menu a {
        padding: 2px;
        color: #000000;
        font-size: 90%;
    }
}

@media (max-width: 949px) {
    #cm-menu-flag:checked + * .menu-main-container {
        display: block;
    }

    #cm-menu-bar {
        position: relative;
        min-height: 92px;
    }

    #cm-menu-logo {
        margin: 15px 0;
    }

    #cm-menu-bar .menu a,
    #cm-menu-bar .menu-label {
        border-top: 1px solid rgba(255, 255, 255, .1);
        line-height: 2.5;
        text-transform: uppercase;
    }

    .menu-item-has-children > a,
    .menu-item-has-children > .menu-label {
        display: none !important;
    }

    .menu-main-container {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        padding-bottom: 1px;
        background: rgba(0, 0, 0, .9);
        box-shadow: 0 12px 24px rgba(0, 0, 0, .22);
    }

    .sub-menu {
        padding-bottom: .5em;
    }

    #cm-menu-bar .sub-menu a {
        color: #ffffff;
        text-transform: none !important;
    }
}

main {
    flex: 1;
    padding-bottom: 80px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 12vw;
    color: #ffffff;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        url("../img/cm-print.png") 0 100% / 100% auto,
        radial-gradient(farthest-corner at top, var(--plum) 25%, var(--ink));
    clip-path: polygon(0 0, 0 calc(100% - 2.3vw), 3% calc(100% - 2.2vw), 9% calc(100% - 4vw), 23% calc(100% - 1.5vw), 33% calc(100% - 6.5vw), 42% calc(100% - 4vw), 58% calc(100% - 7.1vw), 66% calc(100% - 6.3vw), 70.7% calc(100% - 9vw), 75% calc(100% - 6vw), 84% calc(100% - 6.4vw), 98% calc(100% - 3vw), 100% calc(100% - 3vw), 100% 0);
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 11%;
    background: url("../img/cm-page.png") 0 / 100% auto no-repeat;
}

.site-hero {
    position: relative;
    overflow: hidden;
    padding: 118px 0 12vw;
    color: #ffffff;
    text-align: center;
}

.site-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        url("../img/cm-print.png") 0 100% / 100% auto,
        radial-gradient(farthest-corner at top, var(--plum) 25%, var(--ink));
    clip-path: polygon(0 0, 0 calc(100% - 9vw), 32% calc(100% - 2.4vw), 73% calc(100% - 10.6vw), 77% calc(100% - 9.8vw), 85% calc(100% - 2vw), 100% calc(100% - 4vw), 100% 0);
}

.site-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 15%;
    background: url("../img/cm-head.png") 0 / 100% auto no-repeat;
}

.site-hero .container {
    position: relative;
    z-index: 1;
}

.site-hero h1,
.section-title {
    font: 400 clamp(40px, 6vw, 64px) / 1.08 "Lora", "Georgia", serif;
}

.site-hero h1 {
    margin: 0 auto;
}

.hero-points {
    max-width: 450px;
    margin: 32px auto;
    padding: 0 20px;
    text-align: left;
    list-style-position: outside;
}

.hero-points li {
    margin: 8px 0 0 20px;
    font-size: 17px;
    line-height: 1.45;
}

.hero-front-image {
    position: relative;
    z-index: 1;
    display: block;
    width: min(1200px, 100%);
    aspect-ratio: 1200 / 768;
    height: auto;
    margin: 0 auto;
}

@media (min-width: 950px) {
    .site-hero h1,
    .site-hero .hero-points {
        display: none;
    }
}

@media (max-width: 949px) {
    .hero-front-image {
        display: none;
    }
}

.hero-lead {
    max-width: 780px;
    margin: 26px auto 0;
    color: rgba(255, 255, 255, .86);
    font-size: 22px;
    line-height: 1.45;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
}

.button-on-dark {
    color: #ffffff;
}

.button-on-dark:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: var(--plum-solid);
}

.home-paths-section {
    padding-top: 42px;
}

.home-paths {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.home-path {
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 28px;
    border: 1px solid #000000;
    border-radius: var(--radius);
    background-position: center;
    background-size: cover;
    color: #ffffff;
    box-shadow: 0 0 15px -2px #000000;
    transition: transform .25s, box-shadow .25s;
}

.home-path::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .86), rgba(0, 0, 0, .16));
}

.home-path > * {
    position: relative;
}

.home-path:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.home-path-production {
    background-image: url("../img/about/product.jpg");
}

.home-path-rental {
    background-image: url("../img/home/aerial.jpg");
}

.home-path .eyebrow {
    color: rgba(255, 255, 255, .72);
}

.home-path h2 {
    max-width: 520px;
    margin: 0 0 12px;
    font: 400 36px / 1.08 "Lora", "Georgia", serif;
}

.home-path p {
    max-width: 540px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, .86);
}

.path-link {
    width: fit-content;
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid #ffffff;
    border-radius: var(--radius);
    color: #ffffff;
    font-weight: 700;
}

.home-unified {
    padding-top: 46px;
}

.home-statement {
    max-width: 900px;
    margin-bottom: 28px;
}

.home-statement h2 {
    max-width: 820px;
    margin: 10px 0 16px;
    color: #000000;
    font: 400 clamp(34px, 5vw, 54px) / 1.08 "Lora", "Georgia", serif;
}

.home-statement p {
    max-width: 780px;
    margin: 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.6;
}

.home-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
}

.home-pillars div {
    padding: 20px 22px;
    border-right: 1px solid var(--line-soft);
}

.home-pillars div:last-child {
    border-right: 0;
}

.home-pillars strong {
    display: block;
    margin-bottom: 6px;
    color: #000000;
    font-size: 18px;
}

.home-pillars span {
    color: var(--muted);
}

.home-directions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.home-direction {
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    border: 1px solid #000000;
    border-radius: var(--radius);
    background:
        linear-gradient(to top, rgba(0, 0, 0, .88), rgba(0, 0, 0, .28)),
        var(--direction-image) center / cover;
    color: #ffffff;
    box-shadow: var(--shadow);
}

.home-direction-production {
    --direction-image: url("../img/about/product.jpg");
}

.home-direction-rental {
    --direction-image: url("../img/home/aerial.jpg");
}

.home-direction .eyebrow {
    color: rgba(255, 255, 255, .72);
}

.home-direction h2 {
    max-width: 520px;
    margin: 8px 0 14px;
    color: #ffffff;
    font: 400 clamp(32px, 4vw, 44px) / 1.08 "Lora", "Georgia", serif;
}

.home-direction p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, .84);
    font-size: 18px;
}

.home-direction ul {
    display: grid;
    gap: 9px;
    margin: 28px 0;
    padding: 0;
    list-style: none;
}

.home-direction li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, .9);
}

.home-direction li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
}

.home-direction .button {
    width: fit-content;
    border-color: #ffffff;
    background: #ffffff;
    color: #000000;
}

.home-direction .button:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #ffffff;
}

.home-purple-panel {
    position: relative;
    margin: 26px 0 18px;
    padding: clamp(124px, 12vw, 184px) 0 clamp(98px, 9vw, 146px);
    overflow: hidden;
    color: #ffffff;
}

.home-purple-panel::before,
.home-purple-panel::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    pointer-events: none;
}

.home-purple-panel::before {
    top: 0;
    bottom: 0;
    background:
        url("../img/cm-print.png") 0 50% / 100% auto,
        radial-gradient(farthest-corner, #352234 25%, #141721);
    clip-path: polygon(0 2.3vw, 0 calc(100% - 1.1vw), 8% calc(100% - 2.6vw), 40.5% calc(100% - 3.6vw), 47% calc(100% - 0.9vw), 55% calc(100% - .8vw), 61% calc(100% - 1.9vw), 68% calc(100% - .8vw), 81% calc(100% - 2vw), 98% calc(100% - 4.5vw), 100% calc(100% - 4.5vw), 100% 3vw, 98% 3vw, 84% 6.4vw, 75% 6vw, 70.7% 9vw, 66% 6.3vw, 58% 7.1vw, 42% 4vw, 33% 6.5vw, 23% 1.5vw, 9% 4vw, 3% 2.2vw);
}

.home-purple-panel::after {
    top: 0;
    bottom: 0;
    background:
        url("../img/cm-top.png") 0 0 / 100% auto no-repeat,
        url("../img/cm-bottom.png") 0 100% / 100% auto no-repeat;
}

.home-purple-panel .container {
    position: relative;
    z-index: 1;
}

.home-purple-panel .home-statement {
    max-width: 980px;
    margin-bottom: 34px;
}

.home-purple-panel .home-statement h2 {
    max-width: 880px;
    color: #ffffff;
}

.home-purple-panel .home-statement p {
    max-width: 760px;
    color: #ffffff;
    color: rgba(255, 255, 255, .84);
}

.home-purple-panel .home-pillars {
    margin-bottom: 0;
    border-color: rgba(255, 255, 255, .32);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(2px);
}

.home-purple-panel .home-pillars div {
    border-color: rgba(255, 255, 255, .2);
}

.home-purple-panel .home-pillars strong {
    color: #ffffff;
}

.home-purple-panel .home-pillars span {
    color: rgba(255, 255, 255, .76);
}

.home-founder-quote {
    padding-bottom: 18px;
}

.home-trust {
    padding-top: 36px;
}

.home-trust-grid {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    gap: 34px;
    align-items: stretch;
}

.home-trust figure,
.home-trust-list {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.home-trust figure {
    margin: 0;
    padding: 28px;
    text-align: center;
}

.home-trust blockquote {
    margin: 18px 0;
    color: #000000;
    font: 400 23px / 1.35 "Lora", "Georgia", serif;
}

.home-trust figcaption strong,
.home-trust figcaption span {
    display: block;
}

.home-trust figcaption span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 14px;
}

.home-trust .section-title {
    margin-bottom: 18px;
}

.home-trust-list {
    display: grid;
}

.home-trust-list div {
    display: grid;
    grid-template-columns: minmax(180px, .44fr) minmax(0, 1fr);
    gap: 18px;
    padding: 20px 22px;
    border-bottom: 1px solid var(--line-soft);
}

.home-trust-list div:last-child {
    border-bottom: 0;
}

.home-trust-list strong {
    color: #000000;
}

.home-trust-list span {
    color: var(--muted);
}

.home-heritage {
    padding-top: 54px;
}

.home-heritage-grid {
    display: grid;
    grid-template-columns: minmax(230px, 380px) minmax(0, 1fr);
    gap: clamp(30px, 5vw, 64px);
    align-items: start;
}

.home-heritage figure {
    position: sticky;
    top: 92px;
    margin: 0;
}

.home-heritage img {
    width: 100%;
    display: block;
}

.home-heritage-copy h2 {
    margin: 0 0 22px;
    color: #000000;
    font: 400 clamp(34px, 5vw, 54px) / 1.08 "Lora", "Georgia", serif;
}

.home-heritage-copy h3 {
    margin: 28px 0 12px;
    color: #000000;
    font: 400 clamp(25px, 3vw, 34px) / 1.12 "Lora", "Georgia", serif;
}

.home-heritage-copy p,
.home-heritage-copy li {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.58;
}

.home-heritage-copy p {
    margin: 0 0 16px;
}

.home-heritage-copy ul {
    display: grid;
    gap: 7px;
    margin: 0 0 18px;
    padding-left: 22px;
}

.home-process {
    padding-top: 36px;
}

.home-process .section-title {
    margin-bottom: 24px;
}

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

.home-process-grid div {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
}

.home-process-grid span {
    display: block;
    margin-bottom: 18px;
    color: var(--accent);
    font-size: 42px;
    line-height: 1;
    font-weight: 700;
}

.home-process-grid h3 {
    margin-bottom: 8px;
    color: #000000;
    font-size: 20px;
}

.home-process-grid p {
    margin: 0;
    color: var(--muted);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin: 0 auto;
    color: inherit;
    font: 400 clamp(36px, 6vw, 64px) / 1.08 "Lora", "Georgia", serif;
}

.hero p {
    max-width: 760px;
    margin: 28px auto 0;
    color: rgba(255, 255, 255, .82);
    font-size: 20px;
}

.site-copy {
    position: relative;
    font-size: 17px;
}

.site-copy h3 {
    margin-top: 28px;
    font-size: 24px;
}

.site-copy ul {
    margin: 0 0 24px 20px;
}

.site-copy li {
    margin-bottom: 8px;
}

.site-copy-image {
    float: right;
    width: min(360px, 42%);
    margin: 0 0 24px 28px;
}

.about-winch {
    width: min(400px, 44%);
}

.about-small-figure {
    float: right;
    width: 120px;
    margin: 0 0 20px 24px;
}

.section-white {
    background: #ffffff;
}

.about-split,
.about-cert-row,
.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.about-split img {
    width: 100%;
    display: block;
}

.about-cert-row {
    margin: 24px 0;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
}

.about-cert-row img {
    width: 100%;
    display: block;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.cm-reviews-band {
    position: relative;
    margin: 40px 0;
    padding: 150px 0;
    color: #ffffff;
}

.cm-reviews-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        url("../img/cm-print.png") 0 50% / 100% auto,
        radial-gradient(farthest-corner, var(--plum) 25%, var(--ink));
    clip-path: polygon(0 2.3vw, 0 calc(100% - 1.1vw), 8% calc(100% - 2.6vw), 40.5% calc(100% - 3.6vw), 47% calc(100% - 0.9vw), 55% calc(100% - .8vw), 61% calc(100% - 1.9vw), 68% calc(100% - .8vw), 81% calc(100% - 2vw), 98% calc(100% - 4.5vw), 100% calc(100% - 4.5vw), 100% 3vw, 98% 3vw, 84% 6.4vw, 75% 6vw, 70.7% 9vw, 66% 6.3vw, 58% 7.1vw, 42% 4vw, 33% 6.5vw, 23% 1.5vw, 9% 4vw, 3% 2.2vw);
}

.cm-reviews-band::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        url("../img/cm-top.png") 0 0 / 100% auto no-repeat,
        url("../img/cm-bottom.png") 0 100% / 100% auto no-repeat;
}

.cm-reviews-band .container {
    position: relative;
    z-index: 1;
}

.cm-reviews-band figure {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 38px;
    align-items: center;
}

.quote-author {
    text-align: center;
}

.quote-portrait {
    width: 170px;
    height: 170px;
    display: block;
    margin: 0 auto 16px;
    border: 2px solid rgba(255, 255, 255, .58);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .28);
}

.cm-reviews-band blockquote {
    max-width: 860px;
    margin: 0;
    font: 400 24px / 1.45 "Lora", "Georgia", serif;
}

.quote-author strong {
    display: block;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.25;
}

.quote-author span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    line-height: 1.35;
}

.how-section .section-title {
    margin-bottom: 118px;
}

.how-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 0 18px;
    counter-reset: h3-counter;
}

.how-grid > div {
    position: relative;
    width: 350px;
    height: 95px;
    margin-bottom: 5em;
    counter-increment: h3-counter;
}

.how-grid > div::before {
    content: "0" counter(h3-counter);
    position: absolute;
    top: -100px;
    left: 0;
    color: var(--accent);
    font-size: 135px;
    line-height: 1;
    font-weight: 700;
}

.how-grid > div::after {
    content: "";
    position: absolute;
    inset: 0 0 0 90px;
    z-index: 0;
    border: 1px solid var(--line-soft);
    border-radius: 4px;
    background: rgba(255, 255, 255, .85);
    box-shadow: 0 4px 5px #cccccc;
}

.how-grid h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 0 90px;
    padding: 4px 8px 0;
    font-size: 16px;
    line-height: 1.2;
}

.how-grid p {
    position: relative;
    z-index: 1;
    margin: 0 0 0 90px;
    padding: 0 8px 4px;
    font-size: 14px;
    line-height: 1.35;
}

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

.home-cat {
    min-height: 210px;
    display: flex;
    align-items: flex-end;
    padding: 110px 20px 20px;
    border: 1px solid #000000;
    border-radius: var(--radius);
    background-position: center;
    background-size: cover;
    box-shadow: 0 0 15px -2px #000000;
    color: #ffffff;
    font: 400 30px / 1.1 "Lora", "Georgia", serif;
    transition: transform .3s;
}

.home-cat:hover {
    color: #ffffff;
    transform: scale(1.03);
}

.cat-winch { background-image: linear-gradient(to top, #000000, transparent 180px), url("../img/home/winch.jpg"); }
.cat-rigging { background-image: linear-gradient(to top, #000000, transparent 180px), url("../img/home/rigging.jpg"); }
.cat-protection { background-image: linear-gradient(to top, #000000, transparent 180px), url("../img/home/protection.jpg"); }
.cat-aerial { background-image: linear-gradient(to top, #000000, transparent 180px), url("../img/home/aerial.jpg"); }
.cat-pulley { background-image: linear-gradient(to top, #000000, transparent 180px), url("../img/home/pulley.jpg"); }
.cat-swivel { background-image: linear-gradient(to top, #000000, transparent 180px), url("../img/home/swivel.jpg"); }

.rental-intro-section {
    background: #ffffff;
}

.rental-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
    gap: 32px;
    align-items: center;
}

.rental-intro .section-title {
    margin-bottom: 20px;
}

.rental-intro p {
    font-size: 18px;
}

.rental-intro-points {
    display: grid;
    gap: 16px;
}

.rental-intro-points > div {
    padding: 20px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow-soft);
}

.rental-intro-points h3 {
    margin-bottom: 8px;
}

.rental-intro-points p {
    margin: 0;
    color: var(--muted);
}

.contact-grid,
.contact-page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.contact-info {
    font-size: 18px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.social-links a {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.social-links img {
    width: 64px;
    height: 64px;
    display: block;
    object-fit: contain;
}

.map-frame {
    min-height: 400px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
    border: 0;
}

.delivery-image {
    width: min(100%, 1024px);
    display: block;
    margin: 24px auto;
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.section {
    padding: 64px 0 34px;
}

.section-compact {
    padding: 20px 0 0;
}

.product-detail-section {
    padding-top: 112px;
}

.card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 24px;
}

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

.muted {
    color: var(--muted);
}

.price {
    margin: 12px 0 20px;
    color: #000000;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
}

.rent-price-note {
    margin: -8px 0 16px;
    color: var(--accent);
    font-weight: 700;
}

.rent-price-note strong {
    color: #000000;
}

.button,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 22px;
    border: 1px solid var(--plum-solid);
    border-radius: var(--radius);
    background: var(--plum-solid);
    color: #ffffff;
    font: 700 15px / 1.2 "Roboto", "Helvetica", sans-serif;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s, opacity .2s;
}

.button:hover,
button:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #ffffff;
}

.button-light {
    background: transparent;
    color: var(--accent);
    border-color: currentColor;
}

.button-light:hover {
    background: var(--accent);
    color: #ffffff;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.cart-badge {
    min-width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 7px;
    border-radius: 999px;
    background: var(--accent);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.project-float {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 900;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 4px 14px;
    min-width: 230px;
    min-height: 70px;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    background: rgba(0, 0, 0, .9);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
    transition: background .2s, transform .2s;
}

.project-float:hover {
    background: var(--plum-solid);
    color: #ffffff;
    transform: translateY(-2px);
}

.project-float .cart-badge {
    grid-row: 1 / 3;
    grid-column: 2;
    position: static;
    min-width: 36px;
    height: 36px;
    font-size: 16px;
}

.project-float-title {
    display: block;
    font-size: 19px;
    line-height: 1.15;
}

.project-float-meta {
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.15;
}

.cart-badge-hidden,
.message-area:empty {
    display: none;
}

[aria-busy="true"] {
    pointer-events: none;
    opacity: .72;
}

[data-equipment-grid][aria-busy="true"] {
    opacity: .55;
    transition: opacity .2s;
}

.advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 32px;
    counter-reset: advantage-counter;
}

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

.testimonial-card {
    display: grid;
    grid-template-columns: 186px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    padding: 24px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--shadow-soft);
}

.testimonial-card img {
    width: 186px;
    height: 245px;
    display: block;
    object-fit: cover;
}

.testimonial-card h3 {
    margin-bottom: 12px;
    font-size: 24px;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card strong {
    margin-top: 16px;
    font-size: 18px;
}

.testimonial-card span {
    color: var(--muted);
}

.testimonial-card-text {
    grid-template-columns: 1fr;
    padding-left: 234px;
}

.advantage-card {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    padding: 22px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 4px 5px #cccccc;
    counter-increment: advantage-counter;
}

.advantage-card::before {
    content: "0" counter(advantage-counter);
    position: absolute;
    right: 14px;
    bottom: -28px;
    color: var(--accent);
    font-size: 96px;
    line-height: 1;
    font-weight: 700;
    opacity: .24;
}

.advantage-number {
    display: none;
}

.advantage-card h3 {
    position: relative;
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.2;
}

.advantage-card .muted {
    position: relative;
}

.cart-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    border-color: #cccccc;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.category-filter a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .9);
    color: var(--text);
    font-weight: 700;
    box-shadow: var(--shadow-soft);
}

.category-filter a:hover,
.category-filter a.is-active {
    border-color: var(--plum-solid);
    background: var(--plum-solid);
    color: #ffffff;
}

.equipment-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0 0 34px;
    transition: transform .25s, box-shadow .25s;
}

.equipment-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow);
}

.equipment-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 28px;
    background: #eeeeee;
    border-top: 1px solid #dddddd;
}

.equipment-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eeeeee;
}

.equipment-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.equipment-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, .35);
    font-weight: 700;
    text-transform: uppercase;
}

.equipment-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.equipment-content h3,
h3 {
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 1.25;
}

.equipment-content .actions {
    margin-top: auto;
}

.recommendations {
    margin-top: 34px;
}

.recommendations h2 {
    margin: 0 0 18px;
    font: 400 28px / 1.2 "Lora", "Georgia", serif;
}

.recommendation-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.recommendation-card {
    overflow: hidden;
    padding: 0;
}

.recommendation-image {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    background: #eeeeee;
    color: rgba(0, 0, 0, .35);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.recommendation-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.recommendation-content {
    padding: 12px;
}

.recommendation-content .category-pill {
    margin-bottom: 8px;
    padding: 3px 7px;
    font-size: 11px;
}

.recommendation-content h3 {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.2;
}

.recommendation-content .price {
    margin: 0 0 10px;
    font-size: 16px;
}

.recommendation-content .button {
    width: 100%;
    min-height: 36px;
    padding: 8px 10px;
    font-size: 12px;
}

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

.article-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
}

.article-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--surface-soft);
}

.article-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.article-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    padding: 22px;
}

.article-card h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
}

.article-card h2 a {
    color: inherit;
}

.article-card .button {
    margin-top: auto;
}

.article-layout {
    max-width: 920px;
}

.article-cover {
    display: block;
    width: 100%;
    max-height: 520px;
    margin-bottom: 34px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    object-fit: cover;
}

.article-body {
    color: var(--text);
    font-size: 19px;
    line-height: 1.75;
}

.article-body p {
    margin: 0 0 22px;
}

.article-body h2 {
    margin: 38px 0 16px;
    color: #000000;
    font: 400 34px / 1.2 "Lora", "Georgia", serif;
}

.article-body h3 {
    margin: 30px 0 12px;
    color: #000000;
    font-size: 24px;
    line-height: 1.3;
}

.article-body ul,
.article-body ol {
    margin: 0 0 24px 24px;
}

.article-body li {
    margin-bottom: 8px;
}

.article-body blockquote {
    margin: 30px 0;
    padding: 18px 22px;
    border-left: 4px solid var(--accent);
    background: #f7f4f6;
    font-size: 21px;
    line-height: 1.55;
}

.article-body figure {
    margin: 32px 0;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.article-body figcaption {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
}

.article-body hr {
    margin: 34px 0;
    border: 0;
    border-top: 1px solid var(--line);
}

.article-body table {
    width: 100%;
    margin: 28px 0;
    border-collapse: collapse;
}

.article-body th,
.article-body td {
    padding: 12px;
    border: 1px solid var(--line);
    text-align: left;
}

.article-body .article-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    margin: 32px 0;
}

.article-body .article-note {
    margin: 28px 0;
    padding: 18px 22px;
    border: 1px solid #ead7e2;
    border-radius: var(--radius);
    background: #fbf7fa;
}

.category-pill {
    width: fit-content;
    display: inline-flex;
    margin-bottom: 14px;
    padding: 4px 9px;
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
}

.availability {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2d7a3b;
    font-size: 14px;
    font-weight: 700;
}

.availability::before {
    content: "";
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #2d7a3b;
}

form p {
    margin: 0 0 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px 12px;
    background: #ffffff;
    font: inherit;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(139, 30, 90, .18);
}

textarea {
    resize: vertical;
}

input[type="checkbox"] {
    width: auto;
    min-height: auto;
    margin-right: 8px;
}

.project-hero {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: flex-end;
}

.project-hero .button {
    flex: 0 0 auto;
    border-color: #ffffff;
    color: #ffffff;
}

.project-hero .button:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: var(--plum-solid);
}

.project-cart-card {
    padding: 0;
    overflow: hidden;
}

.project-cart-card > form {
    display: grid;
    gap: 0;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th,
.cart-table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line-soft);
    text-align: left;
    vertical-align: middle;
}

.cart-table th {
    background: #f7f4f8;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.cart-table input {
    max-width: 96px;
    min-height: 40px;
    text-align: center;
}

.project-cart-card[aria-busy="true"] {
    opacity: .68;
    pointer-events: none;
}

.project-period {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    padding: 22px 24px;
    background: #ffffff;
    border-bottom: 1px solid var(--line-soft);
}

.project-period h2 {
    margin: 0 0 6px;
    font-size: 24px;
}

.project-period p {
    max-width: 420px;
    margin: 0;
}

.period-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 14px;
}

.period-fields label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.period-fields input {
    min-width: 0;
}

.project-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    align-items: stretch;
}

.project-items-panel {
    min-width: 0;
}

.availability-warning {
    margin-top: 8px;
    color: #b83232;
    font-size: 14px;
    font-weight: 700;
}

.project-summary {
    margin: 0;
    padding: 22px 24px;
    background: #fbf9fc;
    border-left: 1px solid var(--line-soft);
}

.project-summary-empty {
    min-height: 100%;
    display: flex;
    align-items: center;
    padding: 18px;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    color: var(--muted);
    font-weight: 700;
}

.result-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
}

.result-row-total {
    align-items: center;
    margin-top: 10px;
    padding-top: 18px;
    color: var(--ink);
    font-size: 22px;
}

.project-cart-card .actions {
    justify-content: space-between;
    margin: 0;
    padding: 20px 24px 24px;
    border-top: 1px solid var(--line-soft);
    background: #ffffff;
}

.result-row strong {
    text-align: right;
}

.item-quantity {
    display: inline-flex;
    margin-left: 8px;
    color: var(--accent);
    font-weight: 900;
    white-space: nowrap;
}

.notice {
    margin-bottom: 18px;
    padding: 14px 18px;
    border-radius: var(--radius);
    font-weight: 700;
}

.notice-success {
    background: #eef8f0;
    color: #17632d;
    border: 1px solid #bde7c9;
}

.notice-warning {
    background: #fff5dc;
    color: #7a4c00;
    border: 1px solid #f0d492;
}

.notice-error {
    background: #fdeaea;
    color: #8d1d1d;
    border: 1px solid #f3b6b6;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
    gap: 28px;
    align-items: start;
}

.product-media {
    overflow: hidden;
    padding: 0;
}

.product-media img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

.product-tabs {
    margin-top: 22px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.product-tabs-wide {
    width: 100%;
}

.product-tab-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 8px;
    margin-bottom: 12px;
}

.product-tab-button {
    min-height: 38px;
    padding: 8px 10px;
    border-color: var(--line);
    background: #ffffff;
    color: var(--muted);
    font-size: 13px;
    text-transform: uppercase;
}

.product-tab-button:hover,
.product-tab-button.is-active {
    border-color: var(--accent);
    background: var(--accent);
    color: #ffffff;
}

.product-tab-panel {
    min-height: 0;
    max-height: none;
    overflow: auto;
    color: var(--text);
    font-size: 15px;
    line-height: 1.55;
}

.product-tab-panel[hidden] {
    display: none;
}

.product-tab-panel p {
    margin: 0 0 10px;
}

.product-info h1 {
    margin: 0 0 18px;
    color: #000000;
    font: 400 clamp(26px, 3vw, 36px) / 1.18 "Lora", "Georgia", serif;
}

.product-info {
    padding-top: 6px;
}

.product-description {
    margin: 26px 0;
    color: var(--text);
    font-size: 17px;
    line-height: 1.65;
}

.product-description h3 {
    margin: 24px 0 10px;
    color: #000000;
    font: 700 18px / 1.35 "Roboto", "Helvetica", "Trebuchet MS", sans-serif;
}

.product-description h3:first-child {
    margin-top: 0;
}

.product-description p {
    margin: 0 0 16px;
}

.product-description ul {
    display: grid;
    gap: 8px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.product-description li {
    position: relative;
    padding-left: 20px;
}

.product-description li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .75em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.product-description-winch {
    position: relative;
    margin: 0;
    padding: 0 0 0 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: inherit;
    line-height: inherit;
}

.product-description-winch::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: var(--accent);
}

.product-description-winch p {
    max-width: 980px;
    margin-bottom: 12px;
}

.product-description-winch h3 {
    width: fit-content;
    margin: 16px 0 8px;
    padding: 0 0 5px;
    border: 0;
    border-bottom: 2px solid rgba(139, 30, 90, .35);
    border-radius: 0;
    background: transparent;
    color: #000000;
    font: 800 12px / 1.25 "Roboto", "Helvetica", "Trebuchet MS", sans-serif;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.product-description-winch h3:first-child {
    margin-top: 0;
}

.product-description-winch ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 22px;
    margin-bottom: 6px;
}

.product-tabs-wide .product-description-winch ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-description-winch li {
    min-height: 0;
    padding: 7px 0 7px 16px;
    border: 0;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
    background: transparent;
}

.product-description-winch li::before {
    display: block;
    left: 0;
    top: 15px;
    width: 6px;
    height: 6px;
    background: var(--accent);
}

.product-description-wide {
    margin: 34px 0 0;
}

.product-description-wide p {
    max-width: none;
}

.product-description-wide:not(.product-description-winch) ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.footer {
    position: relative;
    margin-top: auto;
    padding-top: 9vw;
    color: #ffffff;
    font-size: 14px;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        url("../img/cm-print.png") 0 0 / 100% auto,
        radial-gradient(farthest-corner at bottom, var(--plum) 25%, var(--ink));
    clip-path: polygon(0 100%, 0 1.1vw, 2.2% 2.5vw, 5% 1.4vw, 9.5% 2.8vw, 20.5% 2.7vw, 22.7% 3.6vw, 26.5% 2.4vw, 48% 5.1vw, 83% 1.4vw, 87% 2.9vw, 100% .7vw, 100% 100%);
}

.footer::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding-top: 9%;
    background: url("../img/cm-foot.png") 0 / 100% auto no-repeat;
}

.footer .cm-flex {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    padding: 0 20px 22px;
}

.footer p,
.footer a {
    color: #ffffff;
}

.footer strong {
    color: #ffffff;
}

.footer .cm-flex p:last-child {
    text-align: right;
}

.cm-copyright {
    position: relative;
    z-index: 1;
    padding: 0 20px 28px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    text-align: center;
}

@media (max-width: 949px) {
    .section {
        padding: 52px 0 30px;
    }

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

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

    .advantages,
    .about-split,
    .about-cert-row,
    .contact-page-grid,
    .footer .cm-flex,
    .home-paths,
    .home-pillars,
    .home-directions,
    .home-trust-grid,
    .home-process-grid,
    .how-grid,
    .home-cats,
    .rental-intro {
        grid-template-columns: 1fr;
    }

    .home-pillars div {
        border-right: 0;
        border-bottom: 1px solid var(--line-soft);
    }

    .home-pillars div:last-child {
        border-bottom: 0;
    }

    .home-trust-list div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .home-purple-panel {
        padding: 92px 0 104px;
    }

    .home-heritage-grid {
        grid-template-columns: 1fr;
    }

    .home-heritage figure {
        position: static;
        max-width: 340px;
        margin: 0 auto;
    }

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

    .footer .cm-flex p,
    .footer .cm-flex p:last-child {
        text-align: center;
    }

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

    .article-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    html {
        font-size: 17px;
    }

    .hero {
        padding: 112px 0 18vw;
    }

    .site-hero {
        padding: 112px 0 22vw;
    }

    .hero h1,
    .site-hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 18px;
        line-height: 1.45;
    }

    .hero-lead {
        font-size: 19px;
    }

    .hero-points {
        margin: 24px auto 0;
    }

    .card {
        padding: 22px;
    }

    .article-grid {
        grid-template-columns: 1fr;
    }

    .article-card {
        padding: 0;
    }

    .article-card h2 {
        font-size: 22px;
    }

    .article-body {
        font-size: 17px;
    }

    .article-body .article-columns {
        grid-template-columns: 1fr;
    }

    .product-description-winch ul {
        grid-template-columns: 1fr;
    }

    .product-tabs-wide .product-description-winch ul {
        grid-template-columns: 1fr;
    }

    .product-tab-controls {
        grid-template-columns: 1fr;
    }

    .product-description-winch {
        padding: 18px 16px;
    }

    .product-description-winch h3 {
        width: 100%;
    }

    .site-copy-image {
        float: none;
        width: 100%;
        max-width: 360px;
        display: block;
        margin: 0 auto 24px;
    }

    .about-small-figure {
        float: none;
        width: 120px;
        display: block;
        margin: 0 auto 20px;
    }

    .about-cert-row {
        gap: 22px;
    }

    .about-cert-row a {
        max-width: 260px;
        margin: 0 auto;
    }

    .map-frame,
    .map-frame iframe {
        min-height: 340px;
    }

    .social-links a,
    .social-links img {
        width: 56px;
        height: 56px;
    }

    .testimonial-card,
    .testimonial-card-text {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .testimonial-card img {
        width: 150px;
        height: 198px;
    }

    .testimonial-card h3 {
        font-size: 22px;
    }

    .cm-reviews-band {
        padding: 100px 0;
    }

    .cm-reviews-band figure {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .quote-portrait {
        width: 150px;
        height: 150px;
        margin: 0 auto 14px;
    }

    .cm-reviews-band blockquote {
        font-size: 20px;
    }

    .how-section .section-title {
        margin-bottom: 108px;
    }

    .how-grid > div {
        width: min(100%, 350px);
    }

    .home-cat {
        min-height: 180px;
        font-size: 26px;
    }

    .home-path {
        min-height: 250px;
        padding: 22px;
    }

    .home-path h2 {
        font-size: 30px;
    }

    .home-statement h2 {
        font-size: 34px;
    }

    .home-statement p,
    .home-direction p {
        font-size: 17px;
    }

    .home-direction {
        min-height: 360px;
        padding: 22px;
    }

    .home-direction .button {
        width: 100%;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .rental-intro p {
        font-size: 17px;
    }

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

    .recommendations h2 {
        font-size: 24px;
    }

    .recommendation-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .category-filter {
        gap: 8px;
    }

    .category-filter a {
        min-height: 46px;
        padding: 0 14px;
        font-size: 16px;
    }

    .advantage-card {
        min-height: 0;
        padding: 24px;
    }

    .advantage-card h3,
    h3 {
        font-size: 22px;
    }

    .equipment-card {
        padding-bottom: 28px;
    }

    .equipment-card::after {
        height: 24px;
    }

    .equipment-card:hover {
        transform: none;
    }

    .equipment-image-wrap {
        aspect-ratio: 1 / 1;
    }

    .equipment-content {
        padding: 12px;
    }

    .equipment-content h3 {
        margin-bottom: 8px;
        font-size: 15px;
        line-height: 1.18;
    }

    .equipment-content .muted {
        font-size: 13px;
        line-height: 1.25;
    }

    .price {
        font-size: 28px;
    }

    .equipment-card .price {
        margin: 8px 0 12px;
        font-size: 18px;
    }

    .equipment-card .availability,
    .equipment-card p {
        font-size: 13px;
        line-height: 1.25;
    }

    .equipment-card .availability {
        align-items: flex-start;
        gap: 6px;
    }

    .equipment-card .availability::before {
        margin-top: 4px;
    }

    .equipment-card .category-pill {
        margin-bottom: 8px;
        padding: 3px 7px;
        font-size: 11px;
    }

    .equipment-card .actions {
        gap: 8px;
        margin-top: 12px;
    }

    .equipment-card .button {
        min-height: 38px;
        padding: 8px 10px;
        font-size: 12px;
        line-height: 1.15;
    }

    .button,
    button {
        min-height: 52px;
        padding: 13px 22px;
        font-size: 16px;
    }

    input,
    select,
    textarea {
        min-height: 50px;
        font-size: 17px;
    }

    .project-float {
        right: 18px;
        bottom: 18px;
        min-width: 260px;
        min-height: 76px;
        padding: 16px 22px;
        box-shadow: 0 12px 34px rgba(0, 0, 0, .36);
    }

    .project-float-title {
        font-size: 20px;
    }

    .project-float-meta {
        font-size: 15px;
    }

    .cart-panel,
    .result-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .project-hero,
    .project-period {
        align-items: flex-start;
        flex-direction: column;
    }

    .project-hero .button {
        width: 100%;
    }

    .project-cart-layout {
        grid-template-columns: 1fr;
    }

    .project-summary {
        border-top: 1px solid var(--line-soft);
        border-left: 0;
    }

    .period-fields {
        width: 100%;
    }

    .result-row strong {
        text-align: left;
    }

    .cart-table,
    .cart-table tbody,
    .cart-table tr,
    .cart-table td {
        display: block;
        width: 100%;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table tr {
        padding: 18px 0;
        border-bottom: 1px solid var(--line-soft);
    }

    .cart-table td {
        display: grid;
        grid-template-columns: minmax(120px, .75fr) minmax(0, 1fr);
        gap: 14px;
        align-items: center;
        border: 0;
        padding: 9px 0;
    }

    .cart-table td::before {
        content: attr(data-label);
        color: var(--muted);
        font-size: 14px;
        font-weight: 700;
    }

    .cart-table td:first-child {
        display: block;
        padding-bottom: 12px;
    }

    .cart-table td:first-child::before {
        display: none;
    }

    .cart-table input {
        max-width: 140px;
    }

    .project-cart-card .actions {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1200px);
    }

    .period-fields {
        grid-template-columns: 1fr;
    }

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

    .button,
    button {
        width: 100%;
    }

    .actions {
        width: 100%;
        flex-direction: column;
    }

    .project-float {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        min-height: 78px;
        border-radius: 10px;
    }

    .project-float-title {
        font-size: 21px;
    }

    .project-float .cart-badge {
        min-width: 40px;
        height: 40px;
        font-size: 17px;
    }

    .footer {
        padding-bottom: 100px;
    }

    main {
        padding-bottom: 120px;
    }
}
