/* ==========================================================================
   Trashy Broz
   Junk removal and moving, Tucson Arizona
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
    /* Brand. Green is taken from the logo lettering and leads the palette. */
    --c-green: #7cb135;
    --c-green-deep: #4c7a16;
    --c-green-dark: #3f6612;
    --c-green-soft: #f1f7e7;

    /* Orange carries over from the current Squarespace site as a small accent only. */
    --c-orange: #ff6123;
    --c-orange-dark: #d8460f;
    --c-orange-soft: #fff0e9;

    /* Neutrals */
    --c-ink: #101010;
    --c-ink-soft: #1c1c1c;
    --c-body: #3a3a3a;
    --c-muted: #6d6a66;
    --c-sand: #f7f1e8;
    --c-sand-deep: #efe5d7;
    --c-line: #e2d9cc;
    --c-line-dark: #2e2e2e;
    --c-white: #ffffff;

    /* Type */
    --f-head: "Archivo Black", "Arial Black", "Helvetica Neue", Arial, sans-serif;
    --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

    /* Layout */
    --shell: 1240px;
    --gutter: 20px;
    --header-h: 84px;
    --bar-h: 40px;

    /* Motion */
    --ease: cubic-bezier(0.2, 0.7, 0.3, 1);
    --t: 0.28s var(--ease);
}

@media (min-width: 700px) {
    :root {
        --gutter: 32px;
    }
}

@media (min-width: 1100px) {
    :root {
        --gutter: 40px;
    }
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--f-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--c-body);
    background: var(--c-white);
    overflow-x: hidden;
    max-width: 100%;
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
}

p,
h1,
h2,
h3,
h4,
li,
a,
span,
label {
    overflow-wrap: break-word;
}

:focus-visible {
    outline: 3px solid var(--c-green-deep);
    outline-offset: 2px;
}

::selection {
    background: var(--c-green);
    color: var(--c-ink);
}

/* --------------------------------------------------------------------------
   3. Type scale
   -------------------------------------------------------------------------- */

h1,
h2,
h3,
h4,
.h-display {
    font-family: var(--f-head);
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -0.015em;
    color: var(--c-ink);
    text-transform: uppercase;
}

h1 {
    font-size: clamp(1.95rem, 3.8vw, 3.05rem);
}

h2 {
    font-size: clamp(1.7rem, 3.7vw, 2.9rem);
}

h3 {
    font-size: clamp(1.15rem, 1.7vw, 1.4rem);
    letter-spacing: -0.005em;
}

h4 {
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.lede {
    font-size: clamp(1.02rem, 1.35vw, 1.16rem);
    line-height: 1.62;
    color: var(--c-muted);
}

/* Slanted label, echoes the angle of the logo lettering */
.kicker {
    display: inline-block;
    font-family: var(--f-head);
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-green-deep);
    transform: skewX(-9deg);
    margin-bottom: 14px;
}

.kicker > span {
    display: inline-block;
    transform: skewX(9deg);
}

.kicker--light {
    color: var(--c-white);
}

.kicker--green {
    color: var(--c-green);
}

/* --------------------------------------------------------------------------
   4. Layout helpers
   -------------------------------------------------------------------------- */

.shell {
    width: 100%;
    max-width: var(--shell);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section {
    padding-block: clamp(56px, 7.5vw, 104px);
}

.section--tight {
    padding-block: clamp(44px, 5vw, 68px);
}

.section--sand {
    background: var(--c-sand);
}

.section--ink {
    background: var(--c-ink);
    color: #cdc7c0;
}

.section--ink h2,
.section--ink h3,
.section--ink h4 {
    color: var(--c-white);
}

.section-head {
    max-width: 700px;
    margin-bottom: clamp(32px, 4vw, 52px);
}

.section-head p {
    margin-top: 16px;
}

.section-head--center {
    margin-inline: auto;
    text-align: center;
}

.grid {
    display: grid;
    gap: 24px;
}

.grid > * {
    min-width: 0;
}

.grid-2 {
    grid-template-columns: minmax(0, 1fr);
}

.grid-3 {
    grid-template-columns: minmax(0, 1fr);
}

.grid-4 {
    grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 620px) {
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 900px) {
    .grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(32px, 4vw, 64px);
    }

    .grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .grid-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--f-head);
    font-size: 0.86rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 16px 28px;
    border: 2px solid transparent;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
    transition: background-color var(--t), color var(--t), border-color var(--t), transform var(--t);
}

.btn svg {
    width: 17px;
    height: 17px;
    flex: none;
}

.btn--primary {
    background: var(--c-green);
    border-color: var(--c-green);
    color: var(--c-ink);
}

.btn--dark {
    background: var(--c-ink);
    border-color: var(--c-ink);
    color: var(--c-white);
}

.btn--green {
    background: var(--c-ink);
    border-color: var(--c-ink);
    color: var(--c-white);
}

.btn--ghost-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--c-white);
}

.btn--ghost-dark {
    background: transparent;
    border-color: var(--c-ink);
    color: var(--c-ink);
}

.btn--block {
    width: 100%;
}

.btn--lg {
    padding: 17px 30px;
    font-size: 0.92rem;
}

@media (hover: hover) and (pointer: fine) {
    .btn--primary:hover {
        background: var(--c-ink);
        border-color: var(--c-ink);
        color: var(--c-white);
    }

    .btn--dark:hover {
        background: var(--c-green);
        border-color: var(--c-green);
        color: var(--c-ink);
    }

    .btn--green:hover {
        background: var(--c-green);
        border-color: var(--c-green);
        color: var(--c-ink);
    }

    .btn--ghost-light:hover {
        background: var(--c-white);
        border-color: var(--c-white);
        color: var(--c-ink);
    }

    .btn--ghost-dark:hover {
        background: var(--c-ink);
        color: var(--c-white);
    }
}

.text-link {
    font-family: var(--f-head);
    font-size: 0.8rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--c-green-deep);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: border-color var(--t), gap var(--t);
}

@media (hover: hover) and (pointer: fine) {
    .text-link:hover {
        border-bottom-color: var(--c-green-deep);
        gap: 13px;
    }
}

/* --------------------------------------------------------------------------
   6. Utility bar
   -------------------------------------------------------------------------- */

.utility {
    background: var(--c-ink);
    color: #b9b3ac;
    font-size: 0.8rem;
    border-bottom: 1px solid var(--c-line-dark);
}

.utility__inner {
    min-height: var(--bar-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    padding-block: 8px;
}

.utility__area {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.utility__area svg {
    width: 15px;
    height: 15px;
    fill: var(--c-green);
    flex: none;
}

.utility__right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.utility__hours {
    display: none;
}

/* On narrow screens the bar carries the service area only, so it stays one line */
@media (max-width: 699px) {
    .utility__inner {
        justify-content: center;
        flex-wrap: nowrap;
    }

    .utility__right {
        display: none;
    }

    .utility__area {
        font-size: 0.76rem;
    }
}

@media (min-width: 900px) {
    .utility__hours {
        display: inline;
    }
}

.utility a {
    color: var(--c-white);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.utility a svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
    flex: none;
}

@media (hover: hover) and (pointer: fine) {
    .utility a:hover {
        color: var(--c-green);
    }
}

/* --------------------------------------------------------------------------
   7. Header
   -------------------------------------------------------------------------- */

.header {
    background: var(--c-white);
    border-bottom: 1px solid var(--c-line);
    position: sticky;
    top: 0;
    z-index: 90;
}

.header__inner {
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-block: 8px;
    flex-wrap: nowrap;
}

.brand {
    display: block;
    flex: none;
    line-height: 0;
}

.brand img {
    width: auto;
    height: 52px;
}

@media (min-width: 700px) {
    .brand img {
        height: 62px;
    }
}

@media (min-width: 1100px) {
    .brand img {
        height: 62px;
    }
}

@media (min-width: 1320px) {
    .brand img {
        height: 72px;
    }
}

.header__nav {
    display: none;
}

@media (min-width: 1100px) {
    .header__nav {
        display: flex;
        align-items: center;
        gap: 26px;
        margin-left: auto;
        flex-wrap: nowrap;
        white-space: nowrap;
    }
}

.header__nav a {
    font-family: var(--f-head);
    font-size: 0.83rem;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    color: var(--c-ink);
    padding-block: 6px;
    border-bottom: 3px solid transparent;
    transition: color var(--t), border-color var(--t);
}

.header__nav a[aria-current="page"] {
    border-bottom-color: var(--c-green);
    color: var(--c-green-deep);
}

@media (hover: hover) and (pointer: fine) {
    .header__nav a:hover {
        color: var(--c-green-deep);
    }
}

.header__actions {
    display: none;
}

@media (min-width: 1100px) {
    .header__actions {
        display: flex;
        align-items: center;
        gap: 18px;
        padding-left: 24px;
        margin-left: 4px;
        border-left: 1px solid var(--c-line);
        flex: none;
        white-space: nowrap;
    }
}

.header__call {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--c-ink);
}

.header__call svg {
    width: 34px;
    height: 34px;
    fill: var(--c-green-deep);
    flex: none;
}

.header__call span {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-muted);
    line-height: 1.4;
}

.header__call strong {
    display: block;
    font-family: var(--f-head);
    font-size: 1.3rem;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: var(--c-ink);
}

@media (hover: hover) and (pointer: fine) {
    .header__call:hover strong {
        color: var(--c-green-deep);
    }
}

/* Burger */
.burger {
    margin-left: auto;
    width: 50px;
    height: 44px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--c-ink);
    border: 0;
    border-radius: 3px;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-white);
    transition: transform var(--t), opacity var(--t);
}

.burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 1100px) {
    .burger {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   8. Mobile drawer
   -------------------------------------------------------------------------- */

.drawer {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--c-ink);
    display: flex;
    flex-direction: column;
    padding: 18px var(--gutter) calc(24px + env(safe-area-inset-bottom));
    transform: translateX(100%);
    transition: transform 0.32s var(--ease);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.drawer.is-open {
    transform: translateX(0);
}

@media (min-width: 1100px) {
    .drawer {
        display: none;
    }
}

.drawer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--c-line-dark);
}

.drawer__top img {
    height: 50px;
    width: auto;
}

.drawer__close {
    width: 46px;
    height: 46px;
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #4a4a4a;
    border-radius: 3px;
    color: var(--c-white);
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
}

.drawer__nav {
    display: flex;
    flex-direction: column;
    padding-block: 12px;
}

.drawer__nav a {
    display: block;
    font-family: var(--f-head);
    font-size: 1.18rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--c-white);
    opacity: 1;
    visibility: visible;
    padding-block: 17px;
    border-bottom: 1px solid var(--c-line-dark);
}

.drawer__nav a[aria-current="page"] {
    color: var(--c-green);
}

.drawer__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
}

.drawer__call {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--c-white);
    padding: 14px 0;
}

.drawer__call svg {
    width: 32px;
    height: 32px;
    fill: var(--c-green);
    flex: none;
}

.drawer__call span {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a8a29b;
}

.drawer__call strong {
    display: block;
    font-family: var(--f-head);
    font-size: 1.5rem;
    color: var(--c-white);
}

.drawer__social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    color: #a8a29b;
    font-size: 0.85rem;
}

.drawer__social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-block: 12px;
    color: var(--c-white);
}

.drawer__social svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

body.is-locked {
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   9. Hero
   -------------------------------------------------------------------------- */

.hero {
    position: relative;
    background: var(--c-ink);
    overflow: hidden;
}

.hero__slides {
    position: absolute;
    inset: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.1s ease-in-out;
}

.hero__slide.is-active {
    opacity: 1;
}

.hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
}

.hero__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(9, 9, 9, 0.9) 0%, rgba(9, 9, 9, 0.72) 42%, rgba(9, 9, 9, 0.34) 72%, rgba(9, 9, 9, 0.5) 100%),
        linear-gradient(180deg, rgba(9, 9, 9, 0.55) 0%, rgba(9, 9, 9, 0.1) 35%, rgba(9, 9, 9, 0.6) 100%);
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding-block: clamp(34px, 4vw, 46px);
}

.hero__inner > * {
    min-width: 0;
}

@media (min-width: 1000px) {
    .hero__inner {
        grid-template-columns: minmax(0, 1fr) 430px;
        gap: 44px;
        padding-block: clamp(18px, 1.4vw, 20px);
    }
}

.hero__copy {
    color: var(--c-white);
    max-width: 720px;
    text-wrap: balance;
}

.hero__copy h1 {
    color: var(--c-white);
    text-shadow: 0 2px 22px rgba(0, 0, 0, 0.45);
}

.hero__copy h1 em {
    font-style: normal;
    color: var(--c-green);
}

.hero__sub {
    margin-top: 15px;
    font-size: clamp(1rem, 1.3vw, 1.12rem);
    line-height: 1.58;
    color: #e6e1db;
    max-width: 500px;
}

.hero__points {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 9px 20px;
    margin-top: 18px;
}

.hero__points li {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--c-white);
}

.hero__points svg {
    width: 17px;
    height: 17px;
    fill: var(--c-green);
    flex: none;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

/* Slider controls sit inside the visible lower area of the hero */
.hero__dots {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
}

.hero__dot {
    width: 34px;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.34);
    cursor: pointer;
    transition: background-color var(--t), width var(--t);
}

.hero__dot.is-active {
    background: var(--c-green);
    width: 54px;
}

/* Quote card over the banner */
.quote-card {
    background: var(--c-white);
    border-radius: 4px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
    overflow: hidden;
    width: 100%;
    max-width: 470px;
    margin-inline: auto;
}

@media (min-width: 1000px) {
    .quote-card {
        margin-inline: 0 0 0 auto;
        max-width: none;
    }
}

.quote-card__head {
    background: var(--c-ink);
    color: var(--c-white);
    padding: 17px 22px 15px;
    border-bottom: 4px solid var(--c-green);
}

.quote-card__head h2 {
    color: var(--c-white);
    font-size: 1.18rem;
}

.quote-card__head p {
    margin-top: 6px;
    font-size: 0.84rem;
    color: #b6b0a9;
}

.quote-card__body {
    padding: 18px 22px 22px;
}

/* --------------------------------------------------------------------------
   10. Forms
   -------------------------------------------------------------------------- */

.field {
    margin-bottom: 11px;
}

.field label {
    display: block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-ink);
    margin-bottom: 6px;
}

.field .req {
    color: var(--c-green-deep);
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"],
.field input[type="file"],
.field select,
.field textarea {
    width: 100%;
    background: #fbfaf8;
    border: 1px solid var(--c-line);
    border-radius: 3px;
    padding: 10px 13px;
    font-size: 0.94rem;
    color: var(--c-ink);
    transition: border-color var(--t), background-color var(--t);
}

.field textarea {
    min-height: 80px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--c-green-deep);
    background: var(--c-white);
    outline: none;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #9d9790;
}

.field--split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.field__hint {
    display: block;
    margin-top: 6px;
    font-size: 0.76rem;
    color: var(--c-muted);
    line-height: 1.5;
}

.field__error {
    display: block;
    margin-top: 6px;
    font-size: 0.79rem;
    font-weight: 600;
    color: #c62b12;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
    border-color: #c62b12;
    background: #fff6f4;
}

.honey {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-note {
    margin-top: 10px;
    font-size: 0.73rem;
    line-height: 1.5;
    color: var(--c-muted);
}

.form-alert {
    border-left: 4px solid var(--c-green-deep);
    background: #f2f8ea;
    padding: 16px 18px;
    margin-bottom: 18px;
    border-radius: 3px;
}

.form-alert h3 {
    font-size: 1rem;
    color: var(--c-ink);
    margin-bottom: 5px;
}

.form-alert p {
    font-size: 0.88rem;
    color: #43502f;
}

.form-alert--error {
    border-left-color: #c62b12;
    background: #fff3f1;
}

.form-alert--error p {
    color: #7d2413;
}

/* Hero card places the area and service side by side to save a row */
@media (min-width: 480px) {
    .quote-form--compact [data-compact-pair] {
        display: inline-block;
        width: calc(50% - 6px);
        vertical-align: top;
    }

    .quote-form--compact [data-compact-pair]:first-of-type {
        margin-right: 8px;
    }
}

/* Denser variant used inside the hero card */
.quote-form--compact .field {
    margin-bottom: 9px;
}

.quote-form--compact textarea {
    min-height: 62px;
}

.quote-form--compact .form-note {
    margin-top: 8px;
    font-size: 0.71rem;
}

/* --------------------------------------------------------------------------
   11. Trust strip
   -------------------------------------------------------------------------- */

.trust {
    background: var(--c-ink);
    border-top: 4px solid var(--c-green);
}

.trust__list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: #2c2c2c;
}

@media (min-width: 1000px) {
    .trust__list {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.trust__list li {
    background: var(--c-ink);
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 20px clamp(14px, 2vw, 22px);
}

.trust__list svg {
    width: 24px;
    height: 24px;
    fill: var(--c-green);
    flex: none;
}

.trust__list span {
    font-family: var(--f-head);
    font-size: 0.78rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--c-white);
}

/* --------------------------------------------------------------------------
   12. Service cards
   -------------------------------------------------------------------------- */

.svc {
    display: flex;
    flex-direction: column;
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-radius: 3px;
    overflow: hidden;
    transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}

.svc__media {
    display: block;
    position: relative;
    aspect-ratio: 10 / 7;
    overflow: hidden;
    background: var(--c-sand-deep);
}

.svc__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.svc__tag {
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--c-ink);
    color: var(--c-white);
    font-family: var(--f-head);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 16px 8px 14px;
}

.svc__body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.svc__body h3 {
    margin-bottom: 9px;
}

.svc__body p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--c-muted);
    margin-bottom: 18px;
}

.svc__body .text-link {
    margin-top: auto;
    align-self: flex-start;
}

@media (hover: hover) and (pointer: fine) {
    .svc:hover {
        border-color: var(--c-orange);
        box-shadow: 0 16px 34px rgba(16, 16, 16, 0.09);
    }

    .svc:hover .svc__media img {
        transform: scale(1.05);
    }
}

/* --------------------------------------------------------------------------
   13. Split panels
   -------------------------------------------------------------------------- */

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
}

@media (min-width: 900px) {
    .split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px;
    }
}

.panel {
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-top: 5px solid var(--c-green);
    border-radius: 3px;
    padding: clamp(26px, 3vw, 38px);
    display: flex;
    flex-direction: column;
}

.panel--green {
    border-top-color: var(--c-orange);
}

.panel__icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--c-green-soft);
    border-radius: 3px;
    margin-bottom: 18px;
}

.panel__icon svg {
    width: 27px;
    height: 27px;
    fill: var(--c-green-deep);
}

.panel--green .panel__icon {
    background: var(--c-orange-soft);
}

.panel--green .panel__icon svg {
    fill: var(--c-orange-dark);
}

.panel h3 {
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    margin-bottom: 12px;
}

.panel > p {
    color: var(--c-muted);
    margin-bottom: 18px;
}

.panel ul {
    list-style: none;
    margin-bottom: 24px;
}

.panel ul li {
    position: relative;
    padding-left: 26px;
    padding-block: 6px;
    font-size: 0.94rem;
    color: var(--c-body);
    border-bottom: 1px solid var(--c-sand-deep);
}

.panel ul li:last-child {
    border-bottom: 0;
}

.panel ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 11px;
    height: 11px;
    background: var(--c-green);
    transform: skewX(-12deg);
}

.panel--green ul li::before {
    background: var(--c-orange);
}

.panel .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* --------------------------------------------------------------------------
   14. Process steps
   -------------------------------------------------------------------------- */

.steps {
    counter-reset: step;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
}

@media (min-width: 800px) {
    .steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 26px;
    }
}

.step {
    min-width: 0;
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid #2b2b2b;
    border-radius: 3px;
    padding: 30px 26px 28px;
}

.step__num {
    display: inline-block;
    font-family: var(--f-head);
    font-size: 2.5rem;
    line-height: 1;
    color: var(--c-green);
    transform: skewX(-9deg);
    margin-bottom: 16px;
}

.step h3 {
    margin-bottom: 10px;
}

.step p {
    font-size: 0.93rem;
    line-height: 1.65;
    color: #b3ada6;
}

/* --------------------------------------------------------------------------
   15. Remove list and loads
   -------------------------------------------------------------------------- */

.remove-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--c-line);
    border: 1px solid var(--c-line);
    border-radius: 3px;
    overflow: hidden;
}

@media (min-width: 800px) {
    .remove-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.remove-list li {
    background: var(--c-white);
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--c-ink);
}

.remove-list li::before {
    content: "";
    width: 9px;
    height: 9px;
    flex: none;
    background: var(--c-green);
    transform: skewX(-12deg);
}

.loads {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
}

@media (min-width: 800px) {
    .loads {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.load {
    min-width: 0;
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-radius: 3px;
    padding: 26px 24px;
}

.load__bar {
    display: flex;
    gap: 5px;
    margin-bottom: 18px;
}

.load__bar i {
    display: block;
    width: 26px;
    height: 9px;
    background: var(--c-sand-deep);
    transform: skewX(-14deg);
}

.load__bar i.on {
    background: var(--c-green);
}

.load h3 {
    margin-bottom: 7px;
}

.load__summary {
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--c-green-deep);
    margin-bottom: 10px;
}

.load p {
    font-size: 0.9rem;
    color: var(--c-muted);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   16. Before and after comparison slider
   -------------------------------------------------------------------------- */

.cmp {
    max-width: 940px;
    margin-inline: auto;
}

.cmp__stage {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 3px;
    background: var(--c-ink);
    touch-action: pan-y;
    cursor: ew-resize;
    user-select: none;
}

@media (min-width: 700px) {
    .cmp__stage {
        aspect-ratio: 16 / 10;
    }
}

.cmp__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* The before shot sits on top and is revealed by moving the clip edge */
.cmp__clip {
    position: absolute;
    inset: 0;
    clip-path: inset(0 50% 0 0);
    will-change: clip-path;
}

.cmp__tag {
    position: absolute;
    top: 16px;
    font-family: var(--f-head);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 2px;
    pointer-events: none;
}

.cmp__tag--before {
    left: 16px;
    background: var(--c-ink);
    color: var(--c-white);
}

.cmp__tag--after {
    right: 16px;
    background: var(--c-green);
    color: var(--c-ink);
}

.cmp__handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    margin-left: -1.5px;
    background: var(--c-white);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.28);
    pointer-events: none;
}

.cmp__grip {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--c-white);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px;
}

.cmp__grip svg {
    width: 15px;
    height: 15px;
    fill: var(--c-ink);
}

/* Native range gives keyboard and screen reader control, the visuals sit above it */
.cmp__range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
    appearance: none;
    background: transparent;
}

.cmp__range::-webkit-slider-thumb {
    appearance: none;
    width: 54px;
    height: 54px;
}

.cmp__range::-moz-range-thumb {
    width: 54px;
    height: 54px;
    border: 0;
    background: transparent;
}

.cmp__range:focus-visible ~ .cmp__handle .cmp__grip {
    outline: 3px solid var(--c-green);
    outline-offset: 3px;
}

.cmp__caption {
    margin-top: 18px;
    text-align: center;
    font-family: var(--f-head);
    font-size: 1.05rem;
    text-transform: uppercase;
    color: var(--c-ink);
}

.cmp__tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.cmp__tab {
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-radius: 2px;
    padding: 11px 16px;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--c-body);
    cursor: pointer;
    transition: background-color var(--t), color var(--t), border-color var(--t);
}

.cmp__tab.is-active {
    background: var(--c-ink);
    border-color: var(--c-ink);
    color: var(--c-white);
}

@media (hover: hover) and (pointer: fine) {
    .cmp__tab:not(.is-active):hover {
        border-color: var(--c-green);
        color: var(--c-green-dark);
    }
}


/* --------------------------------------------------------------------------
   17. Crew
   -------------------------------------------------------------------------- */

.crew {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    align-items: stretch;
}

@media (min-width: 950px) {
    .crew {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        gap: clamp(36px, 4vw, 60px);
        align-items: center;
    }
}

.crew__media {
    position: relative;
    min-width: 0;
}

.crew__media img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    object-position: center 22%;
    border-radius: 3px;
}

.crew__badge {
    position: absolute;
    right: -10px;
    bottom: 24px;
    background: var(--c-green-deep);
    color: var(--c-white);
    padding: 15px 20px;
    border-radius: 3px;
    max-width: 230px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.crew__badge strong {
    display: block;
    font-family: var(--f-head);
    font-size: 1.7rem;
    line-height: 1;
}

.crew__badge span {
    display: block;
    margin-top: 5px;
    font-size: 0.78rem;
    line-height: 1.4;
    color: #ffffff;
}

.crew__body p {
    margin-bottom: 16px;
}

.crew__quote {
    border-left: 4px solid var(--c-green-deep);
    padding: 4px 0 4px 20px;
    margin: 24px 0;
    font-family: var(--f-head);
    font-size: clamp(1.1rem, 1.8vw, 1.45rem);
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--c-ink);
}

/* --------------------------------------------------------------------------
   18. Areas
   -------------------------------------------------------------------------- */

.areas {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

@media (min-width: 700px) {
    .areas {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1000px) {
    .areas {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.areas li {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #2b2b2b;
    border-radius: 3px;
    padding: 13px 15px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--c-white);
}

.areas svg {
    width: 15px;
    height: 15px;
    fill: var(--c-green);
    flex: none;
}

/* --------------------------------------------------------------------------
   19. FAQ
   -------------------------------------------------------------------------- */

.faq {
    border-top: 1px solid var(--c-line);
}

.faq__item {
    border-bottom: 1px solid var(--c-line);
}

.faq__q {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    background: transparent;
    border: 0;
    padding: 22px 0;
    text-align: left;
    cursor: pointer;
    font-family: var(--f-head);
    font-size: clamp(0.98rem, 1.4vw, 1.12rem);
    line-height: 1.35;
    text-transform: uppercase;
    color: var(--c-ink);
    transition: color var(--t);
}

.faq__q i {
    flex: none;
    width: 26px;
    height: 26px;
    position: relative;
    margin-top: 2px;
}

.faq__q i::before,
.faq__q i::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--c-green-deep);
    transform: translate(-50%, -50%);
    transition: transform var(--t), opacity var(--t);
}

.faq__q i::before {
    width: 16px;
    height: 3px;
}

.faq__q i::after {
    width: 3px;
    height: 16px;
}

.faq__q[aria-expanded="true"] i::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
    .faq__q:hover {
        color: var(--c-green-deep);
    }
}

.faq__a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.34s var(--ease);
}

.faq__a > div {
    overflow: hidden;
}

.faq__item.is-open .faq__a {
    grid-template-rows: 1fr;
}

.faq__a p {
    padding-bottom: 24px;
    padding-right: 40px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--c-muted);
}

/* --------------------------------------------------------------------------
   20. Closing CTA
   -------------------------------------------------------------------------- */

.cta {
    background: var(--c-green-deep);
    color: var(--c-white);
}

.cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
    align-items: center;
    padding-block: clamp(44px, 5vw, 68px);
}

@media (min-width: 900px) {
    .cta__inner {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 46px;
    }
}

.cta h2 {
    color: var(--c-white);
}

.cta p {
    margin-top: 12px;
    color: var(--c-white);
    max-width: 560px;
}

.cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cta .btn--dark:hover {
    background: var(--c-white);
    border-color: var(--c-white);
    color: var(--c-green-dark);
}

/* --------------------------------------------------------------------------
   21. Footer
   -------------------------------------------------------------------------- */

.footer {
    background: var(--c-ink);
    color: #a8a29b;
    font-size: 0.92rem;
}

.footer__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    padding-block: clamp(44px, 5vw, 70px);
}

@media (min-width: 760px) {
    .footer__top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px;
    }
}

@media (min-width: 1050px) {
    .footer__top {
        grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
        gap: 44px;
    }
}

.footer__brand img {
    height: 58px;
    width: auto;
    margin-bottom: 20px;
}

.footer__brand p {
    max-width: 330px;
    line-height: 1.7;
}

.footer h4 {
    color: var(--c-white);
    font-size: 0.86rem;
    letter-spacing: 0.09em;
    margin-bottom: 18px;
}

.footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer ul a {
    color: #a8a29b;
    transition: color var(--t);
}

@media (hover: hover) and (pointer: fine) {
    .footer ul a:hover {
        color: var(--c-green);
    }
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__contact a {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: var(--c-white);
}

.footer__contact svg {
    width: 18px;
    height: 18px;
    fill: var(--c-green);
    flex: none;
    margin-top: 3px;
}

.footer__contact strong {
    display: block;
    font-family: var(--f-head);
    font-size: 1.18rem;
    line-height: 1.2;
}

.footer__contact span {
    display: block;
    font-size: 0.8rem;
    color: #8d8781;
    margin-top: 2px;
}

.footer__bottom {
    border-top: 1px solid var(--c-line-dark);
    padding-block: 22px calc(22px + env(safe-area-inset-bottom));
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    align-items: center;
    justify-content: space-between;
    font-size: 0.83rem;
}

.footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.footer__credit a {
    color: var(--c-white);
}

@media (hover: hover) and (pointer: fine) {
    .footer__credit a:hover {
        color: var(--c-green);
    }
}

/* --------------------------------------------------------------------------
   22. Mobile action bar
   -------------------------------------------------------------------------- */

.actionbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: var(--c-ink);
    border-top: 1px solid #2e2e2e;
    padding-bottom: env(safe-area-inset-bottom);
}

@media (min-width: 1100px) {
    .actionbar {
        display: none;
    }
}

.actionbar a {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 11px 6px;
    color: var(--c-white);
    font-family: var(--f-head);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-right: 1px solid #2e2e2e;
}

.actionbar a:last-child {
    border-right: 0;
}

.actionbar a.is-primary {
    background: var(--c-green);
    color: var(--c-ink);
}

.actionbar svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

body {
    padding-bottom: 62px;
}

@media (min-width: 1100px) {
    body {
        padding-bottom: 0;
    }
}

/* --------------------------------------------------------------------------
   23. Motion
   -------------------------------------------------------------------------- */

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.is-in {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* --------------------------------------------------------------------------
   24. Legal prose
   -------------------------------------------------------------------------- */

.prose {
    max-width: 760px;
}

.prose h1 {
    margin-bottom: 14px;
}

.prose h2 {
    font-size: clamp(1.15rem, 1.8vw, 1.4rem);
    margin-top: 38px;
    margin-bottom: 12px;
}

.prose p {
    margin-bottom: 14px;
}

.prose a {
    color: var(--c-green-deep);
    border-bottom: 1px solid currentColor;
}

/* --------------------------------------------------------------------------
   25. Inner page banner
   -------------------------------------------------------------------------- */

.banner {
    position: relative;
    background: var(--c-ink);
    overflow: hidden;
}

.banner__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
}

.banner__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(9, 9, 9, 0.92) 0%, rgba(9, 9, 9, 0.72) 55%, rgba(9, 9, 9, 0.42) 100%),
        linear-gradient(180deg, rgba(9, 9, 9, 0.6) 0%, rgba(9, 9, 9, 0.2) 45%, rgba(9, 9, 9, 0.6) 100%);
}

.banner__inner {
    position: relative;
    z-index: 2;
    padding-block: clamp(36px, 5vw, 62px);
    max-width: var(--shell);
}

.banner h1 {
    color: var(--c-white);
    max-width: 15ch;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.banner__lead {
    margin-top: 16px;
    max-width: 58ch;
    font-size: clamp(0.98rem, 1.2vw, 1.1rem);
    line-height: 1.6;
    color: #e3ded8;
}

.banner__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    font-size: 0.8rem;
    color: #b3ada6;
}

.crumbs a {
    color: var(--c-white);
    border-bottom: 1px solid transparent;
    padding-block: 10px;
}

.crumbs [aria-current] {
    padding-block: 10px;
}

.crumbs [aria-current] {
    color: var(--c-green);
}

@media (hover: hover) and (pointer: fine) {
    .crumbs a:hover {
        border-bottom-color: var(--c-green);
    }
}

/* --------------------------------------------------------------------------
   26. Alternating detail rows
   -------------------------------------------------------------------------- */

.rows {
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 6vw, 82px);
}

.row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
    align-items: center;
}

@media (min-width: 860px) {
    .row {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: clamp(34px, 4vw, 58px);
    }

    .row--flip .row__media {
        order: 2;
    }
}

.row__media {
    position: relative;
    min-width: 0;
    border-radius: 3px;
    overflow: hidden;
    background: var(--c-sand-deep);
}

.row__media img {
    width: 100%;
    aspect-ratio: 10 / 7;
    object-fit: cover;
}

.row__no {
    position: absolute;
    left: 0;
    top: 0;
    background: var(--c-ink);
    color: var(--c-white);
    font-family: var(--f-head);
    font-size: 0.92rem;
    letter-spacing: 0.06em;
    padding: 10px 18px 10px 15px;
}

.row__body {
    min-width: 0;
}

.row__icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--c-green-soft);
    border-radius: 3px;
    margin-bottom: 16px;
}

.row__icon svg {
    width: 26px;
    height: 26px;
    fill: var(--c-green-deep);
}

.row__body h2 {
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    margin-bottom: 12px;
}

.row__body > p {
    color: var(--c-muted);
    margin-bottom: 20px;
}

.row__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

/* Tick list used inside the detail rows */
.ticks {
    list-style: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1px;
    background: var(--c-line);
    border: 1px solid var(--c-line);
    border-radius: 3px;
    overflow: hidden;
}

@media (min-width: 560px) {
    .ticks {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.ticks li {
    background: var(--c-white);
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 15px;
    font-size: 0.89rem;
    color: var(--c-ink);
}

.ticks li::before {
    content: "";
    flex: none;
    width: 9px;
    height: 9px;
    background: var(--c-green);
    transform: skewX(-12deg);
}

/* --------------------------------------------------------------------------
   27. Lead split, mini cards, single shots
   -------------------------------------------------------------------------- */

.lead-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
}

@media (min-width: 900px) {
    .lead-split {
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
        gap: clamp(34px, 4vw, 60px);
    }
}

.lead-split p + p {
    margin-top: 15px;
}

.mini {
    min-width: 0;
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-left: 4px solid var(--c-green);
    border-radius: 3px;
    padding: 26px 24px;
}

.section--sand .mini {
    background: var(--c-white);
}

.mini h3 {
    margin-bottom: 10px;
}

.mini p {
    font-size: 0.93rem;
    line-height: 1.65;
    color: var(--c-muted);
}

.shot {
    margin: 0;
    min-width: 0;
    border-radius: 3px;
    overflow: hidden;
    background: var(--c-sand-deep);
}

.shot img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* --------------------------------------------------------------------------
   28. About story
   -------------------------------------------------------------------------- */

.story {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

@media (min-width: 950px) {
    .story {
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
        gap: clamp(36px, 4.5vw, 64px);
    }
}

.story__media {
    position: relative;
    min-width: 0;
}

.story__media img {
    width: 100%;
    aspect-ratio: 9 / 11;
    object-fit: cover;
    object-position: center 22%;
    border-radius: 3px;
}

.story__body p {
    margin-bottom: 15px;
}

.story__body p:last-child {
    margin-bottom: 0;
}
