/* =================================================================
   Sloophet — public site design system  ·  v2
   Identity: safety-yellow on asphalt-black (demolition / hazard-tape)
   Display: Anton · Body: Archivo · Data/labels: Space Mono
   ================================================================= */

:root {
    --ink: #0e0e0e;
    --ink-2: #17150f;
    --ink-3: #211e18;
    --ink-line: #2c2925;
    --hazard: #ffe000;
    --hazard-deep: #d8be00;
    --paper: #f4f2ec;
    --paper-2: #ece9df;
    --line: #dcd8ce;
    --line-2: #e3ded2;
    --num: #cfc9bc;
    --muted: #8a857a;
    --body: #4f4b43;
    --dark-text: #26241f;
    --on-dark: #c9c4ba;
    --on-dark-dim: #837c6f;
    --wa: #25d366;
    --font-mono: 'Space Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
    --max: 1320px;
    --pad: 32px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body.sh {
    font-family: Archivo, system-ui, sans-serif;
    color: var(--ink);
    background: var(--paper);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.sh ::selection {
    background: var(--hazard);
    color: var(--ink);
}

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

/* :where() keeps this reset at zero specificity so component link
   classes (e.g. .sh-nav__link) always win over it. */
:where(.sh a) {
    color: inherit;
    text-decoration: none;
}

/* Keyboard focus ring for every interactive element */
.sh a:focus-visible,
.sh button:focus-visible,
.sh input:focus-visible,
.sh select:focus-visible,
.sh textarea:focus-visible {
    outline: 3px solid var(--hazard);
    outline-offset: 3px;
    border-radius: 1px;
}

/* Skip-to-content link */
.sh-skip {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 100;
}

.sh-skip:focus {
    left: 12px;
    top: 12px;
    width: auto;
    height: auto;
    padding: 12px 18px;
    background: var(--hazard);
    color: var(--ink);
    font: 800 14px/1 Archivo, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ---- Reveal-on-scroll base states (only when JS is on) ---------- */
html.js .reveal {
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
}

html.js .reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    html.js .reveal,
    html.js .reveal-stagger > *,
    html.js .demo-reveal > * {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ---- Layout helpers -------------------------------------------- */
.sh-wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding-left: var(--pad);
    padding-right: var(--pad);
}

.sh-section {
    padding-top: 104px;
    padding-bottom: 24px;
}

.sh-section--tight {
    padding-top: 72px;
}

.sh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 18px;
}

.sh-eyebrow--light {
    color: var(--hazard);
}

.sh-eyebrow .sh-tick {
    width: 28px;
    height: 3px;
    background: var(--hazard);
    display: inline-block;
}

.sh-h1 {
    font-family: Anton, sans-serif;
    font-weight: 400;
    font-size: clamp(52px, 7.5vw, 104px);
    line-height: 0.86;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.005em;
}

.sh-h2 {
    font-family: Anton, sans-serif;
    font-weight: 400;
    font-size: clamp(38px, 5.2vw, 68px);
    line-height: 0.92;
    margin: 0;
    text-transform: uppercase;
}

.sh-display {
    font-family: Anton, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
}

.sh-lead {
    font-weight: 500;
    font-size: clamp(17px, 1.6vw, 20px);
    line-height: 1.6;
    color: var(--on-dark);
    max-width: 580px;
    margin: 24px 0 0;
}

.sh-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.sh-mono {
    font-family: var(--font-mono);
}

/* ---- Buttons --------------------------------------------------- */
.sh-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--hazard);
    cursor: pointer;
    font-family: Archivo, sans-serif;
    font-weight: 800;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    background: var(--hazard);
    color: var(--ink);
    padding: 17px 26px;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.sh-btn:hover {
    background: var(--ink);
    color: var(--hazard);
    border-color: var(--ink);
    transform: translateY(-2px);
}

.sh-btn--sm {
    font-size: 13px;
    padding: 12px 18px;
}

.sh-btn--lg {
    font-size: 16px;
    padding: 21px 32px;
}

.sh-btn--outline {
    background: transparent;
    border: 2px solid #3a3833;
    color: #fff;
    font-weight: 700;
}

.sh-btn--outline:hover {
    background: var(--hazard);
    border-color: var(--hazard);
    color: var(--ink);
    transform: translateY(-2px);
}

.sh-btn--dark {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}

.sh-btn--dark:hover {
    background: #fff;
    border-color: #fff;
    color: var(--ink);
}

/* on a dark surface: yellow button that inverts to outline-white */
.sh-btn--invert:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.sh-textlink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
    padding-bottom: 6px;
    border-bottom: 3px solid var(--hazard);
    transition:
        gap 0.2s ease,
        border-color 0.2s ease;
}

.sh-textlink:hover {
    gap: 14px;
    border-color: var(--ink);
}

.sh-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--on-dark-dim);
    margin-bottom: 28px;
    transition:
        gap 0.2s ease,
        color 0.2s ease;
}

.sh-back:hover {
    color: var(--hazard);
    gap: 14px;
}

/* ---- Hazard stripe & marquee ----------------------------------- */
.sh-hazard {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: repeating-linear-gradient(45deg, var(--ink) 0 16px, var(--hazard) 16px 32px);
    z-index: 3;
}

.sh-hazard--sm {
    height: 8px;
    background: repeating-linear-gradient(45deg, var(--ink) 0 12px, var(--hazard) 12px 24px);
}

.sh-marquee {
    background: var(--hazard);
    overflow: hidden;
    border-top: 3px solid var(--ink);
    border-bottom: 3px solid var(--ink);
}

.sh-marquee__track {
    display: flex;
    width: max-content;
    padding: 14px 0;
    will-change: transform;
}

.sh-marquee__seq {
    display: flex;
    align-items: center;
    flex: none;
}

.sh-marquee__word {
    font-family: Anton, sans-serif;
    font-size: 26px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--ink);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.sh-marquee__word::after {
    content: '✦';
    font-size: 16px;
    margin: 0 36px;
    color: var(--ink);
    opacity: 0.55;
}

/* ---- Top contact bar ------------------------------------------- */
.sh-topbar {
    background: var(--ink-2);
    border-bottom: 1px solid var(--ink-line);
    color: var(--on-dark);
}

.sh-topbar__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.sh-topbar__group {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.sh-topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.03em;
    color: var(--on-dark);
    padding: 8px 0;
    white-space: nowrap;
    transition: color 0.18s ease;
}

.sh-topbar__item svg {
    width: 15px;
    height: 15px;
    color: var(--hazard);
    flex: none;
}

a.sh-topbar__item:hover {
    color: #fff;
}

/* ---- Header ---------------------------------------------------- */
.sh-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--ink);
    color: #fff;
    border-bottom: 1px solid var(--ink-line);
    transition: box-shadow 0.25s ease;
}

.sh-header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 3px;
    background: var(--hazard);
}

.sh-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.sh-header__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sh-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
    font-family: Anton, sans-serif;
    font-size: 30px;
    letter-spacing: 0.02em;
    line-height: 1;
}

.sh-logo .a {
    color: #fff;
}
.sh-logo .b {
    color: var(--hazard);
}
.sh-logo .c {
    color: var(--hazard);
    margin-left: 1px;
}

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

.sh-nav__link {
    position: relative;
    font-weight: 600;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.06em;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 14px;
}

.sh-nav__link::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 100%;
    bottom: 4px;
    height: 2px;
    background: var(--hazard);
    transition: right 0.28s cubic-bezier(0.4, 0, 0.1, 1);
}

.sh-nav__link:hover::after,
.sh-nav__link[aria-current='page']::after {
    right: 14px;
}

.sh-nav__link[aria-current='page'] {
    color: var(--hazard);
}

.sh-nav .sh-btn {
    margin-left: 12px;
}

.sh-nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    padding: 8px;
}

.sh-nav__toggle svg {
    width: 28px;
    height: 28px;
    display: block;
}

/* ---- Hero (home) ----------------------------------------------- */
.sh-hero {
    position: relative;
    background: var(--ink);
    color: #fff;
    overflow: hidden;
}

.sh-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 80% at 85% 0%, rgba(255, 224, 0, 0.07), transparent 55%),
        linear-gradient(180deg, var(--ink-2), var(--ink));
}

.sh-hero__inner {
    position: relative;
    max-width: var(--max);
    margin: 0 auto;
    padding: 88px var(--pad) 96px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.sh-hero__title {
    font-family: Anton, sans-serif;
    font-weight: 400;
    font-size: clamp(80px, 11.5vw, 172px);
    line-height: 0.74;
    letter-spacing: -0.015em;
    margin: 0;
    text-transform: uppercase;
}

.sh-hero__title .accent {
    color: var(--hazard);
}

.sh-hero__intro {
    font-weight: 500;
    font-size: clamp(18px, 1.7vw, 22px);
    line-height: 1.5;
    color: var(--on-dark);
    max-width: 520px;
    margin: 26px 0 36px;
}

.sh-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sh-hero__media {
    position: relative;
    aspect-ratio: 4 / 5;
    min-height: 360px;
}

.sh-hero__badge {
    position: absolute;
    bottom: -20px;
    right: -14px;
    background: var(--hazard);
    color: var(--ink);
    font-family: Anton, sans-serif;
    font-size: 40px;
    line-height: 0.85;
    padding: 16px 18px;
    transform: rotate(-3deg);
    z-index: 4;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.sh-hero__badge span {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ---- Wrecking-ball brand mark ---------------------------------- */
.sh-wrecker {
    position: relative;
    width: 100%;
}

.sh-wrecker svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

.sh-wrecker__arm {
    will-change: transform;
}

.sh-hero__media {
    background:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.025) 0 16px, transparent 16px 32px),
        linear-gradient(165deg, #1d1b16, #0b0a08);
    border: 1px solid var(--ink-line);
    overflow: visible;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.sh-hero__wrecker {
    width: 60%;
    max-width: 280px;
    margin-top: 4px;
}

/* Hero demolition scene fills the media panel */
.sh-demo {
    position: relative;
    width: 100%;
    height: 100%;
}

.sh-demo svg {
    display: block;
    width: 100%;
    height: 100%;
}

.sh-hero__demo {
    position: absolute;
    inset: 0;
}

/* Hero copy is revealed by the wall impact (hidden until then when JS is on) */
html.js .demo-reveal > * {
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
}

/* diensten head with a brand mark beside the title */
.sh-page-head__inner--split {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 40px;
    align-items: center;
}

.sh-page-head__wrecker {
    width: 78%;
    max-width: 240px;
    margin: 0 auto;
}

/* ---- Section shells -------------------------------------------- */
.sh-band {
    background: var(--ink);
    color: #fff;
}

.sh-page-head {
    position: relative;
    background: var(--ink);
    color: #fff;
    overflow: hidden;
}

.sh-page-head::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--ink-2), var(--ink));
}

.sh-page-head__inner {
    position: relative;
    max-width: var(--max);
    margin: 0 auto;
    padding: 80px var(--pad) 72px;
}

/* ---- Intro / feature split ------------------------------------- */
.sh-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.sh-intro__body p {
    font-weight: 500;
    font-size: 17px;
    line-height: 1.7;
    color: var(--body);
    margin: 0 0 18px;
}

.sh-intro__body p.lead {
    font-size: 20px;
    color: var(--dark-text);
}

.sh-figure {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--paper-2);
}

.sh-figure--tall {
    aspect-ratio: 3 / 4;
}

.sh-figure--wide {
    aspect-ratio: 16 / 8;
}

/* ---- USP / why band -------------------------------------------- */
.sh-usps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0;
    border-top: 1px solid var(--ink-line);
    border-left: 1px solid var(--ink-line);
}

.sh-usp {
    padding: 36px 30px 40px;
    border-right: 1px solid var(--ink-line);
    border-bottom: 1px solid var(--ink-line);
}

.sh-usp__icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--hazard);
    margin-bottom: 20px;
}

.sh-usp__icon svg {
    width: 32px;
    height: 32px;
}

.sh-usp__title {
    font-family: Anton, sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}

.sh-usp__text {
    font-weight: 500;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--on-dark);
}

/* ---- Stats ----------------------------------------------------- */
.sh-stats {
    background: var(--ink);
    color: #fff;
}

.sh-stats__grid {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.sh-stat {
    padding: 52px 28px;
    border-right: 1px solid var(--ink-line);
}

.sh-stat:last-child {
    border-right: none;
}

.sh-stat__num {
    font-family: Anton, sans-serif;
    font-size: clamp(48px, 5vw, 64px);
    line-height: 1;
    color: var(--hazard);
}

.sh-stat__label {
    font-family: var(--font-mono);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--on-dark);
    margin-top: 14px;
}

/* ---- Service grid + cards -------------------------------------- */
.sh-grid-services {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 0;
    border: 1px solid var(--line);
    background: var(--line);
}

.sh-grid-services--lg {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}

.sh-service {
    text-align: left;
    background: var(--paper);
    cursor: pointer;
    padding: 34px 30px 30px;
    position: relative;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.sh-service::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--hazard);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.25s ease;
}

.sh-service:hover::before {
    transform: scaleY(1);
}

.sh-service--lg {
    padding: 40px 34px 34px;
    min-height: 250px;
}

.sh-service:hover {
    background: var(--ink);
}

.sh-service__top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.sh-service__no {
    font-family: Anton, sans-serif;
    font-size: 44px;
    line-height: 1;
    color: var(--num);
    transition: color 0.2s ease;
}

.sh-service--lg .sh-service__no {
    font-size: 52px;
}

.sh-service:hover .sh-service__no {
    color: var(--hazard);
}

.sh-service__name {
    font-family: Anton, sans-serif;
    font-size: 23px;
    line-height: 1.04;
    text-transform: uppercase;
    margin-top: 16px;
    transition: color 0.2s ease;
}

.sh-service--lg .sh-service__name {
    font-size: 27px;
}

.sh-service:hover .sh-service__name {
    color: #fff;
}

.sh-service__en {
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-transform: uppercase;
    margin-top: 8px;
}

.sh-service__tagline {
    font-weight: 500;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--body);
    margin-top: 12px;
    flex: 1;
    transition: color 0.2s ease;
}

.sh-service:hover .sh-service__tagline {
    color: var(--on-dark);
}

.sh-service__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
}

.sh-meta {
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.08em;
    color: var(--muted);
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.sh-service:hover .sh-meta {
    color: var(--on-dark);
}

.sh-service__arrow,
.sh-service__cta {
    font-family: Anton, sans-serif;
    font-size: 18px;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.sh-service__cta {
    font-size: 20px;
    margin-top: 18px;
}

.sh-service:hover .sh-service__arrow,
.sh-service:hover .sh-service__cta {
    color: var(--hazard);
}

/* ---- Service tiles (image-led, diensten index) ----------------- */
.sh-grid-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.sh-stile {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line-2);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.sh-stile:hover {
    transform: translateY(-6px);
    border-color: var(--ink);
    box-shadow: 0 20px 40px rgba(14, 14, 14, 0.16);
}

.sh-stile__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--ink);
}

.sh-stile__media .sh-ph,
.sh-stile__media .sh-ph__img {
    transition: transform 0.5s cubic-bezier(0.2, 0, 0.1, 1);
}

.sh-stile:hover .sh-stile__media .sh-ph,
.sh-stile:hover .sh-stile__media .sh-ph__img {
    transform: scale(1.06);
}

.sh-stile__no {
    position: absolute;
    top: 12px;
    left: 16px;
    z-index: 2;
    font-family: Anton, sans-serif;
    font-size: 36px;
    line-height: 1;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.sh-stile__en {
    position: absolute;
    bottom: 14px;
    left: 16px;
    z-index: 2;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--hazard);
}

.sh-stile__body {
    padding: 26px 26px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sh-stile__name {
    font-family: Anton, sans-serif;
    font-size: 26px;
    line-height: 1.02;
    text-transform: uppercase;
}

.sh-stile__tagline {
    font-weight: 500;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--body);
    margin-top: 12px;
    flex: 1;
}

.sh-stile__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.sh-stile__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
    transition: gap 0.2s ease;
}

.sh-stile:hover .sh-stile__cta {
    gap: 14px;
}

/* ---- Project grid + cards -------------------------------------- */
.sh-grid-projects {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.sh-project {
    text-align: left;
    background: #fff;
    border: 1px solid var(--line-2);
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.sh-project:hover {
    border-color: var(--ink);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(14, 14, 14, 0.16);
}

.sh-project__media {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.sh-project__media .sh-ph__img,
.sh-project__media .sh-ph {
    transition: transform 0.45s cubic-bezier(0.2, 0, 0.1, 1);
}

.sh-project:hover .sh-ph__img,
.sh-project:hover .sh-project__media .sh-ph {
    transform: scale(1.05);
}

.sh-project__badge {
    position: absolute;
    top: 18px;
    right: 0;
    background: var(--ink);
    color: var(--hazard);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 8px 13px;
    z-index: 2;
}

.sh-project__body {
    padding: 24px 24px 26px;
}

.sh-project__meta {
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.06em;
    color: var(--muted);
    text-transform: uppercase;
}

.sh-project__title {
    font-family: Anton, sans-serif;
    font-size: 25px;
    line-height: 1.02;
    text-transform: uppercase;
    margin: 12px 0 0;
    transition: color 0.2s ease;
}

.sh-project:hover .sh-project__title {
    color: var(--ink);
}

.sh-project__blurb {
    font-weight: 500;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--body);
    margin-top: 10px;
}

/* ---- Media placeholder ----------------------------------------- */
.sh-ph {
    position: absolute;
    inset: 0;
    background-color: #c3bdb1;
    background-image:
        repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.04) 0 14px, transparent 14px 28px),
        linear-gradient(140deg, #d3cdc1, #b3aca1);
    overflow: hidden;
}

.sh-ph--dark {
    background:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0 14px, transparent 14px 28px),
        linear-gradient(140deg, var(--ink-3), var(--ink));
}

.sh-ph--img {
    background: none;
}

.sh-ph__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sh-ph__label {
    position: absolute;
    bottom: 14px;
    left: 16px;
    font-family: var(--font-mono);
    font-weight: 400;
    font-size: 10px;
    line-height: 1.3;
    letter-spacing: 0.12em;
    color: var(--on-dark-dim);
    text-transform: uppercase;
}

/* ---- Process --------------------------------------------------- */
.sh-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0;
    border-top: 3px solid var(--ink);
}

.sh-step {
    position: relative;
    padding: 34px 28px 36px;
    border-right: 1px solid var(--line);
}

.sh-step::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--hazard);
    transition: width 0.3s ease;
}

.sh-step:hover::before {
    width: 100%;
}

.sh-step:last-child {
    border-right: none;
}

.sh-step__no {
    font-family: Anton, sans-serif;
    font-size: 34px;
    color: var(--ink);
}

.sh-step__no sup {
    color: var(--hazard);
    font-size: 18px;
}

.sh-step__title {
    font-family: Anton, sans-serif;
    font-size: 21px;
    text-transform: uppercase;
    margin: 12px 0 10px;
}

.sh-step__text {
    font-weight: 500;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--body);
    margin: 0;
}

/* ---- CTA blocks ------------------------------------------------ */
.sh-cta {
    position: relative;
    background: var(--ink);
    color: #fff;
    padding: 64px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    flex-wrap: wrap;
    overflow: hidden;
}

.sh-cta__deco {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: repeating-linear-gradient(45deg, var(--ink-2) 0 18px, var(--ink-3) 18px 36px);
    z-index: 0;
}

.sh-cta__body {
    position: relative;
    z-index: 1;
    max-width: 480px;
}

.sh-cta__text {
    font-weight: 500;
    font-size: 17px;
    line-height: 1.55;
    color: var(--on-dark);
    margin: 16px 0 0;
}

.sh-cta__title {
    font-family: Anton, sans-serif;
    font-weight: 400;
    font-size: clamp(34px, 4.6vw, 56px);
    line-height: 0.95;
    margin: 0;
    text-transform: uppercase;
}

.sh-cta .sh-btn {
    position: relative;
    z-index: 2;
    flex: none;
}

.sh-cta--yellow {
    background: var(--hazard);
    color: var(--ink);
    padding: 52px 44px;
}

.sh-cta--yellow .sh-cta__title {
    font-size: clamp(30px, 4vw, 48px);
}

/* ---- Service detail -------------------------------------------- */
.sh-svc-hero {
    position: relative;
    background: var(--ink);
    color: #fff;
    overflow: hidden;
}

.sh-svc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--ink-2), var(--ink));
}

.sh-svc-hero__inner {
    position: relative;
    max-width: var(--max);
    margin: 0 auto;
    padding: 64px var(--pad) 68px;
}

.sh-svc-hero__row {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.sh-svc-hero__no {
    font-family: Anton, sans-serif;
    font-size: clamp(80px, 12vw, 168px);
    line-height: 0.78;
    color: var(--hazard);
}

.sh-svc-hero__main {
    flex: 1;
    min-width: 280px;
}

.sh-svc-hero__title {
    font-family: Anton, sans-serif;
    font-weight: 400;
    font-size: clamp(46px, 6.5vw, 90px);
    line-height: 0.9;
    margin: 0;
    text-transform: uppercase;
}

.sh-svc-hero__en {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.12em;
    color: var(--hazard);
    text-transform: uppercase;
    margin-top: 14px;
}

.sh-svc-hero__desc {
    font-weight: 500;
    font-size: 19px;
    line-height: 1.6;
    color: var(--on-dark);
    max-width: 640px;
    margin: 24px 0 0;
}

.sh-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}

.sh-pointlist {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--line);
}

.sh-pointlist__item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
}

.sh-pointlist__mark {
    flex: none;
    width: 12px;
    height: 12px;
    margin-top: 5px;
    background: var(--hazard);
    border: 1.5px solid var(--ink);
}

.sh-pointlist__text {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: var(--dark-text);
}

.sh-aside-card {
    position: relative;
    background: var(--ink);
    color: #fff;
    padding: 40px 34px;
    align-self: start;
    overflow: hidden;
}

.sh-aside-card__title {
    font-family: Anton, sans-serif;
    font-size: 26px;
    text-transform: uppercase;
    color: var(--hazard);
}

.sh-aside-card__text {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.6;
    color: var(--on-dark);
    margin: 16px 0 24px;
}

.sh-banner {
    background: var(--hazard);
    border-top: 3px solid var(--ink);
    border-bottom: 3px solid var(--ink);
    overflow: hidden;
}

.sh-banner__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 16px var(--pad);
    font-family: Anton, sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 14px;
}

.sh-banner__mark {
    color: var(--ink);
}

/* ---- Project detail -------------------------------------------- */
.sh-proj-badge {
    display: inline-block;
    background: var(--hazard);
    border: none;
    cursor: pointer;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.06em;
    color: var(--ink);
    text-transform: uppercase;
    transition: background 0.2s ease;
    padding: 8px 13px;
    margin-bottom: 20px;
}

.sh-proj-badge:hover {
    background: #fff;
}

.sh-proj-meta {
    font-family: var(--font-mono);
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.06em;
    color: var(--on-dark);
    text-transform: uppercase;
    margin-top: 18px;
}

.sh-split-detail {
    display: grid;
    grid-template-columns: 1.6fr 0.9fr;
    gap: 56px;
}

.sh-prose h2 {
    font-family: Anton, sans-serif;
    font-weight: 400;
    font-size: 30px;
    text-transform: uppercase;
    margin: 0 0 18px;
}

.sh-prose p {
    font-weight: 500;
    font-size: 17px;
    line-height: 1.7;
    color: var(--body);
    margin: 0 0 18px;
}

.sh-prose p.lead {
    font-size: 19px;
    color: var(--dark-text);
}

.sh-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.sh-gallery__item {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.sh-datalist {
    border-top: 3px solid var(--ink);
    padding-top: 20px;
}

.sh-datalist__label {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.12em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.sh-datarow {
    display: flex;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    gap: 16px;
}

.sh-datarow dt {
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1.3;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0;
}

.sh-datarow dd {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
    margin: 0;
    text-align: right;
}

.sh-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.sh-tag {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--ink);
    text-transform: uppercase;
    border: 1.5px solid var(--ink);
    padding: 9px 12px;
}

.sh-service-link {
    margin-top: 26px;
    width: 100%;
    text-align: left;
    background: var(--ink);
    border: none;
    cursor: pointer;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: background 0.2s ease;
    color: #fff;
}

.sh-service-link:hover {
    background: var(--hazard);
}

.sh-service-link__kicker {
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.sh-service-link:hover .sh-service-link__kicker {
    color: rgba(14, 14, 14, 0.7);
}

.sh-service-link__name {
    font-family: Anton, sans-serif;
    font-size: 21px;
    color: var(--hazard);
    text-transform: uppercase;
}

.sh-service-link:hover .sh-service-link__name {
    color: var(--ink);
}

.sh-service-link__arrow {
    font-family: Anton, sans-serif;
    font-size: 22px;
    color: #fff;
}

.sh-service-link:hover .sh-service-link__arrow {
    color: var(--ink);
}

/* Related projects (dark) */
.sh-related {
    background: var(--ink);
    color: #fff;
}

.sh-related__title {
    font-family: Anton, sans-serif;
    font-weight: 400;
    font-size: 32px;
    text-transform: uppercase;
    margin: 0 0 28px;
    color: var(--hazard);
}

.sh-grid-related {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 22px;
}

.sh-project--dark {
    background: var(--ink-2);
    border: 1px solid var(--ink-line);
}

.sh-project--dark:hover {
    border-color: var(--hazard);
    transform: translateY(-6px);
    box-shadow: none;
}

.sh-project--dark .sh-project__title {
    color: #fff;
    font-size: 21px;
}

.sh-project--dark:hover .sh-project__title {
    color: var(--hazard);
}

/* ---- About ----------------------------------------------------- */
.sh-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0;
    border-top: 3px solid var(--ink);
}

.sh-value {
    padding: 32px 26px;
    border-right: 1px solid var(--line);
}

.sh-value:last-child {
    border-right: none;
}

.sh-value__title {
    font-family: Anton, sans-serif;
    font-size: 21px;
    text-transform: uppercase;
    color: var(--ink);
}

.sh-value__text {
    font-weight: 500;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--body);
    margin: 12px 0 0;
}

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

.sh-certs__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 48px var(--pad);
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.sh-certs__label {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.14em;
    color: var(--muted);
    text-transform: uppercase;
    margin-right: 10px;
}

.sh-cert {
    font-family: Anton, sans-serif;
    font-size: 22px;
    color: #fff;
    border: 2px solid var(--ink-line);
    padding: 11px 17px;
    text-transform: uppercase;
    transition:
        border-color 0.2s ease,
        color 0.2s ease;
}

.sh-cert:hover {
    border-color: var(--hazard);
    color: var(--hazard);
}

/* ---- Contact --------------------------------------------------- */
.sh-contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
}

.sh-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sh-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sh-field__label {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.1em;
    color: var(--body);
    text-transform: uppercase;
}

.sh-input,
.sh-select,
.sh-textarea {
    font-family: Archivo, sans-serif;
    font-weight: 500;
    font-size: 15px;
    padding: 15px 14px;
    border: 2px solid #d3cdbf;
    background: #fff;
    outline: none;
    width: 100%;
    transition: border-color 0.15s ease;
}

.sh-textarea {
    line-height: 1.5;
    resize: vertical;
}

.sh-input:focus,
.sh-select:focus,
.sh-textarea:focus {
    border-color: var(--ink);
    outline: none;
}

.sh-input[aria-invalid='true'],
.sh-select[aria-invalid='true'],
.sh-textarea[aria-invalid='true'] {
    border-color: #c0341d;
}

.sh-field__error {
    font-weight: 600;
    font-size: 12px;
    color: #c0341d;
}

.sh-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.sh-success {
    background: var(--hazard);
    padding: 52px 44px;
}

.sh-success__title {
    font-family: Anton, sans-serif;
    font-size: 46px;
    line-height: 0.95;
    text-transform: uppercase;
}

.sh-success__text {
    font-weight: 500;
    font-size: 17px;
    line-height: 1.6;
    color: var(--dark-text);
    margin: 18px 0 0;
    max-width: 440px;
}

.sh-info {
    border-top: 3px solid var(--ink);
    padding-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sh-info__label {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.12em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.sh-info__big {
    font-family: Anton, sans-serif;
    font-size: 28px;
    transition: color 0.2s ease;
}

a.sh-info__big:hover {
    color: var(--hazard-deep);
}

.sh-info__value {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
}

.sh-info__box {
    background: var(--ink);
    color: #fff;
    padding: 22px 24px;
}

.sh-info__box .sh-info__label {
    color: var(--hazard);
    margin-bottom: 8px;
}

.sh-info__box-text {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.55;
    color: var(--on-dark);
}

/* ---- Filter chips ---------------------------------------------- */
.sh-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 38px;
}

.sh-chip {
    cursor: pointer;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 12px 16px;
    border: 2px solid var(--ink);
    background: transparent;
    color: var(--ink);
    transition:
        background 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease;
}

.sh-chip:hover {
    background: var(--ink);
    color: var(--hazard);
    transform: translateY(-2px);
}

.sh-chip[aria-current='true'] {
    background: var(--ink);
    color: var(--hazard);
}

/* ---- Sticky social rail + WhatsApp FAB ------------------------- */
.sh-social {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.sh-social__link {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: var(--ink);
    color: #fff;
    border-bottom: 1px solid var(--ink-line);
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.sh-social__link:last-child {
    border-bottom: none;
}

.sh-social__link svg {
    width: 20px;
    height: 20px;
}

.sh-social__link:hover {
    background: var(--hazard);
    color: var(--ink);
}

.sh-social__link--wa:hover {
    background: var(--wa);
    color: #fff;
}

.sh-fab {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 45;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--wa);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s ease;
}

.sh-fab:hover {
    transform: scale(1.08);
}

.sh-fab svg {
    width: 34px;
    height: 34px;
}

.sh-fab::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--wa);
    z-index: -1;
    animation: shpulse 2.4s ease-out infinite;
}

@keyframes shpulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70%,
    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sh-fab::before {
        animation: none;
    }
}

/* ---- Footer ---------------------------------------------------- */
.sh-footer {
    position: relative;
    background: var(--ink);
    color: #fff;
}

.sh-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(45deg, var(--ink) 0 14px, var(--hazard) 14px 28px);
}

.sh-footer__top {
    max-width: var(--max);
    margin: 0 auto;
    padding: 72px var(--pad) 36px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 44px;
}

.sh-footer__logo {
    display: flex;
    align-items: baseline;
    gap: 1px;
    font-family: Anton, sans-serif;
    font-size: 36px;
    line-height: 1;
}

.sh-footer__logo .a {
    color: #fff;
}
.sh-footer__logo .b {
    color: var(--hazard);
}
.sh-footer__logo .c {
    color: var(--hazard);
}

.sh-footer__tagline {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.6;
    color: var(--on-dark-dim);
    max-width: 340px;
    margin: 18px 0 0;
}

.sh-footer__heading {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.14em;
    color: var(--hazard);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.sh-footer__list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    align-items: flex-start;
}

.sh-footer__link {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    color: var(--on-dark);
    transition: color 0.18s ease;
}

.sh-footer__link:hover {
    color: var(--hazard);
}

.sh-footer__contact {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.6;
    color: var(--on-dark);
    margin-top: 8px;
}

.sh-footer__bar {
    border-top: 1px solid var(--ink-line);
}

.sh-footer__bar-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 20px var(--pad);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1.5;
    color: var(--on-dark-dim);
}

/* ---- Utilities ------------------------------------------------- */
.sh-mt-40 {
    margin-top: 40px;
}
.sh-mt-50 {
    margin-top: 56px;
}

/* ---- Responsive ------------------------------------------------ */
@media (max-width: 980px) {
    /* Mobile hero order: title → animation → copy → buttons.
       display:contents dissolves the text wrapper so all four can be ordered. */
    .sh-hero__inner {
        display: flex;
        flex-direction: column;
        gap: 28px;
        padding: 48px var(--pad) 60px;
    }
    .demo-reveal {
        display: contents;
    }
    .sh-hero__title {
        order: 1;
    }
    .sh-hero__media {
        order: 2;
        align-self: center;
        aspect-ratio: 4 / 5; /* match the SVG so it fills instead of letterboxing */
        width: 100%;
        max-width: 380px;
        min-height: 0;
    }
    .sh-hero__intro {
        order: 3;
        margin: 0;
        max-width: none;
    }
    .sh-hero__actions {
        order: 4;
    }
    .sh-hero__badge {
        right: 10px;
        bottom: 10px;
    }
    /* Contact bar: drop the working-area + hours and keep phone + email on one line */
    .sh-topbar__item--hide {
        display: none;
    }
    .sh-topbar__inner {
        justify-content: center;
        flex-wrap: nowrap;
    }
    .sh-topbar__group {
        flex-wrap: nowrap;
        gap: 20px;
    }
    .sh-intro,
    .sh-split,
    .sh-split-detail,
    .sh-contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .sh-section {
        padding-top: 72px;
    }
}

@media (max-width: 760px) {
    :root {
        --pad: 20px;
    }
    .sh-social {
        display: none;
    }
    .sh-topbar__inner {
        justify-content: center;
        min-height: 36px;
        flex-wrap: nowrap;
    }
    .sh-topbar__group {
        flex-wrap: nowrap;
        gap: 14px;
    }
    .sh-topbar__item {
        font-size: 11px;
        gap: 6px;
        letter-spacing: 0;
    }
    .sh-topbar__item svg {
        width: 13px;
        height: 13px;
    }
    .sh-topbar__item--hide {
        display: none;
    }
    .sh-page-head__inner--split {
        grid-template-columns: 1fr;
    }
    .sh-page-head__wrecker {
        display: none;
    }
    .sh-nav {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--ink);
        border-bottom: 3px solid var(--hazard);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px var(--pad) 20px;
        display: none;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4);
    }
    .sh-nav.is-open {
        display: flex;
    }
    .sh-nav__link {
        padding: 15px 0;
        border-bottom: 1px solid var(--ink-line);
        font-size: 15px;
    }
    .sh-nav__link::after {
        display: none;
    }
    .sh-nav .sh-btn {
        margin: 14px 0 0;
        justify-content: center;
    }
    .sh-nav__toggle {
        display: inline-flex;
    }
    .sh-field-row {
        grid-template-columns: 1fr;
    }
    .sh-footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .sh-cta,
    .sh-cta--yellow {
        padding: 40px 26px;
    }
    .sh-cta__deco {
        display: none;
    }
    .sh-stat {
        border-right: none;
        border-bottom: 1px solid var(--ink-line);
    }
    .sh-fab {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 480px) {
    .sh-success__title {
        font-size: 36px;
    }
}
