/* Ryqovex — Homepage Modular Bento Columns (Layout 72) */

.rq-modular {
    overflow-x: hidden;
    position: relative;
    z-index: 1;
}

.rq-mod {
    padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 3vw, 2rem);
    max-width: 1280px;
    margin: 0 auto;
}

.rq-mod-tag {
    display: inline-block;
    font-family: var(--rq-font-ui);
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--rq-steel);
    margin-bottom: 0.75rem;
}

/* §01 Hero Bento Mosaic */
.rq-mod--hero { padding-top: 2rem; max-width: none; padding-left: clamp(1rem, 3vw, 2rem); padding-right: clamp(1rem, 3vw, 2rem); }

.rq-bento-hero__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto auto;
    gap: var(--rq-gutter);
    max-width: 1280px;
    margin: 0 auto;
}

.rq-bento-cell {
    background: var(--rq-bg-cell);
    border: 1px solid var(--rq-border);
    border-radius: var(--rq-radius);
    overflow: hidden;
    position: relative;
    z-index: 1;
    pointer-events: auto;
    transition: transform 0.4s var(--rq-ease), box-shadow 0.4s, border-color 0.3s;
}
.rq-bento-cell:hover {
    transform: translateY(-3px);
    box-shadow: var(--rq-shadow);
    border-color: rgba(232, 168, 73, 0.35);
}

.rq-bento-cell--title {
    grid-column: 1 / 7;
    grid-row: 1 / 2;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rq-bento-hero__h1 {
    font-family: var(--rq-font-serif);
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.08;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
}
.rq-bento-hero__accent { color: var(--rq-amber); }
.rq-bento-hero__sub {
    color: var(--rq-text-muted);
    font-size: clamp(14px, 2vw, 16px);
    margin: 0 0 1.5rem;
    max-width: 420px;
}

.rq-bento-cell--tall {
    grid-column: 7 / 13;
    grid-row: 1 / 3;
    padding: 0;
}
.rq-bento-cell--tall img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.rq-bento-cell--stat {
    grid-column: span 3;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.rq-bento-cell--stat strong {
    font-family: var(--rq-font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--rq-amber);
    line-height: 1;
}
.rq-bento-cell--stat span {
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--rq-text-muted);
    margin-top: 0.35rem;
}

.rq-bento-cell--img {
    grid-column: span 4;
    padding: 0;
    aspect-ratio: 3/2;
}
.rq-bento-cell--img img { width: 100%; height: 100%; object-fit: cover; }

.rq-bento-cell--quote {
    grid-column: span 4;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.rq-bento-cell--quote blockquote {
    font-family: var(--rq-font-serif);
    font-size: 1.05rem;
    margin: 0 0 0.5rem;
    font-style: italic;
}
.rq-bento-cell--quote cite { font-size: 11px; color: var(--rq-text-muted); font-style: normal; }

/* §02 Horizontal Scroll Zone */
.rq-mod--scroll { max-width: none; padding-left: 0; padding-right: 0; }

.rq-scroll-zone__head {
    max-width: 1280px;
    margin: 0 auto 2rem;
    padding: 0 clamp(1rem, 3vw, 2rem);
}
.rq-scroll-zone__head h2 {
    font-family: var(--rq-font-serif);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin: 0 0 0.5rem;
}
.rq-scroll-zone__head h2 em { font-style: normal; color: var(--rq-amber); }
.rq-scroll-zone__head p { color: var(--rq-text-muted); margin: 0; }

.rq-scroll-zone {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0 clamp(1rem, 3vw, 2rem) 1rem;
    cursor: grab;
}
.rq-scroll-zone.is-dragging { cursor: grabbing; }
.rq-scroll-zone::-webkit-scrollbar { height: 4px; }
.rq-scroll-zone::-webkit-scrollbar-thumb { background: var(--rq-amber); border-radius: 2px; }

.rq-scroll-zone__track {
    display: flex;
    gap: var(--rq-gutter);
    width: max-content;
    padding-bottom: 0.5rem;
}

.rq-route-card {
    flex: 0 0 min(380px, 85vw);
    scroll-snap-align: start;
    background: var(--rq-bg-cell);
    border: 1px solid var(--rq-border);
    border-radius: var(--rq-radius);
    overflow: hidden;
    transition: transform 0.35s var(--rq-ease), border-color 0.3s;
    text-align: left;
    padding: 0;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 2;
    color: inherit;
    font: inherit;
}
.rq-route-card:hover,
.rq-route-card.is-active {
    transform: scale(1.02);
    border-color: var(--rq-amber);
}
.rq-route-card.is-active {
    box-shadow: 0 0 0 1px var(--rq-amber), var(--rq-shadow);
}
.rq-route-card__img { aspect-ratio: 16/10; overflow: hidden; }
.rq-route-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--rq-ease); }
.rq-route-card:hover .rq-route-card__img img { transform: scale(1.05); }
.rq-route-card__body { padding: 1.25rem; }
.rq-route-card__num {
    font-family: var(--rq-font-display);
    font-size: 11px;
    color: var(--rq-amber);
    letter-spacing: 0.1em;
}
.rq-route-card__body h3 { font-family: var(--rq-font-serif); margin: 0.35rem 0; font-size: 1.2rem; }
.rq-route-card__body p { font-size: 13px; color: var(--rq-text-muted); margin: 0 0 0.75rem; line-height: 1.6; }
.rq-route-card__spec {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rq-steel);
}

.rq-route-preview {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1280px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: var(--rq-bg-cell);
    border: 1px solid var(--rq-border);
    border-radius: var(--rq-radius);
}
.rq-route-preview__img {
    margin: 0;
    border-radius: var(--rq-radius);
    overflow: hidden;
    aspect-ratio: 16/10;
}
.rq-route-preview__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}
.rq-route-preview__label {
    font-family: var(--rq-font-display);
    font-size: 1.4rem;
    color: var(--rq-amber);
    display: block;
    margin-bottom: 0.5rem;
}
.rq-route-preview__desc {
    color: var(--rq-text-muted);
    margin: 0 0 0.75rem;
    font-size: 14px;
    line-height: 1.65;
}
.rq-route-preview__spec {
    display: block;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rq-steel);
    margin-bottom: 1rem;
}

/* §03 Pinned Manifesto */
.rq-mod--pinned {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.rq-pinned-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
    width: 100%;
}

.rq-pinned-aside {
    position: sticky;
    top: calc(var(--rq-nav-h) + 2rem);
}
.rq-pinned-aside h2 {
    font-family: var(--rq-font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin: 0 0 1rem;
    line-height: 1.15;
}
.rq-pinned-aside h2 em { font-style: normal; color: var(--rq-amber); }
.rq-pinned-aside p { color: var(--rq-text-muted); margin: 0; }

.rq-pinned-cells {
    display: flex;
    flex-direction: column;
    gap: var(--rq-gutter);
}

.rq-manifesto-cell {
    padding: 2rem;
    background: var(--rq-bg-cell);
    border: 1px solid var(--rq-border);
    border-radius: var(--rq-radius);
    transition: transform 0.35s var(--rq-ease), margin-left 0.35s, border-color 0.3s;
    text-align: left;
    width: 100%;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 2;
    color: inherit;
    font: inherit;
}
.rq-manifesto-cell:nth-child(2) { margin-left: 2rem; }
.rq-manifesto-cell:nth-child(3) { margin-left: 4rem; }
.rq-manifesto-cell:hover,
.rq-manifesto-cell.is-active {
    transform: translateX(8px);
    border-color: rgba(232, 168, 73, 0.4);
}
.rq-manifesto-cell.is-active {
    background: rgba(232, 168, 73, 0.06);
}
.rq-manifesto-cell p {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s var(--rq-ease), opacity 0.35s, margin 0.35s;
    margin: 0;
}
.rq-manifesto-cell.is-active p {
    max-height: 120px;
    opacity: 1;
    margin-top: 0.75rem;
}
.rq-manifesto-cell__num {
    font-family: var(--rq-font-display);
    font-size: 12px;
    color: var(--rq-amber);
    letter-spacing: 0.15em;
}
.rq-manifesto-cell h3 {
    font-family: var(--rq-font-serif);
    font-size: 1.25rem;
    margin: 0.5rem 0 0;
}
.rq-manifesto-cell.is-active p,
.rq-manifesto-cell p.rq-manifesto-cell__text {
    color: var(--rq-text-muted);
    font-size: 14px;
}

/* §04 Interactive Spec Explorer */
.rq-spec-explorer__head h2 {
    font-family: var(--rq-font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin: 0 0 2rem;
}
.rq-spec-explorer__head h2 em { font-style: normal; color: var(--rq-amber); }

.rq-spec-explorer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.rq-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--rq-gutter);
}

.rq-spec-module {
    text-align: left;
    padding: 1.25rem;
    background: var(--rq-bg-cell);
    border: 1px solid var(--rq-border);
    border-radius: var(--rq-radius);
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 2;
    transition: all 0.3s var(--rq-ease);
    font: inherit;
    color: inherit;
}
.rq-spec-module:hover,
.rq-spec-module.is-active {
    border-color: var(--rq-amber);
    background: rgba(232, 168, 73, 0.08);
    transform: scale(1.03);
}
.rq-spec-module__label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rq-steel);
    margin-bottom: 0.35rem;
}
.rq-spec-module__value {
    font-family: var(--rq-font-display);
    font-size: 1rem;
    color: var(--rq-text);
}

.rq-spec-detail {
    position: sticky;
    top: calc(var(--rq-nav-h) + 2rem);
    padding: 2.5rem;
    background: var(--rq-bg-panel);
    border: 1px solid var(--rq-border);
    border-radius: var(--rq-radius);
    min-height: 280px;
}
.rq-spec-detail__panel { display: none; }
.rq-spec-detail__panel.is-active { display: block; animation: rqSpecFade 0.4s var(--rq-ease); }
@keyframes rqSpecFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.rq-spec-detail__panel h3 {
    font-family: var(--rq-font-serif);
    font-size: 1.5rem;
    margin: 0 0 1rem;
    color: var(--rq-amber);
}
.rq-spec-detail__main {
    font-family: var(--rq-font-display);
    font-size: 1.8rem;
    margin: 0 0 0.5rem;
}
.rq-spec-detail__sub { color: var(--rq-text-muted); margin: 0; }

/* §05 Experimental Distortion */
.rq-mod--experimental { max-width: none; padding: 0; }

.rq-distort-block {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rq-distort-block__mask {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
    transition: clip-path 0.6s var(--rq-ease);
}
.rq-distort-block:hover .rq-distort-block__mask {
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
}

.rq-distort-block__img img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    filter: contrast(1.1) saturate(0.85);
    transition: filter 0.5s, transform 0.8s var(--rq-ease);
}
.rq-distort-block:hover .rq-distort-block__img img {
    filter: contrast(1.15) saturate(1);
    transform: scale(1.03);
}

.rq-distort-block__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(2rem, 6vw, 4rem);
    background: linear-gradient(to top, rgba(10, 11, 13, 0.92) 0%, rgba(10, 11, 13, 0.3) 60%, transparent 100%);
}
.rq-distort-block__overlay h2 {
    font-family: var(--rq-font-serif);
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin: 0 0 1rem;
    max-width: 600px;
}
.rq-distort-block__overlay h2 em { font-style: normal; color: var(--rq-amber); }
.rq-distort-block__overlay p {
    color: var(--rq-text-muted);
    max-width: 520px;
    margin: 0;
    font-size: 15px;
}

.rq-distort-block__float {
    position: absolute;
    top: 15%;
    right: clamp(1rem, 8vw, 6rem);
    width: 120px; height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(232, 168, 73, 0.15);
    border: 1px solid var(--rq-amber);
    border-radius: var(--rq-radius);
    backdrop-filter: blur(8px);
    animation: rqFloat 4s ease-in-out infinite;
    pointer-events: none;
}
.rq-distort-block__float span {
    font-family: var(--rq-font-display);
    font-size: 2.5rem;
    color: var(--rq-amber);
    line-height: 1;
}
.rq-distort-block__float small {
    font-size: 9px;
    letter-spacing: 0.12em;
    color: var(--rq-text-muted);
}

.rq-distort-block__lab {
    position: absolute;
    bottom: clamp(1.5rem, 4vw, 3rem);
    left: clamp(1rem, 4vw, 3rem);
    right: clamp(1rem, 4vw, 3rem);
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.25rem;
    background: rgba(10, 11, 13, 0.88);
    border: 1px solid var(--rq-border);
    border-radius: var(--rq-radius);
    backdrop-filter: blur(12px);
    z-index: 3;
}
.rq-distort-ctrl {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;
    gap: 0.75rem;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--rq-text-muted);
    cursor: pointer;
}
.rq-distort-ctrl input[type="range"] {
    width: 100%;
    accent-color: var(--rq-amber);
    cursor: pointer;
    pointer-events: auto;
}
@keyframes rqFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

/* §06 Collection Bento */
.rq-collection__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.rq-collection__head h2 {
    font-family: var(--rq-font-serif);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin: 0;
}
.rq-collection__head h2 em { font-style: normal; color: var(--rq-amber); }

.rq-collection-bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: var(--rq-gutter);
}

.rq-collect-cell {
    grid-column: span 2;
    background: var(--rq-bg-cell);
    border: 1px solid var(--rq-border);
    border-radius: var(--rq-radius);
    overflow: hidden;
    transition: transform 0.35s var(--rq-ease), box-shadow 0.35s;
}
.rq-collect-cell--wide { grid-column: span 3; grid-row: span 2; }
.rq-collect-cell:hover {
    transform: translateY(-6px);
    box-shadow: var(--rq-shadow);
    z-index: 2;
}
.rq-collect-cell__img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.rq-collect-cell--wide .rq-collect-cell__img { aspect-ratio: auto; height: 55%; }
.rq-collect-cell__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.rq-collect-cell:hover .rq-collect-cell__img img { transform: scale(1.06); }
.rq-collect-cell__badge {
    position: absolute; top: 0.75rem; left: 0.75rem;
    padding: 0.25rem 0.55rem;
    background: var(--rq-amber); color: var(--rq-bg);
    font-size: 9px; letter-spacing: 0.1em;
    border-radius: var(--rq-radius);
}
.rq-collect-cell__body { padding: 1.15rem; }
.rq-collect-cell__cat { font-size: 10px; letter-spacing: 0.1em; color: var(--rq-steel); }
.rq-collect-cell__body h3 { font-family: var(--rq-font-serif); font-size: 1rem; margin: 0.35rem 0; }
.rq-collect-cell__price { font-family: var(--rq-font-display); color: var(--rq-amber); font-size: 0.95rem; margin-bottom: 0.5rem; }

/* §07 Process Columns */
.rq-process__head h2 {
    font-family: var(--rq-font-serif);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin: 0 0 2rem;
}
.rq-process__head h2 em { font-style: normal; color: var(--rq-amber); }

.rq-process-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--rq-gutter);
}

.rq-process-col {
    padding: 1.75rem;
    background: var(--rq-bg-cell);
    border: 1px solid var(--rq-border);
    border-top: 3px solid var(--rq-amber);
    border-radius: var(--rq-radius);
    transition: transform 0.3s;
}
.rq-process-col:hover { transform: translateY(-4px); }
.rq-process-col__step {
    font-family: var(--rq-font-display);
    font-size: 2rem;
    color: var(--rq-amber);
    opacity: 0.5;
    line-height: 1;
}
.rq-process-col h3 { font-family: var(--rq-font-serif); margin: 0.75rem 0 0.5rem; }
.rq-process-col p { margin: 0; font-size: 13px; color: var(--rq-text-muted); }

/* §08 Voice Ticker */
.rq-voices__head h2 {
    font-family: var(--rq-font-serif);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin: 0 0 2rem;
}
.rq-voices__head h2 em { font-style: normal; color: var(--rq-amber); }

.rq-voice-ticker {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    background: var(--rq-bg-panel);
    border: 1px solid var(--rq-border);
    border-radius: var(--rq-radius);
}
.rq-voice-ticker__viewport {
    overflow: hidden;
    width: 100%;
}
.rq-voice-ticker__track {
    display: flex;
    transition: transform 0.5s var(--rq-ease);
    will-change: transform;
}
.rq-voice-slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 1rem 3rem;
    margin: 0;
    text-align: center;
    box-sizing: border-box;
}
.rq-voice-slide p {
    font-family: var(--rq-font-serif);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-style: italic;
    margin: 0 0 1rem;
    line-height: 1.5;
}
.rq-voice-slide footer { font-size: 13px; color: var(--rq-text-muted); }
.rq-voice-slide footer strong { color: var(--rq-amber); }
.rq-voice-ticker__controls {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}
.rq-voice-btn {
    width: 40px; height: 40px;
    background: var(--rq-bg-cell);
    border: 1px solid var(--rq-border);
    color: var(--rq-text);
    cursor: pointer;
    pointer-events: auto;
    border-radius: var(--rq-radius);
    transition: border-color 0.25s, color 0.25s;
}
.rq-voice-btn:hover { border-color: var(--rq-amber); color: var(--rq-amber); }

/* §09 Trust Mosaic */
.rq-trust__head h2 {
    font-family: var(--rq-font-serif);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin: 0 0 2rem;
}
.rq-trust__head h2 em { font-style: normal; color: var(--rq-amber); }

.rq-trust-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--rq-gutter);
}

.rq-trust-cell {
    padding: 1.75rem;
    background: var(--rq-bg-cell);
    border: 1px solid var(--rq-border);
    border-radius: var(--rq-radius);
    transition: border-color 0.3s, transform 0.3s, background 0.3s;
    text-align: left;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 2;
    color: inherit;
    font: inherit;
    width: 100%;
}
.rq-trust-cell:hover,
.rq-trust-cell.is-active {
    border-color: var(--rq-amber);
    transform: scale(1.02);
    background: rgba(232, 168, 73, 0.06);
}
.rq-trust-cell__glyph {
    font-size: 1.2rem;
    color: var(--rq-amber);
    display: block;
    margin-bottom: 0.75rem;
}
.rq-trust-cell h3 { font-family: var(--rq-font-serif); font-size: 1rem; margin: 0 0 0.5rem; }
.rq-trust-cell p { margin: 0; font-size: 13px; color: var(--rq-text-muted); }

/* §10 Conversion Rail */
.rq-mod--convert { max-width: none; padding: 0; }

.rq-convert-rail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 3vw, 2rem);
    max-width: 1280px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(232, 168, 73, 0.12) 0%, var(--rq-bg-panel) 50%);
    border-top: 1px solid var(--rq-border);
    border-bottom: 1px solid var(--rq-border);
}
.rq-convert-rail__copy h2 {
    font-family: var(--rq-font-serif);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin: 0 0 0.75rem;
}
.rq-convert-rail__copy h2 em { font-style: normal; color: var(--rq-amber); }
.rq-convert-rail__copy p { color: var(--rq-text-muted); margin: 0; max-width: 480px; }
.rq-convert-rail__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

/* Homepage responsive */
@media (max-width: 1024px) {
    .rq-bento-hero__grid {
        grid-template-columns: 1fr 1fr;
    }
    .rq-bento-cell--title { grid-column: 1 / -1; }
    .rq-bento-cell--tall { grid-column: 1 / -1; grid-row: auto; }
    .rq-bento-cell--tall img { min-height: 320px; }
    .rq-bento-cell--stat { grid-column: span 1; }
    .rq-bento-cell--img,
    .rq-bento-cell--quote { grid-column: span 1; }
    .rq-pinned-wrap { grid-template-columns: 1fr; }
    .rq-pinned-aside { position: static; }
    .rq-manifesto-cell:nth-child(2),
    .rq-manifesto-cell:nth-child(3) { margin-left: 0; }
    .rq-spec-explorer { grid-template-columns: 1fr; }
    .rq-spec-detail { position: static; }
    .rq-collection-bento { grid-template-columns: repeat(2, 1fr); }
    .rq-collect-cell,
    .rq-collect-cell--wide { grid-column: span 1; grid-row: auto; }
    .rq-process-cols { grid-template-columns: repeat(2, 1fr); }
    .rq-trust-mosaic { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .rq-bento-hero__grid { grid-template-columns: 1fr; }
    .rq-bento-cell--stat,
    .rq-bento-cell--img,
    .rq-bento-cell--quote { grid-column: 1; }
    .rq-spec-grid { grid-template-columns: 1fr; }
    .rq-collection-bento { grid-template-columns: 1fr; }
    .rq-process-cols { grid-template-columns: 1fr; }
    .rq-trust-mosaic { grid-template-columns: 1fr; }
    .rq-convert-rail { flex-direction: column; align-items: flex-start; }
    .rq-distort-block__float { display: none; }
    .rq-route-preview { grid-template-columns: 1fr; }
    .rq-distort-block__lab { position: relative; bottom: auto; left: auto; right: auto; max-width: none; margin: 1rem; }
}
