:root {
    --ink: #111111;
    --ink-soft: #262626;
    --paper: #ffffff;
    --mist: #f5f5f5;
    --mist-deep: #ececec;
    --line: #d9d9d9;
    --muted: #6d6d6d;
    --muted-light: #b7b7b7;
    --error: #9c2727;
    --success: #245f3b;
    --page: clamp(1.25rem, 5vw, 5.75rem);
    --section: clamp(5.5rem, 10vw, 10rem);
    --content: 1260px;
    --header-height: 88px;
    --font-sans: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
    --font-display: "Bodoni 72", Didot, Georgia, "Times New Roman", serif;
    --ease: cubic-bezier(.22, 1, .36, 1);
    --shadow: 0 30px 80px rgba(0, 0, 0, .14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 1rem);
    background: var(--ink);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open,
body.lightbox-open {
    overflow: hidden;
}

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

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: 0;
}

p,
h1,
h2,
h3,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

::selection {
    color: var(--paper);
    background: var(--ink);
}

.skip-link {
    position: fixed;
    top: .75rem;
    left: .75rem;
    z-index: 10000;
    padding: .8rem 1rem;
    color: var(--paper);
    background: var(--ink);
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.page-progress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 10001;
    height: 2px;
    pointer-events: none;
}

.page-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: .85rem 1.55rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .11em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    transition: color .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}

.button:hover {
    transform: translateY(-2px);
}

.button:focus-visible,
.site-nav a:focus-visible,
.gallery-filters button:focus-visible,
.gallery-item:focus-visible,
.hero-arrow:focus-visible,
.hero-dots button:focus-visible,
.menu-toggle:focus-visible,
.lightbox__close:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

.button--white {
    color: var(--ink);
    background: var(--paper);
    border-color: var(--paper);
}

.button--white:hover {
    color: var(--paper);
    background: transparent;
}

.button--ghost-light {
    color: var(--paper);
    background: transparent;
    border-color: rgba(255,255,255,.55);
}

.button--ghost-light:hover {
    color: var(--ink);
    background: var(--paper);
    border-color: var(--paper);
}

.button--dark {
    color: var(--paper);
    background: var(--ink);
    border-color: var(--ink);
}

.button--dark:hover {
    color: var(--ink);
    background: transparent;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding-bottom: .18rem;
    border-bottom: 1px solid currentColor;
    font-size: .77rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: opacity .25s ease;
}

.text-link:hover {
    opacity: .58;
}

.text-link--light {
    color: var(--paper);
}

.kicker,
.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: var(--muted);
    font-size: .69rem;
    font-weight: 700;
    letter-spacing: .24em;
    line-height: 1.3;
    text-transform: uppercase;
}

.kicker::before {
    width: 2.1rem;
    height: 1px;
    content: "";
    background: currentColor;
}

.kicker--light {
    color: rgba(255,255,255,.65);
}

.section {
    position: relative;
    padding: var(--section) var(--page);
}

.section > * {
    width: min(100%, var(--content));
    margin-right: auto;
    margin-left: auto;
}

.section-heading {
    max-width: 900px;
    margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section-heading h2,
.business-band h2,
.contact-panel h2,
.business-audience h2,
.business-ready h2,
.business-final h2 {
    margin-top: 1.15rem;
    font-size: clamp(2.65rem, 5.9vw, 6rem);
    font-weight: 300;
    letter-spacing: -.055em;
    line-height: .98;
}

.section-heading h2 em,
.business-band h2 em,
.contact-panel h2 em,
.business-audience h2 em,
.business-ready h2 em,
.business-final h2 em,
.business-hero h1 em {
    font-family: var(--font-display);
    font-weight: 500;
}

.section-heading--center {
    max-width: 940px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading--center .kicker {
    justify-content: center;
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(18rem, .7fr);
    gap: clamp(2rem, 6vw, 7rem);
    max-width: none;
    align-items: end;
}

.section-lead {
    max-width: 650px;
    margin-top: 1.5rem;
    color: var(--muted);
    font-size: clamp(1.02rem, 1.35vw, 1.2rem);
    line-height: 1.75;
}

.section-heading--center .section-lead {
    margin-right: auto;
    margin-left: auto;
}

.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    padding: 0 var(--page);
    color: var(--ink);
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid rgba(17,17,17,.1);
    transition: color .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), min-height .35s var(--ease), box-shadow .35s var(--ease);
}

.site-header--over-hero:not(.is-scrolled) {
    color: var(--paper);
    background: linear-gradient(to bottom, rgba(0,0,0,.24), transparent);
    border-color: rgba(255,255,255,.22);
}

.site-header.is-scrolled {
    min-height: 72px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 10px 35px rgba(0,0,0,.07);
    backdrop-filter: blur(16px);
}

.brand {
    position: relative;
    z-index: 1002;
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    min-width: max-content;
}

.brand__mark {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
}

.brand__logo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity .3s ease;
}

.brand__logo--light {
    opacity: 0;
}

.site-header--over-hero:not(.is-scrolled) .brand__logo--light {
    opacity: 1;
}

.site-header--over-hero:not(.is-scrolled) .brand__logo--dark {
    opacity: 0;
}

.brand__name {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: .01em;
}

.brand__name b {
    margin-left: .25rem;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .2em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(.9rem, 1.45vw, 1.7rem);
}

.site-nav a {
    position: relative;
    padding: .35rem 0;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.site-nav > a:not(.site-nav__shop)::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    content: "";
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s var(--ease);
}

.site-nav > a:not(.site-nav__shop):hover::after,
.site-nav > a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-nav__shop {
    display: inline-flex;
    gap: .45rem;
    align-items: center;
    min-height: 2.7rem;
    padding: .65rem 1rem !important;
    color: var(--paper);
    background: var(--ink);
    border: 1px solid var(--ink);
    border-radius: 999px;
    transition: color .3s ease, background .3s ease, border-color .3s ease;
}

.site-header--over-hero:not(.is-scrolled) .site-nav__shop {
    color: var(--ink);
    background: var(--paper);
    border-color: var(--paper);
}

.site-nav__shop:hover {
    color: var(--ink);
    background: transparent;
}

.site-header--over-hero:not(.is-scrolled) .site-nav__shop:hover {
    color: var(--paper);
    background: transparent;
}

.menu-toggle {
    position: relative;
    z-index: 1002;
    display: none;
    align-items: center;
    gap: .75rem;
    padding: .65rem 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.menu-toggle__label {
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.menu-toggle__icon {
    position: relative;
    display: block;
    width: 1.65rem;
    height: 1rem;
}

.menu-toggle__icon i {
    position: absolute;
    right: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform .3s var(--ease), top .3s var(--ease), width .3s var(--ease);
}

.menu-toggle__icon i:first-child { top: .18rem; }
.menu-toggle__icon i:last-child { top: .76rem; width: 68%; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child { top: .46rem; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child { top: .46rem; width: 100%; transform: rotate(-45deg); }

/* Hero */
.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    color: var(--paper);
    background: var(--ink);
}

.hero__slides,
.hero__slide,
.hero__veil {
    position: absolute;
    inset: 0;
}

.hero__slide {
    margin: 0;
    opacity: 0;
    transform: scale(1.035);
    transition: opacity 1.1s ease, transform 7s ease;
}

.hero__slide.is-active {
    z-index: 1;
    opacity: 1;
    transform: scale(1);
}

.hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.94) contrast(1.01) brightness(1.035);
}

.hero__slide:nth-child(2) img { object-position: 50% 52%; }
.hero__slide:nth-child(3) img { object-position: 50% 48%; }

.hero__veil {
    z-index: 2;
    pointer-events: none;
    transition: background .7s var(--ease);
}

/*
 * The hero now preserves the supplied photography rather than darkening the
 * whole frame. The active slide chooses light or dark typography, while a
 * restrained local veil protects readability without hiding the image.
 */
.hero--ink-light .hero__veil {
    background:
        linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.035) 24%, rgba(0,0,0,.025) 68%, rgba(0,0,0,.22) 100%),
        radial-gradient(ellipse 64% 54% at 50% 52%, rgba(0,0,0,.31) 0%, rgba(0,0,0,.15) 44%, transparent 78%);
}

.hero--ink-dark .hero__veil {
    background:
        linear-gradient(180deg, rgba(255,255,255,.28) 0%, rgba(255,255,255,.035) 24%, rgba(255,255,255,.02) 70%, rgba(255,255,255,.20) 100%),
        radial-gradient(ellipse 66% 56% at 50% 52%, rgba(255,255,255,.48) 0%, rgba(255,255,255,.20) 46%, transparent 80%);
}

.hero__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: min(100%, 1000px);
    min-height: 100svh;
    margin: 0 auto;
    padding: calc(var(--header-height) + 4rem) var(--page) 8rem;
    text-align: center;
}

.hero__eyebrow {
    justify-content: center;
    color: rgba(255,255,255,.75);
}

.hero__eyebrow span {
    width: 2.5rem;
    height: 1px;
    background: currentColor;
}

.hero__title {
    margin-top: 1.5rem;
    font-size: clamp(3.6rem, 9vw, 9.25rem);
    font-weight: 300;
    letter-spacing: -.067em;
    line-height: .82;
    text-shadow: 0 15px 55px rgba(0,0,0,.28);
}

.hero__title span,
.hero__title em {
    display: block;
}

.hero__title em {
    margin-top: .08em;
    font-family: var(--font-display);
    font-weight: 500;
}

.hero__intro {
    max-width: 650px;
    margin-top: 2rem;
    color: rgba(255,255,255,.84);
    font-size: clamp(1rem, 1.55vw, 1.28rem);
    line-height: 1.75;
}

.hero--ink-light {
    color: var(--paper);
}

.hero--ink-light .hero__eyebrow,
.hero--ink-light .hero__intro {
    color: rgba(255,255,255,.92);
    text-shadow: 0 2px 14px rgba(0,0,0,.58);
}

.hero--ink-light .hero__title {
    text-shadow: 0 2px 3px rgba(0,0,0,.34), 0 18px 48px rgba(0,0,0,.50);
}

.hero--ink-dark {
    color: var(--ink);
}

.hero--ink-dark .hero__eyebrow,
.hero--ink-dark .hero__intro {
    color: rgba(17,17,17,.86);
    text-shadow: 0 1px 1px rgba(255,255,255,.92), 0 8px 28px rgba(255,255,255,.68);
}

.hero--ink-dark .hero__title {
    text-shadow: 0 1px 1px rgba(255,255,255,.96), 0 14px 42px rgba(255,255,255,.74);
}

.hero--ink-dark .button--white {
    color: var(--paper);
    background: var(--ink);
    border-color: var(--ink);
}

.hero--ink-dark .button--white:hover {
    color: var(--ink);
    background: rgba(255,255,255,.30);
}

.hero--ink-dark .button--ghost-light {
    color: var(--ink);
    background: rgba(255,255,255,.18);
    border-color: rgba(17,17,17,.50);
}

.hero--ink-dark .button--ghost-light:hover {
    color: var(--paper);
    background: var(--ink);
    border-color: var(--ink);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .85rem;
    margin-top: 2.2rem;
}

.hero__controls {
    position: absolute;
    right: var(--page);
    bottom: 2.2rem;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: .9rem;
}

.hero-arrow {
    display: grid;
    place-items: center;
    width: 2.7rem;
    height: 2.7rem;
    color: var(--paper);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    cursor: pointer;
    transition: background .3s ease, color .3s ease;
}

.hero-arrow:hover {
    color: var(--ink);
    background: var(--paper);
}

.hero-dots {
    display: flex;
    gap: .5rem;
}

.hero-dots button {
    display: grid;
    place-items: center;
    width: 1.5rem;
    height: 1.5rem;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.hero-dots span {
    display: block;
    width: .35rem;
    height: .35rem;
    background: rgba(255,255,255,.45);
    border-radius: 50%;
    transition: transform .3s ease, background .3s ease;
}

.hero-dots button.is-active span {
    background: var(--paper);
    transform: scale(1.7);
}

.hero__side-label {
    position: absolute;
    top: 50%;
    right: 1.35rem;
    z-index: 3;
    color: rgba(255,255,255,.55);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    transform: rotate(90deg) translateX(50%);
    transform-origin: right center;
}

.hero__scroll {
    position: absolute;
    bottom: 1.7rem;
    left: var(--page);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: .75rem;
    color: rgba(255,255,255,.7);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.hero__scroll i {
    position: relative;
    display: block;
    width: 3rem;
    height: 1px;
    overflow: hidden;
    background: rgba(255,255,255,.35);
}

.hero__scroll i::after {
    position: absolute;
    inset: 0;
    content: "";
    background: var(--paper);
    animation: scrollLine 2.2s infinite var(--ease);
}

@keyframes scrollLine {
    0% { transform: translateX(-100%); }
    60%, 100% { transform: translateX(100%); }
}

.hero--ink-dark .hero-arrow {
    color: var(--ink);
    background: rgba(255,255,255,.34);
    border-color: rgba(17,17,17,.32);
}

.hero--ink-dark .hero-arrow:hover {
    color: var(--paper);
    background: var(--ink);
}

.hero--ink-dark .hero-dots span {
    background: rgba(17,17,17,.40);
}

.hero--ink-dark .hero-dots button.is-active span {
    background: var(--ink);
}

.hero--ink-dark .hero__side-label,
.hero--ink-dark .hero__scroll {
    color: rgba(17,17,17,.68);
}

.hero--ink-dark .hero__scroll i {
    background: rgba(17,17,17,.28);
}

.hero--ink-dark .hero__scroll i::after {
    background: var(--ink);
}

.site-header--over-hero.hero-ink-dark:not(.is-scrolled) {
    color: var(--ink);
    background: linear-gradient(to bottom, rgba(255,255,255,.78), rgba(255,255,255,.24) 62%, transparent);
    border-color: rgba(17,17,17,.15);
}

.site-header--over-hero.hero-ink-dark:not(.is-scrolled) .brand__logo--light {
    opacity: 0;
}

.site-header--over-hero.hero-ink-dark:not(.is-scrolled) .brand__logo--dark {
    opacity: 1;
}

.site-header--over-hero.hero-ink-dark:not(.is-scrolled) .site-nav__shop {
    color: var(--paper);
    background: var(--ink);
    border-color: var(--ink);
}

.site-header--over-hero.hero-ink-dark:not(.is-scrolled) .site-nav__shop:hover {
    color: var(--ink);
    background: rgba(255,255,255,.28);
}

/* About */
.section--about {
    background: var(--paper);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;
}

.about-copy__lead {
    max-width: 610px;
    font-size: clamp(1.45rem, 2.3vw, 2.25rem);
    font-weight: 300;
    letter-spacing: -.035em;
    line-height: 1.35;
}

.about-copy > p:not(.about-copy__lead):not(.registered-note) {
    max-width: 560px;
    margin-top: 1.5rem;
    color: var(--muted);
    font-size: 1.06rem;
}

.audience-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: 2rem;
}

.audience-chips span {
    padding: .55rem .85rem;
    color: var(--ink-soft);
    background: var(--mist);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.registered-note {
    margin-top: 2rem;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.about-collage {
    position: relative;
    min-height: clamp(31rem, 50vw, 44rem);
}

.about-collage figure {
    position: absolute;
    overflow: hidden;
    background: var(--mist);
    box-shadow: var(--shadow);
}

.about-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}

.about-collage:hover img {
    transform: scale(1.035);
}

.about-collage__large {
    inset: 0 0 4rem 10%;
}

.about-collage__large img {
    object-position: center;
}

.about-collage__small {
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 46%;
    height: 42%;
    border: .75rem solid var(--paper);
}

.about-collage__caption {
    position: absolute;
    right: -1.2rem;
    bottom: 6rem;
    z-index: 3;
    padding: .75rem 1rem;
    color: var(--paper);
    background: var(--ink);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    transform: rotate(-90deg) translateX(100%);
    transform-origin: right bottom;
}

.principle-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(4rem, 8vw, 8rem);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.principle {
    position: relative;
    min-height: 14rem;
    padding: 2.4rem clamp(1.5rem, 3vw, 3rem);
}

.principle + .principle {
    border-left: 1px solid var(--line);
}

.principle span {
    color: var(--muted);
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .16em;
}

.principle h3 {
    margin-top: 2.2rem;
    font-size: clamp(1.8rem, 2.7vw, 2.8rem);
    font-weight: 300;
    letter-spacing: -.04em;
}

.principle p {
    margin-top: .55rem;
    color: var(--muted);
}

/* What we do */
.section--services {
    background: var(--mist);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.1rem, 2.5vw, 2rem);
}

.service-card {
    overflow: hidden;
    background: var(--paper);
    box-shadow: 0 10px 35px rgba(0,0,0,.06);
    transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}

.service-card:hover {
    z-index: 2;
    box-shadow: 0 28px 70px rgba(0,0,0,.14);
    transform: translateY(-10px);
}

.service-card figure {
    height: clamp(16rem, 24vw, 23rem);
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease), filter .8s var(--ease);
}

.service-card:hover img {
    filter: saturate(1.08);
    transform: scale(1.05);
}

.service-card__body {
    position: relative;
    min-height: 21rem;
    padding: clamp(2rem, 3.5vw, 3.4rem);
}

.service-card__body > span {
    color: var(--muted);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .18em;
}

.service-card h3 {
    margin-top: 2rem;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 300;
    letter-spacing: -.045em;
}

.service-card p {
    margin-top: 1rem;
    color: var(--muted);
    line-height: 1.75;
}

.image-statement {
    position: relative;
    display: grid;
    place-items: center;
    min-height: clamp(34rem, 70vw, 52rem);
    overflow: hidden;
    color: var(--paper);
    background: var(--ink);
}

.image-statement > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
    filter: saturate(.8);
}

.image-statement__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.48);
}

.image-statement__copy {
    position: relative;
    z-index: 2;
    width: min(100% - (2 * var(--page)), 900px);
    text-align: center;
}

.image-statement__copy > p {
    color: rgba(255,255,255,.74);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.image-statement h2 {
    margin-top: 1.25rem;
    font-size: clamp(3.4rem, 8vw, 8rem);
    font-weight: 300;
    letter-spacing: -.06em;
    line-height: .88;
}

.image-statement h2 em {
    font-family: var(--font-display);
    font-weight: 500;
}

.image-statement a {
    display: inline-flex;
    gap: .55rem;
    margin-top: 2rem;
    padding-bottom: .25rem;
    border-bottom: 1px solid currentColor;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

/* Products and gallery */
.section--products {
    background: var(--paper);
}

.category-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.category-strip article {
    min-height: 18rem;
    padding: 2rem clamp(1rem, 2.2vw, 2.2rem);
}

.category-strip article + article {
    border-left: 1px solid var(--line);
}

.category-strip span {
    color: var(--muted);
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .16em;
}

.category-strip h3 {
    margin-top: 2.3rem;
    font-size: clamp(1.3rem, 2vw, 1.85rem);
    font-weight: 400;
    letter-spacing: -.03em;
    line-height: 1.2;
}

.category-strip p {
    margin-top: 1rem;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.7;
}

.gallery-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: clamp(4rem, 7vw, 7rem);
    margin-bottom: 1.5rem;
}

.gallery-toolbar > p {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: .45rem;
}

.gallery-filters button {
    padding: .55rem .8rem;
    color: var(--muted);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color .25s ease, border-color .25s ease, background .25s ease;
}

.gallery-filters button:hover,
.gallery-filters button.is-active {
    color: var(--paper);
    background: var(--ink);
    border-color: var(--ink);
}

.food-gallery {
    display: grid;
    grid-auto-flow: dense;
    grid-auto-rows: clamp(12rem, 18vw, 17rem);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .7rem;
}

.gallery-item {
    position: relative;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    color: var(--paper);
    background: var(--ink);
    cursor: zoom-in;
    transition: opacity .35s ease, transform .5s var(--ease);
}

.gallery-item[hidden] {
    display: none !important;
}

.gallery-item--wide {
    grid-column: span 2;
}

.gallery-item--tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.88);
    transition: transform .8s var(--ease), filter .8s var(--ease);
}

.gallery-item::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, rgba(0,0,0,.68), transparent 62%);
    opacity: .75;
    transition: opacity .5s ease;
}

.gallery-item > span {
    position: absolute;
    right: 1.25rem;
    bottom: 1.1rem;
    left: 1.25rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: clamp(1rem, 1.5vw, 1.35rem);
    font-weight: 400;
    letter-spacing: -.02em;
    text-align: left;
    transform: translateY(.35rem);
    transition: transform .45s var(--ease);
}

.gallery-item small {
    margin-bottom: .22rem;
    color: rgba(255,255,255,.72);
    font-size: .57rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.gallery-item:hover img {
    filter: saturate(1.08);
    transform: scale(1.06);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover > span {
    transform: translateY(0);
}

.products-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

/* Business teaser */
.business-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 48rem;
    color: var(--paper);
    background: var(--ink);
}

.business-band__image {
    min-height: 38rem;
    overflow: hidden;
}

.business-band__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.78) contrast(1.04);
    transition: transform 1s var(--ease);
}

.business-band:hover .business-band__image img {
    transform: scale(1.025);
}

.business-band__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(4rem, 8vw, 8rem) var(--page);
}

.business-band h2 {
    max-width: 720px;
}

.business-band__content > p:not(.kicker) {
    max-width: 650px;
    margin-top: 1.75rem;
    color: rgba(255,255,255,.68);
    font-size: 1.06rem;
}

.business-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 2rem;
    margin-top: 2.8rem;
    border-top: 1px solid rgba(255,255,255,.2);
}

.business-benefits span {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.86);
    font-size: .77rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.business-band__actions,
.business-final__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

/* Founders */
.section--founders {
    background: var(--mist);
}

.founder-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.founder-card {
    display: grid;
    grid-template-columns: 9rem minmax(0, 1fr);
    min-height: 31rem;
    background: var(--paper);
}

.founder-card__identity {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 1rem;
    color: var(--paper);
    background: var(--ink);
}

.founder-card__identity span {
    font-family: var(--font-display);
    font-size: clamp(4.5rem, 8vw, 7rem);
    line-height: 1;
}

.founder-card__identity small {
    color: rgba(255,255,255,.5);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .2em;
}

.founder-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2.5rem, 5vw, 5rem);
}

.founder-card__content > p:first-child {
    color: var(--muted);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.founder-card h3 {
    margin-top: 1rem;
    font-size: clamp(2rem, 3.4vw, 3.5rem);
    font-weight: 300;
    letter-spacing: -.045em;
    line-height: 1.05;
}

.founder-card__line {
    width: 3rem;
    height: 1px;
    margin: 2rem 0;
    background: var(--ink);
}

.founder-card__content > p:last-child {
    color: var(--muted);
    line-height: 1.8;
}

/* Contact */
.contact-section {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    background: var(--ink);
}

.contact-panel {
    min-width: 0;
}

.contact-panel__inner {
    width: min(100%, 780px);
    padding: clamp(5rem, 9vw, 9rem) var(--page);
}

.contact-panel--details {
    color: var(--paper);
    background: var(--ink);
}

.contact-panel--details .contact-panel__inner {
    margin-left: auto;
}

.contact-panel--form {
    background: var(--paper);
}

.contact-panel--form .contact-panel__inner {
    margin-right: auto;
}

.contact-panel h2 {
    margin-top: 1.25rem;
}

.contact-panel--details > .contact-panel__inner > p:not(.kicker) {
    max-width: 580px;
    margin-top: 1.75rem;
    color: rgba(255,255,255,.64);
}

.contact-list {
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,.2);
}

.contact-list > div {
    display: grid;
    grid-template-columns: 8rem minmax(0, 1fr);
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255,255,255,.2);
}

.contact-list dt {
    color: rgba(255,255,255,.48);
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.contact-list dd {
    color: rgba(255,255,255,.88);
    font-size: .92rem;
}

.contact-list a:hover {
    text-decoration: underline;
    text-underline-offset: .2em;
}

.contact-panel--form h3 {
    margin-top: .9rem;
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    font-weight: 300;
    letter-spacing: -.045em;
    line-height: 1.1;
}

.form-intro {
    max-width: 600px;
    margin-top: 1rem;
    color: var(--muted);
    font-size: .92rem;
}

.contact-form {
    position: relative;
    margin-top: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.contact-form > label,
.form-row label,
.business-form-fields label {
    display: block;
    margin-bottom: 1.25rem;
}

.contact-form label > span:not(.consent-field span) {
    display: block;
    margin-bottom: .45rem;
    color: var(--ink-soft);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-form label small {
    color: var(--muted);
    font-size: .56rem;
    letter-spacing: .03em;
    text-transform: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    outline: 0;
    background: transparent;
    transition: border-color .25s ease, background .25s ease;
}

.contact-form input,
.contact-form select {
    height: 3.25rem;
    padding: .55rem 0;
}

.contact-form textarea {
    min-height: 8rem;
    padding: .75rem 0;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--ink);
}

.contact-form [aria-invalid="true"] {
    border-color: var(--error);
    background: rgba(156,39,39,.03);
}

.business-form-fields {
    margin: .35rem 0 1.3rem;
    padding: 1.25rem;
    background: var(--mist);
    border: 1px solid var(--line);
}

.business-form-fields[hidden] {
    display: none;
}

.business-form-note {
    color: var(--muted);
    font-size: .76rem;
    line-height: 1.6;
}

.consent-field {
    display: grid !important;
    grid-template-columns: 1.15rem minmax(0, 1fr);
    gap: .7rem;
    align-items: start;
    margin: .3rem 0 1.4rem !important;
    cursor: pointer;
}

.consent-field input {
    width: 1rem;
    height: 1rem;
    margin-top: .25rem;
    accent-color: var(--ink);
}

.consent-field span {
    color: var(--muted);
    font-size: .79rem;
    line-height: 1.55;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.form-privacy {
    max-width: 400px;
    color: var(--muted);
    font-size: .7rem;
    line-height: 1.55;
}

.form-privacy a {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: .18em;
}

.recaptcha-disclosure {
    margin-top: .25rem;
}

.form-status {
    min-height: 1.5rem;
    margin-top: 1.1rem;
    font-size: .82rem;
    font-weight: 600;
}

.form-status.is-error { color: var(--error); }
.form-status.is-success { color: var(--success); }
.noscript-note { margin-top: 1rem; color: var(--error); font-size: .8rem; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.grecaptcha-badge { visibility: hidden !important; }

/* Footer */
.site-footer {
    padding: clamp(4rem, 7vw, 7rem) var(--page) 1.5rem;
    color: var(--paper);
    background: #080808;
}

.site-footer__top,
.site-footer__base {
    width: min(100%, var(--content));
    margin: 0 auto;
}

.site-footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
}

.site-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.site-footer__brand img {
    width: 70px;
    height: 70px;
}

.site-footer__brand span {
    display: flex;
    flex-direction: column;
}

.site-footer__brand strong {
    font-size: 1.15rem;
    font-weight: 500;
}

.site-footer__brand small {
    margin-top: .2rem;
    color: rgba(255,255,255,.48);
    font-size: .76rem;
}

.site-footer__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(7rem, 1fr));
    gap: .85rem 2.5rem;
}

.site-footer__links a {
    color: rgba(255,255,255,.64);
    font-size: .71rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    transition: color .25s ease;
}

.site-footer__links a:hover {
    color: var(--paper);
}

.site-footer__base {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.45);
    font-size: .68rem;
    letter-spacing: .04em;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 4vw, 4rem);
    color: var(--paper);
    background: rgba(0,0,0,.94);
    backdrop-filter: blur(8px);
}

.lightbox[hidden] { display: none; }

.lightbox figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: min(100%, 1200px);
    max-height: 88vh;
}

.lightbox img {
    width: auto;
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
}

.lightbox figcaption {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.lightbox__close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    color: var(--paper);
    background: transparent;
    font-size: 2.2rem;
    font-weight: 200;
    cursor: pointer;
}

/* Business page */
.business-page {
    background: var(--paper);
}

.business-hero {
    position: relative;
    display: grid;
    align-items: center;
    min-height: 100svh;
    overflow: hidden;
    color: var(--paper);
    background: var(--ink);
}

.business-hero__media,
.business-hero__media > div {
    position: absolute;
    inset: 0;
}

.business-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.75) contrast(1.03);
}

.business-hero__media > div {
    background: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.58) 52%, rgba(0,0,0,.28) 100%);
}

.business-hero__content {
    position: relative;
    z-index: 2;
    width: min(100%, var(--content));
    margin: 0 auto;
    padding: calc(var(--header-height) + 5rem) var(--page) 7rem;
}

.business-hero__content .hero__eyebrow {
    justify-content: flex-start;
}

.business-hero h1 {
    max-width: 980px;
    margin-top: 1.5rem;
    font-size: clamp(3.25rem, 7vw, 7.2rem);
    font-weight: 300;
    letter-spacing: -.065em;
    line-height: .91;
}

.business-hero__content > p:not(.hero__eyebrow) {
    max-width: 680px;
    margin-top: 1.8rem;
    color: rgba(255,255,255,.78);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.business-hero .hero__actions {
    justify-content: flex-start;
}

.business-hero .hero__scroll {
    left: var(--page);
}

.business-intro {
    background: var(--paper);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.package-card {
    min-height: 20rem;
    padding: clamp(2rem, 4vw, 3.5rem);
    background: var(--paper);
    transition: color .4s var(--ease), background .4s var(--ease), transform .4s var(--ease);
}

.package-card:hover {
    z-index: 1;
    color: var(--paper);
    background: var(--ink);
    transform: translateY(-6px);
}

.package-card > span {
    color: var(--muted);
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .16em;
}

.package-card:hover > span,
.package-card:hover p {
    color: rgba(255,255,255,.66);
}

.package-card h3 {
    margin-top: 2.2rem;
    font-size: clamp(1.6rem, 2.5vw, 2.35rem);
    font-weight: 300;
    letter-spacing: -.04em;
    line-height: 1.1;
}

.package-card p {
    margin-top: 1rem;
    color: var(--muted);
    line-height: 1.75;
    transition: color .4s ease;
}

.business-audience {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 46rem;
    color: var(--paper);
    background: var(--ink);
}

.business-audience__media {
    min-height: 35rem;
    overflow: hidden;
}

.business-audience__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.78);
}

.business-audience__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(4rem, 8vw, 8rem) var(--page);
}

.business-audience h2 {
    max-width: 740px;
}

.business-audience__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,.2);
}

.business-audience__list span {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.78);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.business-process {
    background: var(--mist);
}

.process-list {
    list-style: none;
    border-top: 1px solid var(--line);
}

.process-list li {
    display: grid;
    grid-template-columns: 7rem minmax(0, 1fr);
    gap: clamp(2rem, 7vw, 8rem);
    padding: clamp(2rem, 4vw, 3.75rem) 0;
    border-bottom: 1px solid var(--line);
}

.process-list > li > span {
    color: var(--muted);
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .18em;
}

.process-list h3 {
    font-size: clamp(1.6rem, 2.8vw, 2.7rem);
    font-weight: 300;
    letter-spacing: -.04em;
}

.process-list p {
    max-width: 700px;
    margin-top: .75rem;
    color: var(--muted);
}

.business-ready {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(3rem, 8vw, 8rem);
    padding: var(--section) var(--page);
    background: var(--paper);
}

.business-ready > * {
    max-width: 680px;
}

.business-ready__copy {
    margin-left: auto;
}

.business-ready__copy > p:not(.kicker) {
    margin-top: 1.5rem;
    color: var(--muted);
}

.business-ready__list {
    align-self: center;
    border-top: 1px solid var(--line);
}

.business-ready__list p {
    display: grid;
    grid-template-columns: 3.5rem minmax(0, 1fr);
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--line);
}

.business-ready__list span {
    color: var(--muted);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .15em;
}

.business-final {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 44rem;
    overflow: hidden;
    color: var(--paper);
    background: var(--ink);
}

.business-final__media,
.business-final__media::after {
    position: absolute;
    inset: 0;
}

.business-final__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.72);
}

.business-final__media::after {
    content: "";
    background: rgba(0,0,0,.62);
}

.business-final__content {
    position: relative;
    z-index: 2;
    width: min(100% - (2 * var(--page)), 900px);
    text-align: center;
}

.business-final__content .kicker {
    justify-content: center;
}

.business-final__content > p:not(.kicker) {
    max-width: 650px;
    margin: 1.6rem auto 0;
    color: rgba(255,255,255,.7);
}

.business-final__actions {
    justify-content: center;
}

/* Legal page */
.legal-page {
    background: var(--mist);
}

.legal-page .site-header {
    position: sticky;
}

.legal-back {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.legal-content {
    width: min(100% - (2 * var(--page)), 880px);
    margin: 0 auto;
    padding: clamp(5rem, 9vw, 9rem) 0;
}

.legal-content h1 {
    margin-top: 1.2rem;
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    font-weight: 300;
    letter-spacing: -.06em;
    line-height: .95;
}

.legal-lead {
    max-width: 700px;
    margin-top: 1.5rem;
    color: var(--muted);
    font-size: 1.15rem;
}

.legal-content section {
    padding: 2rem 0;
    border-bottom: 1px solid var(--line);
}

.legal-content section:first-of-type {
    margin-top: 3rem;
    border-top: 1px solid var(--line);
}

.legal-content h2 {
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: -.02em;
}

.legal-content section p,
.legal-content address {
    margin-top: .8rem;
    color: var(--muted);
    font-style: normal;
}

.legal-content a {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: .2em;
}

.legal-updated {
    margin-top: 2rem;
    color: var(--muted);
    font-size: .75rem;
}

.legal-footer {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5rem var(--page);
    color: rgba(255,255,255,.6);
    background: var(--ink);
    font-size: .72rem;
}

/* Responsive */
@media (max-width: 1180px) {
    :root { --header-height: 78px; }

    .site-nav {
        gap: .75rem;
    }

    .site-nav a {
        font-size: .61rem;
    }

    .site-nav__shop {
        padding-right: .8rem !important;
        padding-left: .8rem !important;
    }

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

    .category-strip article:nth-child(4) {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .category-strip article:nth-child(5) {
        border-top: 1px solid var(--line);
    }

    .contact-section {
        grid-template-columns: .9fr 1.1fr;
    }
}

@media (max-width: 980px) {
    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        inset: 0;
        z-index: 1001;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 0;
        padding: calc(var(--header-height) + 2rem) var(--page) 2rem;
        color: var(--paper);
        background: rgba(10,10,10,.98);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-1rem);
        transition: opacity .35s var(--ease), visibility .35s var(--ease), transform .35s var(--ease);
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-nav a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: .75rem 0;
        border-bottom: 1px solid rgba(255,255,255,.14);
        font-size: clamp(1.25rem, 5vw, 2.3rem);
        font-weight: 300;
        letter-spacing: -.025em;
        text-transform: none;
    }

    .site-nav > a:not(.site-nav__shop)::after {
        display: none;
    }

    .site-nav__shop,
    .site-header--over-hero:not(.is-scrolled) .site-nav__shop {
        justify-content: center;
        margin-top: 1.4rem;
        padding: 1rem 1.25rem !important;
        color: var(--ink);
        background: var(--paper);
        border-color: var(--paper);
        border-radius: 999px;
        font-size: .75rem;
        font-weight: 700;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .menu-open .site-header {
        color: var(--paper) !important;
        background: transparent !important;
        border-color: rgba(255,255,255,.14) !important;
        box-shadow: none !important;
    }

    .menu-open .brand__logo--light {
        opacity: 1 !important;
    }

    .menu-open .brand__logo--dark {
        opacity: 0 !important;
    }

    .section-heading--split,
    .about-grid,
    .business-ready {
        grid-template-columns: 1fr;
    }

    .section-heading--split {
        align-items: start;
    }

    .section-heading--split .section-lead {
        margin-top: 0;
    }

    .about-copy {
        max-width: 720px;
    }

    .about-collage {
        min-height: 40rem;
    }

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

    .service-card {
        display: grid;
        grid-template-columns: .9fr 1.1fr;
    }

    .service-card figure {
        height: auto;
        min-height: 24rem;
    }

    .service-card__body {
        min-height: 24rem;
    }

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

    .business-band,
    .business-audience,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .business-band__image,
    .business-audience__media {
        min-height: 32rem;
    }

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

    .contact-panel__inner {
        width: 100%;
        max-width: none;
    }

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

    .business-ready__copy {
        margin-left: 0;
    }
}

@media (max-width: 720px) {
    :root {
        --page: 1.15rem;
        --section: 5.5rem;
        --header-height: 72px;
    }

    .hero--ink-light .hero__veil {
        background:
            linear-gradient(180deg, rgba(0,0,0,.16) 0%, rgba(0,0,0,.025) 26%, rgba(0,0,0,.15) 50%, rgba(0,0,0,.44) 100%),
            linear-gradient(90deg, rgba(0,0,0,.15) 0%, transparent 82%);
    }

    .hero--ink-dark .hero__veil {
        background:
            linear-gradient(180deg, rgba(255,255,255,.24) 0%, rgba(255,255,255,.02) 28%, rgba(255,255,255,.12) 52%, rgba(255,255,255,.48) 100%),
            linear-gradient(90deg, rgba(255,255,255,.16) 0%, transparent 82%);
    }

    .brand__mark {
        width: 43px;
        height: 43px;
    }

    .brand__name {
        font-size: .92rem;
    }

    .hero__content {
        align-items: flex-start;
        justify-content: flex-end;
        padding-bottom: 9rem;
        text-align: left;
    }

    .hero__eyebrow {
        justify-content: flex-start;
    }

    .hero__title {
        font-size: clamp(3.45rem, 17vw, 5.8rem);
        line-height: .86;
    }

    .hero__intro {
        max-width: 34rem;
        font-size: .96rem;
    }

    .hero__actions {
        justify-content: flex-start;
    }

    .hero__controls {
        right: var(--page);
        bottom: 1.35rem;
    }

    .hero__side-label {
        display: none;
    }

    .hero__scroll {
        bottom: 1.4rem;
    }

    .hero__scroll span {
        display: none;
    }

    .section-heading h2,
    .business-band h2,
    .contact-panel h2,
    .business-audience h2,
    .business-ready h2,
    .business-final h2 {
        font-size: clamp(2.6rem, 13vw, 4.4rem);
    }

    .about-grid {
        gap: 3.5rem;
    }

    .about-collage {
        min-height: 28rem;
    }

    .about-collage__large {
        inset: 0 0 3rem 7%;
    }

    .about-collage__small {
        width: 50%;
        height: 38%;
        border-width: .45rem;
    }

    .about-collage__caption {
        right: -.7rem;
        bottom: 4rem;
        font-size: .55rem;
    }

    .principle-row {
        grid-template-columns: 1fr;
    }

    .principle {
        min-height: auto;
        padding: 1.8rem .25rem;
    }

    .principle + .principle {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .principle h3 {
        margin-top: .9rem;
    }

    .service-card {
        display: block;
    }

    .service-card figure {
        min-height: 18rem;
    }

    .service-card__body {
        min-height: auto;
        padding: 2rem;
    }

    .image-statement {
        min-height: 36rem;
    }

    .image-statement h2 {
        font-size: clamp(3rem, 15vw, 5.5rem);
    }

    .category-strip {
        display: block;
    }

    .category-strip article {
        min-height: auto;
        padding: 1.6rem .25rem;
    }

    .category-strip article + article,
    .category-strip article:nth-child(4),
    .category-strip article:nth-child(5) {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .category-strip h3 {
        margin-top: .7rem;
    }

    .gallery-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .gallery-filters {
        justify-content: flex-start;
        overflow-x: auto;
        width: 100%;
        padding-bottom: .4rem;
        flex-wrap: nowrap;
        scrollbar-width: thin;
    }

    .gallery-filters button {
        flex: 0 0 auto;
    }

    .food-gallery {
        grid-auto-rows: 14rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .45rem;
    }

    .gallery-item--wide {
        grid-column: span 2;
    }

    .gallery-item--tall {
        grid-row: span 1;
    }

    .gallery-item > span {
        right: .8rem;
        bottom: .75rem;
        left: .8rem;
        font-size: .9rem;
    }

    .products-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .business-band__image,
    .business-audience__media {
        min-height: 25rem;
    }

    .business-benefits,
    .business-audience__list {
        grid-template-columns: 1fr;
    }

    .founder-card {
        grid-template-columns: 5.5rem minmax(0, 1fr);
        min-height: auto;
    }

    .founder-card__identity {
        padding: 2rem .5rem;
    }

    .founder-card__identity span {
        font-size: 3.8rem;
    }

    .founder-card__content {
        padding: 2.25rem 1.5rem;
    }

    .contact-list > div {
        grid-template-columns: 1fr;
        gap: .35rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .form-footer .button {
        width: 100%;
    }

    .site-footer__top,
    .site-footer__base {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer__links {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__base {
        margin-top: 3rem;
    }

    .business-hero__content {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        min-height: 100svh;
        padding-bottom: 8.5rem;
    }

    .business-hero h1 {
        font-size: clamp(3.2rem, 15vw, 5.6rem);
    }

    .business-hero .hero__scroll {
        display: none;
    }

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

    .package-card {
        min-height: auto;
    }

    .process-list li {
        grid-template-columns: 3rem minmax(0, 1fr);
        gap: 1.2rem;
    }

    .business-ready {
        padding-right: var(--page);
        padding-left: var(--page);
    }

    .legal-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 430px) {
    .button {
        width: 100%;
    }

    .hero__actions {
        width: 100%;
    }

    .hero-arrow {
        width: 2.35rem;
        height: 2.35rem;
    }

    .hero__scroll {
        display: none;
    }

    .food-gallery {
        grid-auto-rows: 13rem;
    }

    .gallery-item:not(.gallery-item--wide) {
        grid-column: span 1;
    }

    .site-footer__links {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .js .reveal { opacity: 1; transform: none; }
}
