@font-face {
    font-family: "Barlow Condensed";
    src: url("../fonts/barlow-condensed/BarlowCondensed-SemiBold.ttf") format("truetype");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Barlow Condensed";
    src: url("../fonts/barlow-condensed/BarlowCondensed-ExtraBold.ttf") format("truetype");
    font-style: normal;
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: "Barlow Condensed";
    src: url("../fonts/barlow-condensed/BarlowCondensed-Black.ttf") format("truetype");
    font-style: normal;
    font-weight: 900;
    font-display: swap;
}

:root {
    --studio-paper: #f5eee2;
    --studio-paper-deep: #e8dcc8;
    --studio-ink: #111516;
    --studio-muted: #47504d;
    --studio-yellow: #f0d441;
    --studio-sky: #cce7ee;
    --studio-mint: #d5e7d0;
    --studio-clay: #bb5d31;
    --studio-lime: #d4f11d;
    --studio-display: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
    --studio-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --studio-line: 1.5px solid var(--studio-ink);
    --studio-gutter: clamp(1.1rem, 4vw, 4.5rem);
    --studio-ease: cubic-bezier(.22, 1, .36, 1);
}

html {
    scroll-padding-top: 6rem;
}

body.newman-v3 {
    overflow-x: clip;
    background: var(--studio-paper);
    color: var(--studio-ink);
    font-family: var(--studio-body);
    text-rendering: optimizeLegibility;
}

.newman-v3 ::selection {
    background: var(--studio-yellow);
    color: var(--studio-ink);
}

.newman-v3 :focus-visible {
    outline: 3px solid var(--studio-clay);
    outline-offset: 4px;
}

.newman-v3 .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 5rem;
    padding: .72rem var(--studio-gutter);
    border: 0;
    border-bottom: var(--studio-line);
    background: rgba(245, 238, 226, .96);
    box-shadow: none;
    backdrop-filter: blur(16px);
    transition: min-height 280ms var(--studio-ease), padding 280ms var(--studio-ease), box-shadow 280ms ease;
}

.newman-v3[data-studio-scrolled] .site-header,
body.newman-v3[data-studio-scrolled] .site-header {
    min-height: 4.25rem;
    padding-block: .42rem;
    box-shadow: 0 8px 24px rgba(17, 21, 22, .08);
}

.newman-v3 .brand-mark {
    width: 3rem;
    height: 3rem;
    border-radius: .7rem;
    background: transparent;
    transform: none;
    transition: transform 220ms var(--studio-ease);
}

.newman-v3 .brand:hover .brand-mark {
    transform: rotate(-4deg) scale(1.04);
}

.newman-v3 .brand-type {
    gap: .04rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .075em;
    line-height: .9;
}

.newman-v3 .site-nav a {
    font-size: .74rem;
    letter-spacing: .09em;
}

.newman-v3 .site-nav a::after {
    height: 2px;
    bottom: .25rem;
}

.newman-v3 .rebuild-main h1,
.newman-v3 .rebuild-main h2,
.newman-v3 .rebuild-main h3,
.newman-v3 .home-rebuild h1,
.newman-v3 .home-rebuild h2,
.newman-v3 .home-rebuild h3,
.newman-v3 .home-contact-band h2,
.newman-v3 .site-footer .footer-signal {
    font-family: var(--studio-display);
    font-weight: 800;
    font-kerning: normal;
    font-synthesis: none;
    letter-spacing: .008em;
}

.newman-v3 .rebuild-main h1,
.newman-v3 .rebuild-main h2,
.newman-v3 .home-rebuild h1,
.newman-v3 .home-rebuild h2,
.newman-v3 .home-contact-band h2 {
    line-height: .88;
}

.newman-v3 .rebuild-main h3,
.newman-v3 .home-rebuild h3 {
    line-height: .94;
}

.newman-v3 .rebuild-button,
.newman-v3 .home-button,
.newman-v3 .button {
    border-radius: .35rem;
    transition: transform 180ms var(--studio-ease), box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.newman-v3 .rebuild-button:hover,
.newman-v3 .home-button:hover,
.newman-v3 .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 0 var(--studio-ink);
}

.newman-v3 .rebuild-button:active,
.newman-v3 .home-button:active,
.newman-v3 .button:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Home: approved Field Manual Gallery direction. */
.newman-v3.home-rebuild-page {
    padding-left: 0;
    background: var(--studio-paper);
}

.newman-v3.home-rebuild-page .site-header {
    grid-template-columns: minmax(13rem, 1fr) auto;
}

.newman-v3.home-rebuild-page .home-rebuild {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.newman-v3.home-rebuild-page .home-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    place-items: center;
    min-height: clamp(38rem, 68vw, 51rem);
    padding: clamp(4.5rem, 9vw, 8rem) var(--studio-gutter);
    overflow: hidden;
    isolation: isolate;
    border-bottom: var(--studio-line);
    background: var(--studio-paper);
}

.newman-v3 .home-hero-environment {
    position: absolute;
    inset: 0;
    z-index: -2;
    display: block;
    overflow: hidden;
}

.newman-v3 .home-hero-environment img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.015);
    animation: studio-breathe 16s ease-in-out infinite alternate;
}

.newman-v3 .home-hero-copy {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
    width: min(48rem, 58vw);
    margin: 0;
    padding: clamp(1.2rem, 2.6vw, 2.25rem);
    text-align: center;
}

.newman-v3 .home-kicker {
    margin: 0 0 1rem;
    color: #436861;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.newman-v3 .home-hero h1 {
    display: grid;
    gap: 0;
    max-width: none;
    margin: 0;
    font-size: clamp(4rem, 6.7vw, 7.4rem);
    line-height: .82;
    text-align: center;
    text-wrap: balance;
}

.newman-v3 .home-hero h1 span {
    display: block;
    white-space: nowrap;
}

.newman-v3 .home-hero-lede {
    max-width: 34rem;
    margin: 1.25rem 0 0;
    color: var(--studio-ink);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    font-weight: 650;
    line-height: 1.45;
}

.newman-v3 .home-hero-actions {
    margin-top: 1.4rem;
}

.newman-v3 .home-hero-actions .home-button {
    min-width: 14.5rem;
    min-height: 3.5rem;
}

.newman-v3 .home-hero-products {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.newman-v3 .home-hero-product {
    position: absolute;
    display: grid;
    grid-template-columns: 5.1rem minmax(0, 1fr);
    align-items: stretch;
    width: clamp(13.8rem, 17vw, 16.5rem);
    min-height: 6.1rem;
    padding: .38rem;
    overflow: hidden;
    border: var(--studio-line);
    border-radius: .85rem;
    background: var(--studio-paper);
    box-shadow: 0 15px 28px rgba(17, 21, 22, .24);
    color: var(--studio-ink);
    text-decoration: none;
    pointer-events: auto;
    transition: transform 240ms var(--studio-ease), box-shadow 240ms ease;
}

.newman-v3 .home-hero-product-icon {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    min-height: 5.3rem;
    overflow: hidden;
    border: 1px solid rgba(245, 238, 226, .16);
    border-radius: .55rem;
    background: #111516;
}

.newman-v3 .home-hero-product-icon img {
    width: 4.55rem;
    height: 4.55rem;
    object-fit: contain;
    animation: studio-float 5.8s ease-in-out infinite;
}

.newman-v3 .home-hero-product-meta {
    position: relative;
    display: grid;
    align-content: center;
    gap: .2rem;
    min-width: 0;
    padding: .55rem .65rem .5rem;
    border-left: 0;
}

.newman-v3 .home-hero-product-eyebrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .35rem;
    font-size: .54rem;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.newman-v3 .home-hero-product-eyebrow span:first-child {
    display: inline-grid;
    place-items: center;
    width: 1.35rem;
    height: 1.35rem;
    border: 1px solid currentColor;
    border-radius: 50%;
}

.newman-v3 .home-hero-product-meta strong {
    font-family: var(--studio-display);
    font-size: clamp(1.08rem, 1.45vw, 1.4rem);
    font-weight: 800;
    letter-spacing: .015em;
    line-height: .92;
    text-transform: uppercase;
}

.newman-v3 .home-hero-product-benefit {
    font-size: .67rem;
    font-weight: 750;
    line-height: 1.2;
}

.newman-v3 .home-hero-product-action {
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    margin-top: .2rem;
    font-size: .56rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.newman-v3 .home-hero-product-action span {
    font-size: .85rem;
    line-height: 1;
    transition: transform 180ms var(--studio-ease);
}

.newman-v3 .home-hero-product:hover,
.newman-v3 .home-hero-product.is-tilted {
    z-index: 3;
    transform: translateY(-7px) rotate(-2deg) scale(1.035);
    box-shadow: 0 22px 35px rgba(17, 21, 22, .3);
}

.newman-v3 .home-hero-product:hover img,
.newman-v3 .home-hero-product.is-tilted img {
    animation-play-state: paused;
}

.newman-v3 .home-hero-product:hover .home-hero-product-action span,
.newman-v3 .home-hero-product:focus-visible .home-hero-product-action span {
    transform: translate(.18rem, -.18rem);
}

.newman-v3 .home-hero-product-lowball {
    top: 8%;
    right: 4%;
}

.newman-v3 .home-hero-product-collectory {
    right: 4%;
    bottom: 6%;
}

.newman-v3 .home-hero-product-buyer {
    left: 4%;
    bottom: 6%;
}

.newman-v3 .home-hero-product-lowball .home-hero-product-meta {
    background: var(--studio-yellow);
}

.newman-v3 .home-hero-product-collectory .home-hero-product-meta {
    background: var(--studio-blue);
}

.newman-v3 .home-hero-product-buyer .home-hero-product-meta {
    background: #e6ecdd;
}

.newman-v3 .home-products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: var(--studio-line);
    background: var(--studio-paper);
}

.newman-v3 .home-product-card {
    display: grid;
    grid-template-columns: minmax(7rem, .78fr) minmax(0, 1fr);
    grid-template-rows: 1fr;
    min-height: 20rem;
    border: 0;
    border-right: var(--studio-line);
    background: var(--studio-paper);
    transition: transform 220ms var(--studio-ease), box-shadow 220ms ease;
}

.newman-v3 .home-product-card:last-child {
    border-right: 0;
}

.newman-v3 .home-product-card:hover {
    z-index: 2;
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(17, 21, 22, .16);
}

.newman-v3 .home-product-lowball {
    background: var(--studio-yellow);
}

.newman-v3 .home-product-collectory {
    background: var(--studio-sky);
}

.newman-v3 .home-product-buyer {
    background: var(--studio-paper);
}

.newman-v3 .home-product-visual {
    display: grid;
    place-items: center;
    min-height: 100%;
    padding: 1.5rem .8rem;
    background: transparent;
}

.newman-v3 .home-product-visual img {
    width: clamp(6.25rem, 9vw, 9rem);
    filter: drop-shadow(0 16px 14px rgba(17, 21, 22, .23));
    transition: transform 260ms var(--studio-ease);
}

.newman-v3 .home-product-card:hover .home-product-visual img {
    transform: rotate(-4deg) scale(1.045);
}

.newman-v3 .home-product-copy {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    align-content: center;
    justify-items: start;
    min-width: 0;
    padding: clamp(1.35rem, 2.4vw, 2.3rem) clamp(1rem, 2vw, 1.8rem);
    text-align: left;
}

.newman-v3 .home-product-copy h3 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3.15rem);
    letter-spacing: .01em;
}

.newman-v3 .home-product-copy > p:not(.home-product-status) {
    margin: .75rem 0 1rem;
    font-size: .92rem;
    line-height: 1.45;
}

.newman-v3 .home-product-status {
    margin: .4rem 0 0;
    padding: .2rem .45rem;
    border: 1px solid var(--studio-ink);
    border-radius: 999px;
    background: var(--studio-lime);
    font-size: .6rem;
    letter-spacing: .06em;
}

.newman-v3 .home-text-link,
.newman-v3 .home-note-link {
    font-size: .7rem;
    letter-spacing: .06em;
}

.newman-v3 .home-trust {
    margin: 0;
    padding: 0;
    border-bottom: var(--studio-line);
    background: var(--studio-ink);
}

.newman-v3 .home-trust-inner {
    width: 100%;
    max-width: none;
    min-height: 0;
    padding: 0;
}

.newman-v3 .home-section-label-dark {
    display: none;
}

.newman-v3 .home-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
}

.newman-v3 .home-trust-grid article {
    display: grid;
    grid-template-columns: 3.25rem auto;
    grid-template-rows: auto auto;
    gap: .22rem 1rem;
    align-items: center;
    min-height: 8.75rem;
    padding: 1.4rem clamp(1.1rem, 3vw, 3rem);
    border: 0;
    border-right: 1px solid rgba(245, 238, 226, .3);
    color: var(--studio-paper);
    text-align: left;
}

.newman-v3 .home-trust-grid article:last-child {
    border-right: 0;
}

.newman-v3 .home-trust-icon {
    grid-row: 1 / 3;
    width: 3.25rem;
    height: 3.25rem;
    margin: 0;
    transform: none;
}

.newman-v3 .home-trust-grid h3 {
    margin: 0;
    color: var(--studio-paper);
    font-family: var(--studio-body);
    font-size: .78rem;
    letter-spacing: .06em;
}

.newman-v3 .home-trust-grid p {
    margin: 0;
    color: rgba(245, 238, 226, .78);
    font-size: .72rem;
    line-height: 1.4;
}

.newman-v3 .home-notes {
    margin: 0;
    min-height: 0;
    padding: clamp(2.25rem, 4vw, 4rem) var(--studio-gutter);
    background: var(--studio-paper);
}

.newman-v3 .home-notes-inner {
    display: grid;
    gap: 1.25rem;
    width: 100%;
    max-width: none;
    margin: 0;
}

.newman-v3 .home-section-label {
    margin: 0 0 1.25rem;
    font-size: .72rem;
    letter-spacing: .11em;
}

.newman-v3 .home-note-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: var(--studio-line);
    border-bottom: var(--studio-line);
}

.newman-v3 .home-note-row {
    display: grid;
    grid-template-columns: minmax(7.5rem, .76fr) minmax(0, 1fr);
    grid-template-rows: 1fr auto;
    gap: .85rem 1rem;
    min-height: 14.5rem;
    padding: 1.15rem;
    border: 0;
    border-right: var(--studio-line);
    background: transparent;
    transition: background-color 200ms ease;
}

.newman-v3 .home-note-row:last-child {
    border-right: 0;
}

.newman-v3 .home-note-row:hover {
    background: #fff9ef;
}

.newman-v3 .home-note-photo {
    grid-row: 1 / 3;
    width: 100%;
    height: 100%;
    min-height: 10rem;
    border: 1px solid var(--studio-ink);
    border-radius: .55rem;
    object-fit: cover;
    filter: saturate(.82) contrast(1.04);
    transition: transform 260ms var(--studio-ease), filter 260ms ease;
}

.newman-v3 .home-note-row:first-child .home-note-photo {
    object-position: center;
    filter: saturate(1.08) contrast(1.2) brightness(.92);
}

.newman-v3 .home-note-row:hover .home-note-photo {
    transform: rotate(-1.5deg) scale(1.018);
    filter: saturate(1) contrast(1.02);
}

.newman-v3 .home-note-row h3 {
    margin: .2rem 0 .45rem;
    font-family: var(--studio-body);
    font-size: .95rem;
    font-weight: 850;
    letter-spacing: -.01em;
    text-transform: none;
}

.newman-v3 .home-note-row p {
    margin: 0;
    color: var(--studio-muted);
    font-size: .76rem;
    line-height: 1.45;
}

.newman-v3 .home-note-link {
    align-self: end;
    justify-self: start;
}

.newman-v3 .home-contact-band {
    display: block;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    border-top: var(--studio-line);
    background: var(--studio-clay);
    color: var(--studio-ink);
}

.newman-v3 .home-contact-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(15rem, .55fr);
    align-items: end;
    min-height: 18rem;
    padding: clamp(2.5rem, 5vw, 5rem) var(--studio-gutter);
}

.newman-v3 .home-contact-copy {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(13rem, .55fr);
    align-items: end;
    gap: 1.5rem 2rem;
}

.newman-v3 .home-contact-copy h2 {
    grid-row: 1 / 3;
    margin: 0;
    font-size: clamp(4.4rem, 7vw, 7.5rem);
    letter-spacing: .006em;
}

.newman-v3 .home-contact-copy p {
    max-width: 26rem;
    margin: 0;
    font-size: .92rem;
    font-weight: 650;
    line-height: 1.45;
}

.newman-v3 .home-contact-copy .home-button {
    justify-self: start;
}

.newman-v3 .home-maker-mark {
    display: grid;
    grid-template-columns: 1fr 5.25rem;
    align-items: center;
    justify-self: end;
    gap: 1rem;
    min-width: 0;
    width: auto;
    aspect-ratio: auto;
    padding-left: clamp(1rem, 3vw, 3rem);
    border: 0;
    border-left: 1px solid rgba(17, 21, 22, .35);
    background: transparent;
    clip-path: none;
    filter: none;
}

.newman-v3 .home-maker-mark > span {
    max-width: 11rem;
    font-size: clamp(1.25rem, 2.2vw, 2.1rem);
    font-weight: 900;
    letter-spacing: .28em;
    line-height: 1.35;
    text-transform: uppercase;
}

.newman-v3 .home-maker-mark img {
    width: 5.25rem;
    height: 5.25rem;
    object-fit: contain;
    filter: drop-shadow(0 8px 10px rgba(17, 21, 22, .22));
}

.newman-v3 .home-footer-utility {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 3.5rem;
    padding: .55rem var(--studio-gutter);
    border-top: var(--studio-line);
    background: var(--studio-ink);
    color: var(--studio-paper);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.newman-v3 .home-footer-utility nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
}

.newman-v3 .home-footer-utility a {
    display: inline-flex;
    align-items: center;
    min-height: 2.75rem;
    min-width: 2.75rem;
    padding: .35rem .15rem;
    color: inherit;
}

/* Shared inner-page polish and movement. */
.newman-v3 .rebuild-hero {
    border-bottom: var(--studio-line);
}

.newman-v3 .work-product-lane,
.newman-v3 .notes-featured,
.newman-v3 .notes-ledger article,
.newman-v3 .ai-lanes article,
.newman-v3 .collectory-job-grid article,
.newman-v3 .legal-short-version article,
.newman-v3 .note-rebuild-related article {
    transition: transform 220ms var(--studio-ease), box-shadow 220ms ease;
}

.newman-v3 .work-product-lane:hover,
.newman-v3 .notes-featured:hover,
.newman-v3 .notes-ledger article:hover,
.newman-v3 .ai-lanes article:hover,
.newman-v3 .collectory-job-grid article:hover,
.newman-v3 .legal-short-version article:hover,
.newman-v3 .note-rebuild-related article:hover {
    z-index: 2;
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(17, 21, 22, .13);
}

.newman-v3 .site-footer {
    position: relative;
    display: grid;
    grid-template-columns: minmax(17rem, 1.3fr) repeat(3, minmax(8rem, .7fr));
    gap: 2rem;
    overflow: hidden;
    padding: clamp(7rem, 13vw, 12rem) var(--studio-gutter) 1.5rem;
    border-top: var(--studio-line);
    background: var(--studio-ink);
    color: var(--studio-paper);
}

.newman-v3 .site-footer .footer-signal {
    position: absolute;
    top: .15rem;
    left: var(--studio-gutter);
    max-width: calc(100% - (2 * var(--studio-gutter)));
    margin: 0;
    color: rgba(245, 238, 226, .1);
    font-size: clamp(4.25rem, 11.6vw, 12rem);
    line-height: .8;
    letter-spacing: .018em;
    text-transform: uppercase;
    white-space: nowrap;
}

.newman-v3 .site-footer h2,
.newman-v3 .site-footer a,
.newman-v3 .site-footer p,
.newman-v3 .site-footer span {
    color: inherit;
}

.newman-v3 .site-footer h2 {
    margin: 0 0 .8rem;
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.newman-v3 .site-footer a {
    width: fit-content;
    min-width: 2.75rem;
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    text-underline-offset: .2em;
}

.newman-v3 .site-footer .footer-brand-lockup .brand-type span {
    color: var(--studio-paper);
}

.newman-v3 .site-footer .footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(245, 238, 226, .2);
}

html.studio-motion-ready .studio-reveal {
    opacity: 0;
    transform: translateY(1.6rem);
    transition: opacity 650ms var(--studio-ease), transform 650ms var(--studio-ease);
}

html.studio-motion-ready .studio-reveal.is-visible {
    opacity: 1;
    transform: none;
}

@keyframes studio-breathe {
    from { transform: scale(1.015); }
    to { transform: scale(1.04); }
}

@keyframes studio-float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-6px) rotate(-1.25deg); }
}

@media (max-width: 1100px) {
    .newman-v3 .home-hero-copy {
        width: min(44rem, 68vw);
    }

    .newman-v3 .home-hero-products {
        inset: auto var(--studio-gutter) 1.15rem;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: .6rem;
    }

    .newman-v3 .home-hero-product,
    .newman-v3 .home-hero-product-lowball,
    .newman-v3 .home-hero-product-collectory,
    .newman-v3 .home-hero-product-buyer {
        position: relative;
        inset: auto;
        width: 100%;
        min-height: 5.55rem;
        transform: none;
    }

    .newman-v3 .home-hero-product-icon {
        min-height: 4.75rem;
    }

    .newman-v3 .home-hero-product-icon img {
        width: 4.1rem;
        height: 4.1rem;
    }

    .newman-v3 .home-hero-product-meta {
        padding: .45rem .55rem;
    }

    .newman-v3 .home-products {
        grid-template-columns: 1fr;
    }

    .newman-v3 .home-product-card {
        grid-template-columns: minmax(10rem, .42fr) minmax(0, 1fr);
        grid-template-rows: 1fr;
        min-height: 15rem;
        border-right: 0;
        border-bottom: var(--studio-line);
    }

    .newman-v3 .home-product-card:last-child {
        border-bottom: 0;
    }

    .newman-v3 .home-contact-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .newman-v3 .home-maker-mark {
        justify-self: start;
        padding: 1.5rem 0 0;
        width: auto;
        border-top: 1px solid rgba(17, 21, 22, .35);
        border-left: 0;
    }
}

@media (max-width: 820px) {
    html {
        scroll-padding-top: 4.8rem;
    }

    .newman-v3 .site-header {
        min-height: 4.6rem;
        padding: .55rem 1rem;
    }

    .newman-v3 .brand-mark {
        width: 2.65rem;
        height: 2.65rem;
    }

    .newman-v3 .site-menu-toggle {
        display: inline-flex;
        min-width: 3rem;
        min-height: 3rem;
        padding: .6rem;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        font-size: 0;
    }

    .newman-v3 .site-menu-icon {
        width: 1.65rem;
    }

    .newman-v3 .site-nav {
        border-top: var(--studio-line);
        border-bottom: var(--studio-line);
        background: var(--studio-paper);
    }

    .newman-v3.home-rebuild-page .home-hero {
        display: grid;
        grid-template-rows: 11rem auto auto;
        place-items: stretch;
        min-height: 0;
        padding: 0;
        overflow: visible;
    }

    .newman-v3 .home-hero-environment {
        position: relative;
        grid-row: 1;
        height: 11rem;
        border-bottom: var(--studio-line);
    }

    .newman-v3 .home-hero-environment img {
        object-position: center;
        animation: none;
    }

    .newman-v3 .home-hero-copy {
        grid-row: 2;
        width: 100%;
        padding: 2.2rem 1rem 1.5rem;
    }

    .newman-v3 .home-hero h1 {
        font-size: clamp(3.35rem, 13vw, 5.4rem);
        line-height: .84;
    }

    .newman-v3 .home-hero h1 span {
        white-space: normal;
    }

    .newman-v3 .home-hero-products {
        position: relative;
        inset: auto;
        grid-row: 3;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: .65rem;
        padding: 1rem;
        border-top: var(--studio-line);
        background: var(--studio-yellow);
    }

    .newman-v3 .home-hero-product,
    .newman-v3 .home-hero-product-lowball,
    .newman-v3 .home-hero-product-collectory,
    .newman-v3 .home-hero-product-buyer {
        position: relative;
        inset: auto;
        width: 100%;
        max-width: none;
        min-height: 0;
        grid-template-columns: 1fr;
        grid-template-rows: 4.65rem auto;
        justify-self: center;
        padding: .3rem;
        border-radius: .7rem;
        transform: none;
    }

    .newman-v3 .home-hero-product-icon {
        height: 4.65rem;
        min-height: 4.65rem;
        border-radius: .42rem;
    }

    .newman-v3 .home-hero-product-icon img {
        width: 4.05rem;
        height: 4.05rem;
    }

    .newman-v3 .home-hero-product-meta {
        min-height: 4.65rem;
        justify-items: center;
        padding: .45rem .28rem .5rem;
        border-top: 0;
        border-left: 0;
        text-align: center;
    }

    .newman-v3 .home-hero-product-eyebrow {
        justify-content: center;
    }

    .newman-v3 .home-hero-product-eyebrow span:last-child,
    .newman-v3 .home-hero-product-action {
        display: none;
    }

    .newman-v3 .home-hero-product-meta strong {
        font-size: clamp(.78rem, 3vw, 1rem);
    }

    .newman-v3 .home-hero-product-benefit {
        font-size: clamp(.56rem, 1.8vw, .66rem);
        line-height: 1.12;
    }

    .newman-v3 .home-note-list {
        grid-template-columns: 1fr;
    }

    .newman-v3 .home-note-row {
        grid-template-columns: 7rem minmax(0, 1fr) auto;
        grid-template-rows: 1fr;
        min-height: 7rem;
        padding: .75rem;
        border-right: 0;
        border-bottom: 1px solid rgba(17, 21, 22, .35);
    }

    .newman-v3 .home-note-row:last-child {
        border-bottom: 0;
    }

    .newman-v3 .home-note-photo {
        grid-row: 1;
        min-height: 5.5rem;
    }

    .newman-v3 .home-note-row p {
        display: none;
    }

    .newman-v3 .home-note-link {
        align-self: center;
    }

    .newman-v3 .home-contact-copy {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .newman-v3 .home-contact-copy h2 {
        grid-row: auto;
    }

    .newman-v3 .site-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-top: 7rem;
    }

    .newman-v3 .site-footer .footer-brand {
        grid-column: 1 / -1;
    }

    .newman-v3 .site-footer .footer-signal {
        white-space: normal;
    }
}

@media (max-width: 520px) {
    .newman-v3 .brand-type {
        font-size: .86rem;
    }

    .newman-v3 .home-product-card {
        grid-template-columns: 6.5rem minmax(0, 1fr);
        grid-template-rows: 1fr;
        min-height: 12.5rem;
    }

    .newman-v3 .home-hero-products {
        gap: .42rem;
        padding: .75rem;
    }

    .newman-v3 .home-hero-product,
    .newman-v3 .home-hero-product-lowball,
    .newman-v3 .home-hero-product-collectory,
    .newman-v3 .home-hero-product-buyer {
        grid-template-rows: 4.15rem auto;
    }

    .newman-v3 .home-hero-product-icon {
        height: 4.15rem;
        min-height: 4.15rem;
    }

    .newman-v3 .home-hero-product-icon img {
        width: 3.65rem;
        height: 3.65rem;
    }

    .newman-v3 .home-hero-product-meta {
        min-height: 4.15rem;
        padding-inline: .18rem;
    }

    .newman-v3 .home-product-visual {
        padding: .9rem .55rem;
    }

    .newman-v3 .home-product-visual img {
        width: 5.35rem;
    }

    .newman-v3 .home-product-copy {
        padding: 1.15rem .9rem;
    }

    .newman-v3 .home-product-copy h3 {
        font-size: clamp(1.75rem, 9vw, 2.35rem);
    }

    .newman-v3 .home-product-copy > p:not(.home-product-status) {
        margin: .5rem 0 .7rem;
        font-size: .76rem;
    }

    .newman-v3 .home-trust-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .newman-v3 .home-trust-grid article {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        justify-items: center;
        min-height: 6.7rem;
        padding: .75rem .4rem;
        text-align: center;
    }

    .newman-v3 .home-trust-icon {
        grid-row: auto;
        width: 2.6rem;
        height: 2.6rem;
    }

    .newman-v3 .home-trust-grid h3 {
        font-size: .59rem;
    }

    .newman-v3 .home-trust-grid p {
        display: none;
    }

    .newman-v3 .home-notes {
        padding: 1.75rem 1rem;
    }

    .newman-v3 .home-note-row {
        grid-template-columns: 5.25rem minmax(0, 1fr) auto;
        min-height: 5.6rem;
    }

    .newman-v3 .home-note-photo {
        min-height: 4rem;
    }

    .newman-v3 .home-note-row h3 {
        font-size: .78rem;
    }

    .newman-v3 .home-contact-inner {
        min-height: 0;
        padding: 2.2rem 1rem 1.5rem;
    }

    .newman-v3 .home-contact-copy h2 {
        font-size: clamp(3.6rem, 17vw, 5.2rem);
    }

    .newman-v3 .home-maker-mark {
        grid-template-columns: 1fr 3.5rem;
        width: 100%;
    }

    .newman-v3 .home-maker-mark > span {
        font-size: 1rem;
    }

    .newman-v3 .home-maker-mark img {
        width: 3.5rem;
        height: 3.5rem;
    }

    .newman-v3 .home-footer-utility {
        align-items: flex-start;
        font-size: .58rem;
    }

    .newman-v3 .home-footer-utility nav {
        gap: .75rem;
    }

    .newman-v3 .site-footer {
        grid-template-columns: 1fr;
        padding: 6.5rem 1rem 1.25rem;
    }

    .newman-v3 .site-footer .footer-brand,
    .newman-v3 .site-footer .footer-bottom {
        grid-column: 1;
    }
}

@media (max-width: 360px) {
    .newman-v3 .home-hero-copy,
    .newman-v3 .home-hero h1,
    .newman-v3 .home-hero-lede {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .newman-v3 .home-hero h1 {
        font-size: clamp(2.65rem, 14vw, 3rem);
        overflow-wrap: anywhere;
    }

    .newman-v3 .home-hero-lede {
        font-size: .92rem;
    }

    .newman-v3 .home-hero-product-benefit {
        display: none;
    }

    .newman-v3 .home-hero-product-meta {
        min-height: 3.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .newman-v3 *,
    .newman-v3 *::before,
    .newman-v3 *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    html.studio-motion-ready .studio-reveal {
        opacity: 1;
        transform: none;
    }
}
