:root {
    --bg: #0d0d0d;
    --bg-soft: #171717;
    --panel: #22201d;
    --text: #f4f0ea;
    --muted: #b8afa4;
    --line: rgba(244, 240, 234, 0.14);
    --accent: #0b2e41;
    --accent-dark: #0b2e41;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

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

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 1rem;
    z-index: 20;
    background: var(--accent);
    color: var(--text);
    padding: 0.6rem 1rem;
}

.skip-link:focus {
    left: 1rem;
}

.wrap {
    width: min(calc(100% - 2rem), var(--max));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(13, 13, 13, 0.88);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.site-header__inner {
    width: min(calc(100% - 2rem), 1320px);
    min-height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.brand__mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    background: var(--text);
    color: #111;
    font-size: 0.76rem;
}

.brand__logo img {
    width: auto;
    max-width: 128px;
    max-height: 48px;
}

.brand__text {
    font-size: 0.95rem;
}

.primary-nav__list,
.footer-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-nav li {
    position: relative;
}

.primary-nav a,
.footer-nav a {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.primary-nav a:hover,
.footer-nav a:hover {
    color: var(--text);
}

.primary-nav .sub-menu {
    position: absolute;
    left: -1rem;
    top: 100%;
    min-width: 240px;
    display: none;
    margin: 0;
    padding: 0.8rem;
    background: rgba(13, 13, 13, 0.96);
    border: 1px solid var(--line);
    list-style: none;
}

.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu {
    display: block;
}

.primary-nav .sub-menu a {
    display: block;
    padding: 0.55rem 0.35rem;
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text);
    padding: 0.65rem 0.85rem;
    font: inherit;
    font-weight: 800;
    text-transform: uppercase;
}

.hero {
    position: relative;
    min-height: 760px;
    display: grid;
    align-items: end;
    overflow: hidden;
}

.hero__media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(13, 13, 13, 0.18), #0d0d0d 94%),
        linear-gradient(120deg, rgba(214, 255, 63, 0.2), transparent 32%),
        var(--hero-image, linear-gradient(135deg, #1c1c1c, #0d0d0d)) var(--hero-position, center center) / cover;
    opacity: 0.72;
}

.hero__content {
    position: relative;
    padding: 10rem 0 7rem;
}

.eyebrow {
    margin: 0 0 0.8rem;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 0.98;
    letter-spacing: 0;
}

h1 {
    max-width: 880px;
    font-size: clamp(4rem, 10vw, 8.6rem);
    text-transform: uppercase;
}

h2 {
    max-width: 820px;
    font-size: clamp(2.4rem, 5vw, 5.2rem);
    text-transform: uppercase;
}

h3 {
    font-size: clamp(1.45rem, 2.3vw, 2.2rem);
}

.hero p {
    max-width: 620px;
    color: var(--muted);
    font-size: 1.22rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.cred-strip {
    background: #080808;
    border-block: 1px solid var(--line);
}

.cred-strip__inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    overflow: hidden;
}

.cred-strip p {
    margin: 0;
}

.cred-strip__label {
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.cred-strip__track {
    min-width: 0;
    flex: 1;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.cred-strip__items {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 2rem;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    animation: cred-scroll 34s linear infinite;
}

.cred-strip__item {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    white-space: nowrap;
}

.cred-strip__item img {
    width: auto;
    max-width: 116px;
    height: 34px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.82;
}

@keyframes cred-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.15rem;
    background: var(--accent);
    color: var(--text);
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
}

.button--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
}

.text-link {
    display: inline-flex;
    color: var(--text);
    font-weight: 900;
    text-transform: uppercase;
    text-decoration-color: var(--accent);
    text-underline-offset: 0.35rem;
}

.content-section {
    padding: 6rem 0;
}

.content-section--intro {
    padding-top: 4rem;
}

.content-section--dark {
    background: var(--bg-soft);
    border-block: 1px solid var(--line);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.7fr);
    gap: clamp(2rem, 7vw, 7rem);
}

.content-flow > * + * {
    margin-top: 1.2rem;
}

.content-flow p,
.page-content p {
    color: var(--muted);
    font-size: 1.08rem;
}

.section-heading {
    margin-bottom: 2rem;
}

.section-heading--row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
}

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

.service-grid article {
    min-height: 260px;
    padding: 2rem;
    background: var(--bg-soft);
}

.service-grid p,
.project-card p,
.listing-card p,
.site-footer p {
    color: var(--muted);
}

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

.project-card {
    background: var(--panel);
    border: 1px solid var(--line);
    overflow: hidden;
}

.project-card a {
    display: block;
    min-height: 100%;
    text-decoration: none;
}

.project-card__media {
    aspect-ratio: 4 / 5;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(214, 255, 63, 0.18), transparent),
        #111;
    color: rgba(244, 240, 234, 0.4);
    font-weight: 900;
    text-transform: uppercase;
}

.project-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card__body {
    padding: 1.25rem;
}

.project-card h3 {
    text-transform: uppercase;
}

.page-hero {
    padding: 8rem 0 4rem;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
}

.page-hero p {
    max-width: 720px;
    color: var(--muted);
    font-size: 1.15rem;
}

.page-content {
    max-width: 860px;
}

.about-page .page-content {
    max-width: none;
}

.services-page .page-content {
    max-width: none;
}

.contact-page .page-content {
    max-width: none;
}

.podcast-page .page-content {
    max-width: none;
}

.page-content h2,
.page-content h3 {
    margin-top: 2.6rem;
}

.featured-frame {
    margin: 0 0 2rem;
}

.featured-frame img {
    width: 100%;
    max-height: 640px;
    object-fit: cover;
}

.about-hero {
    padding: 6rem 0 5rem;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
}

.about-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.72fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: end;
}

.about-hero__copy p:not(.eyebrow) {
    max-width: 680px;
    color: var(--muted);
    font-size: 1.18rem;
}

.about-hero__image {
    margin: 0;
    border: 1px solid var(--line);
    background: #111;
}

.about-hero__image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.about-content {
    padding-top: 5rem;
}

.about-lede {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
    margin-bottom: 5rem;
}

.about-lede .standfirst {
    color: var(--text);
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1.18;
}

.about-panel {
    padding: 1.5rem;
    background: var(--bg-soft);
    border: 1px solid var(--line);
}

.about-panel p {
    margin: 0;
}

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

.about-grid > div {
    min-height: 210px;
    padding: 1.5rem;
    background: var(--bg-soft);
}

.about-grid h3 {
    margin-top: 0;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.about-image-band {
    margin: 4rem 0 0;
}

.about-image-band .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-hero {
    padding: 7rem 0 5rem;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
}

.services-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: end;
}

.services-hero__grid p {
    color: var(--muted);
    font-size: 1.18rem;
}

.services-content {
    padding-top: 5rem;
}

.services-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
    margin-bottom: 4rem;
}

.services-intro .standfirst {
    color: var(--text);
    font-size: clamp(1.5rem, 3vw, 2.35rem);
    line-height: 1.18;
}

.service-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-bottom: 5rem;
}

.service-card {
    min-height: 100%;
    background: var(--panel);
    border: 1px solid var(--line);
}

.service-card figure {
    margin: 0;
}

.service-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.service-card__body {
    padding: 1.35rem;
}

.service-card h2 {
    margin: 0;
    font-size: clamp(1.45rem, 2.6vw, 2.25rem);
}

.service-card ul,
.deliverables-list {
    margin: 1.2rem 0 0;
    padding-left: 1.1rem;
    color: var(--muted);
}

.service-card li + li,
.deliverables-list li + li {
    margin-top: 0.45rem;
}

.deliverables-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(280px, 1fr);
    gap: clamp(2rem, 6vw, 5rem);
    padding: 2rem;
    background: var(--bg-soft);
    border: 1px solid var(--line);
}

.services-cta {
    margin-top: 5rem;
    padding: 4rem 0 0;
    border-top: 1px solid var(--line);
}

.contact-hero {
    padding: 7rem 0 5rem;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
}

.contact-hero__grid,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
}

.contact-hero__grid p,
.contact-aside p {
    color: var(--muted);
}

.contact-content {
    padding-top: 5rem;
}

.contact-aside {
    position: sticky;
    top: 110px;
}

.contact-form-panel {
    padding: 1.5rem;
    background: var(--panel);
    border: 1px solid var(--line);
}

.enquiry-form {
    display: grid;
    gap: 1.1rem;
}

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

.enquiry-form label {
    display: grid;
    gap: 0.4rem;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 900;
    text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 0;
    background: #111;
    color: var(--text);
    font: inherit;
    padding: 0.85rem;
}

.enquiry-form textarea {
    resize: vertical;
}

.form-notice {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    background: rgba(255, 122, 69, 0.14);
    border: 1px solid rgba(255, 122, 69, 0.35);
}

.form-notice--success {
    background: rgba(24, 183, 173, 0.14);
    border-color: rgba(24, 183, 173, 0.35);
}

.podcast-hero {
    padding: 7rem 0 5rem;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
}

.podcast-hero__grid,
.podcast-feature__grid,
.podcast-home__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: end;
}

.podcast-hero__copy p:not(.eyebrow) {
    max-width: 680px;
    color: var(--muted);
    font-size: 1.18rem;
}

.podcast-stat-panel {
    display: grid;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.podcast-stat-panel div {
    padding: 1.25rem;
    background: var(--panel);
}

.podcast-stat-panel strong,
.podcast-stat-panel span {
    display: block;
}

.podcast-stat-panel strong {
    color: var(--text);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
    text-transform: uppercase;
}

.podcast-stat-panel span {
    margin-top: 0.45rem;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.podcast-feature {
    padding-top: 5rem;
}

.podcast-feature__grid {
    align-items: center;
}

.podcast-video {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(24, 183, 173, 0.2), transparent),
        #111;
    border: 1px solid var(--line);
}

.podcast-video iframe,
.podcast-video__placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.podcast-video iframe {
    border: 0;
}

.podcast-video__placeholder {
    display: grid;
    place-items: center;
    color: rgba(244, 240, 234, 0.58);
    font-weight: 900;
    text-transform: uppercase;
}

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

.podcast-grid article {
    min-height: 230px;
    padding: 1.5rem;
    background: var(--bg-soft);
}

.podcast-grid p,
.podcast-home p {
    color: var(--muted);
}

.wp-block-gallery,
.gallery {
    margin-top: 2rem;
}

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

.gallery-item {
    margin: 0;
    perspective: 1000px;
}

.gallery-icon {
    display: block;
    height: 100%;
}

.gallery-icon a {
    background: #0b2e41;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
    display: block;
    height: 100%;
    isolation: isolate;
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    transition: box-shadow 220ms ease, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-icon a::after {
    align-items: center;
    backface-visibility: hidden;
    background: linear-gradient(135deg, rgba(11, 46, 65, 0.96), rgba(28, 91, 109, 0.92));
    color: #fff;
    content: "View image";
    display: flex;
    font-size: 0.78rem;
    font-weight: 850;
    inset: 0;
    justify-content: center;
    letter-spacing: 0.08em;
    position: absolute;
    text-transform: uppercase;
    transform: rotateY(180deg);
}

.gallery img {
    backface-visibility: hidden;
    border: 0 !important;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

@media (hover: hover) and (pointer: fine) {
    .gallery-icon a:hover,
    .gallery-icon a:focus-visible {
        box-shadow: 0 22px 46px rgba(0, 0, 0, 0.22);
        transform: rotateY(180deg) translateY(-2px);
    }
}

.gallery-icon a:focus-visible {
    outline: 3px solid rgba(11, 46, 65, 0.35);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    .gallery-icon a {
        transition: box-shadow 160ms ease;
    }

    .gallery-icon a:hover,
    .gallery-icon a:focus-visible {
        transform: none;
    }
}

.gallery-caption,
.wp-block-image figcaption,
.wp-block-gallery figcaption {
    display: none;
}

.project-hero {
    position: relative;
    min-height: 620px;
    display: grid;
    align-items: end;
    background: #111;
    overflow: hidden;
}

.project-hero__media {
    position: absolute;
    inset: 0;
}

.project-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.15), var(--bg));
}

.project-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-hero__content {
    position: relative;
    padding: 8rem 0 5rem;
}

.project-hero__content p {
    max-width: 720px;
    color: var(--muted);
}

.project-content {
    padding-top: 5rem;
}

.project-page-content {
    max-width: none;
}

.project-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
    margin-bottom: 4rem;
}

.project-intro .standfirst {
    color: var(--text);
    font-size: clamp(1.5rem, 3vw, 2.35rem);
    line-height: 1.18;
}

.project-facts {
    display: grid;
    gap: 1px;
    margin: 0;
    background: var(--line);
    border: 1px solid var(--line);
}

.project-facts div {
    padding: 1rem;
    background: var(--bg-soft);
}

.project-facts dt {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.project-facts dd {
    margin: 0.25rem 0 0;
    color: var(--text);
    font-weight: 800;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin: 4rem 0 5rem;
    background: var(--line);
    border: 1px solid var(--line);
}

.case-study-grid > div {
    min-height: 230px;
    padding: 1.5rem;
    background: var(--bg-soft);
}

.case-study-grid h2 {
    margin: 0;
    font-size: clamp(1.45rem, 2.8vw, 2.35rem);
}

.project-gallery-heading {
    max-width: 820px;
    margin-bottom: 2rem;
}

.project-gallery-heading p {
    color: var(--muted);
}

.project-cta {
    margin-top: 5rem;
    padding: 4rem 0 0;
    border-top: 1px solid var(--line);
}

.cta-band {
    padding: 5rem 0;
    background: var(--accent);
    color: var(--text);
}

.cta-band .eyebrow {
    color: var(--text);
}

.cta-band .button {
    margin-top: 1.5rem;
    background: #111;
    color: var(--text);
}

.site-footer {
    padding: 4rem 0;
    background: #080808;
    border-top: 1px solid var(--line);
}

.site-footer__inner {
    width: min(calc(100% - 2rem), var(--max));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
}

.site-footer__links {
    text-align: right;
}

.brand--footer {
    margin-bottom: 1rem;
}

.listing-card {
    border-bottom: 1px solid var(--line);
    padding: 1.5rem 0;
}

.shop-content {
    padding-top: 5rem;
}

.woocommerce-wrap {
    color: var(--text);
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering,
.woocommerce .product_meta,
.woocommerce .woocommerce-breadcrumb,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-privacy-policy-text,
.woocommerce form .form-row label,
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    color: var(--muted);
}

.woocommerce .woocommerce-products-header {
    display: none;
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin: 2rem 0 0;
    padding: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none;
}

.woocommerce ul.products li.product {
    width: auto !important;
    margin: 0 !important;
    padding: 0 0 1.25rem;
    float: none !important;
    background: var(--panel);
    border: 1px solid var(--line);
}

.woocommerce ul.products li.product a {
    text-decoration: none;
}

.woocommerce ul.products li.product img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    margin: 0 0 1.1rem;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce div.product .product_title {
    color: var(--text);
    text-transform: uppercase;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
    margin-inline: 1.1rem;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--text);
    font-weight: 900;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    border-radius: 0;
    background: var(--accent);
    color: var(--text);
    font-weight: 900;
    text-transform: uppercase;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    background: var(--text);
    color: #111;
}

.woocommerce .quantity .qty,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .select2-container--default .select2-selection--single {
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: #111;
    color: var(--text);
    padding: 0.7rem;
}

.woocommerce table.shop_table {
    border: 1px solid var(--line);
    border-radius: 0;
    background: var(--panel);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    border-color: var(--line);
}

.woocommerce .cart_totals,
.woocommerce-checkout-review-order,
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content {
    padding: 1.25rem;
    background: var(--panel);
    border: 1px solid var(--line);
}

.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error {
    border-top-color: var(--accent);
    background: var(--panel);
}

@media (max-width: 860px) {
    .site-header__inner {
        min-height: 68px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .primary-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 68px;
        display: none;
        background: #0d0d0d;
        border-bottom: 1px solid var(--line);
        padding: 1rem;
    }

    .primary-nav.is-open {
        display: block;
    }

    .primary-nav__list {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }

    .primary-nav a {
        display: block;
        padding: 0.9rem 0;
    }

    .primary-nav .sub-menu {
        position: static;
        display: block;
        min-width: 0;
        padding: 0 0 0 1rem;
        background: transparent;
        border: 0;
    }

    .primary-nav .sub-menu a {
        padding: 0.65rem 0;
        white-space: normal;
    }

    .hero {
        min-height: 620px;
    }

    .hero__content {
        padding: 7rem 0 4rem;
    }

    h1 {
        font-size: clamp(3rem, 14vw, 5.2rem);
    }

    h2 {
        font-size: clamp(2.1rem, 9vw, 4rem);
    }

    .split,
    .service-grid,
    .project-grid,
    .podcast-hero__grid,
    .podcast-feature__grid,
    .podcast-home__grid,
    .podcast-grid,
    .services-hero__grid,
    .services-intro,
    .service-card-grid,
    .deliverables-panel,
    .contact-hero__grid,
    .contact-layout,
    .project-intro,
    .case-study-grid,
    .about-hero__grid,
    .about-lede,
    .about-grid,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .section-heading--row {
        display: block;
    }

    .site-footer__links {
        text-align: left;
    }

    .footer-nav {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.6rem;
    }

    .cred-strip__inner {
        align-items: center;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        padding: 1rem 0;
    }

    .cred-strip__items {
        gap: 1.4rem;
    }

    .cred-strip__item img {
        max-width: 96px;
        height: 28px;
    }

    .project-hero {
        min-height: 560px;
    }

    .project-hero__content {
        padding: 7rem 0 4rem;
    }

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

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

@media (max-width: 560px) {
    .wrap,
    .site-header__inner,
    .site-footer__inner {
        width: min(calc(100% - 1.25rem), var(--max));
    }

    .brand__text {
        display: none;
    }

    .hero {
        min-height: 590px;
    }

    .hero__media {
        background:
            linear-gradient(180deg, rgba(13, 13, 13, 0.12), #0d0d0d 94%),
            linear-gradient(120deg, rgba(24, 183, 173, 0.18), transparent 38%),
            var(--hero-image, linear-gradient(135deg, #1c1c1c, #0d0d0d)) var(--hero-position-mobile, var(--hero-position, center center)) / cover;
    }

    .hero__content {
        padding: 6.5rem 0 3rem;
    }

    h1 {
        font-size: clamp(2.35rem, 12vw, 4rem);
    }

    h2 {
        font-size: clamp(2rem, 10vw, 3.1rem);
    }

    h3 {
        font-size: clamp(1.35rem, 7vw, 1.8rem);
    }

    .content-section {
        padding: 4rem 0;
    }

    .about-hero,
    .services-hero,
    .podcast-hero,
    .contact-hero {
        padding: 5.5rem 0 3.5rem;
    }

    .page-hero {
        padding-top: 6rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
        min-height: 52px;
    }

    .cred-strip__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.55rem;
    }

    .cred-strip__track {
        width: 100%;
        -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 88%, transparent);
        mask-image: linear-gradient(90deg, #000 0%, #000 88%, transparent);
    }

    .cred-strip__items {
        gap: 1rem;
        font-size: 0.78rem;
        animation-duration: 28s;
    }

    .cred-strip__item {
        gap: 0.55rem;
    }

    .cred-strip__item img {
        max-width: 78px;
        height: 24px;
    }

    .service-grid article,
    .about-grid > div,
    .podcast-grid article,
    .case-study-grid > div {
        min-height: 0;
        padding: 1.25rem;
    }

    .service-card__body,
    .contact-form-panel,
    .deliverables-panel,
    .podcast-stat-panel div {
        padding: 1.1rem;
    }

    .project-hero {
        min-height: 520px;
    }

    .project-hero__content {
        padding: 6rem 0 3rem;
    }

    .project-facts div {
        padding: 0.85rem;
    }

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

    .contact-aside {
        position: static;
    }

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

    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
}

/* Store landing */

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

.store-choice {
    background: #f7f5ef;
    border: 1px solid rgba(27, 47, 52, 0.14);
    border-radius: 8px;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-height: 17rem;
    padding: clamp(1.4rem, 3vw, 2rem);
    text-decoration: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.store-choice:hover,
.store-choice:focus-visible {
    border-color: var(--accent);
    box-shadow: 0 18px 42px rgba(27, 47, 52, 0.12);
    transform: translateY(-2px);
}

.store-choice__label {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.store-choice strong {
    color: #111;
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    line-height: 0.98;
    max-width: 11ch;
}

.store-choice span:last-child {
    color: #3f4a4d;
    font-size: 1rem;
    line-height: 1.55;
    margin-top: auto;
    max-width: 28rem;
}

@media (max-width: 760px) {
    .store-choice-grid {
        grid-template-columns: 1fr;
    }

    .store-choice {
        min-height: 13rem;
    }
}

/* Merchandise landing */

.shop-content--merchandise {
    padding-top: 3.5rem;
}

.merchandise-intro {
    align-items: end;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
    margin-bottom: 1.25rem;
    padding-bottom: 2rem;
}

.merchandise-intro h2 {
    color: var(--text);
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.92;
    margin: 0;
    max-width: 12ch;
    text-transform: uppercase;
}

.merchandise-intro p:last-child {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0;
}

.merchandise-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 0 0 2rem;
}

.merchandise-filter a {
    border: 1px solid var(--line);
    color: var(--text);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    padding: 0.7rem 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.merchandise-filter a:hover,
.merchandise-filter a:focus-visible {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text);
}

.shop-content--merchandise .woocommerce-result-count,
.shop-content--merchandise .woocommerce-ordering {
    margin-bottom: 1rem;
}

.shop-content--merchandise .woocommerce ul.products {
    gap: 1rem;
}

.shop-content--merchandise .woocommerce ul.products li.product {
    border-color: rgba(255, 255, 255, 0.12);
    overflow: hidden;
    transition: border-color 180ms ease, transform 180ms ease;
}

.shop-content--merchandise .woocommerce ul.products li.product:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.shop-content--merchandise .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1rem;
    line-height: 1.2;
}

@media (max-width: 760px) {
    .merchandise-intro {
        align-items: start;
        grid-template-columns: 1fr;
    }

    .merchandise-intro h2 {
        font-size: clamp(2rem, 13vw, 3.4rem);
    }
}

/* Merchandise section navigation */

.shop-content--merchandise .woocommerce-products-header,
.shop-content--merchandise .woocommerce-products-header__title,
.shop-content--merchandise .page-title {
    display: none;
}

.merchandise-filter a.is-active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text);
}

/* Merchandise compact filter */
.shop-content--merchandise { padding-top: 2rem; }
.shop-content--merchandise .merchandise-filter { margin-bottom: 1.4rem; }

/* Media downloads */

.shop-content--media {
    padding-top: 3rem;
}

.media-downloads-intro {
    align-items: end;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.75fr);
    margin-bottom: 1.4rem;
    padding-bottom: 1.8rem;
}

.media-downloads-intro h2 {
    color: var(--text);
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 5vw, 4.6rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.92;
    margin: 0;
    max-width: 13ch;
    text-transform: uppercase;
}

.media-downloads-intro p:last-child,
.media-downloads-actions span,
.media-download-card p {
    color: var(--muted);
    line-height: 1.6;
}

.media-downloads-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-download-card {
    background: var(--panel);
    border: 1px solid var(--line);
    min-height: 14rem;
    padding: 1.2rem;
}

.media-download-card span {
    color: var(--muted);
    display: block;
    font-size: 0.75rem;
    font-weight: 900;
    margin-bottom: 3rem;
}

.media-download-card h3 {
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1.45rem;
    line-height: 1;
    margin: 0 0 0.75rem;
    text-transform: uppercase;
}

.media-download-card p {
    margin: 0;
}

.media-downloads-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.4rem;
}

@media (max-width: 800px) {
    .media-downloads-intro,
    .media-downloads-grid {
        grid-template-columns: 1fr;
    }

    .media-download-card {
        min-height: 11rem;
    }
}



/* Media collection archive */

.media-collection-section {
    padding-top: 3rem;
}

.media-collection-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-collection-card {
    background: var(--panel);
    border: 1px solid var(--line);
    min-width: 0;
}

.media-collection-card a {
    color: inherit;
    display: block;
    height: 100%;
    text-decoration: none;
}

.media-collection-card figure {
    align-items: center;
    aspect-ratio: 4 / 3;
    background: #111;
    color: var(--muted);
    display: flex;
    font-size: 0.78rem;
    font-weight: 800;
    justify-content: center;
    letter-spacing: 0.08em;
    margin: 0;
    overflow: hidden;
    position: relative;
    text-transform: uppercase;
}

.media-collection-card figure img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.media-collection-card figure em {
    background: var(--accent);
    color: var(--text);
    font-style: normal;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    padding: 0.45rem 0.55rem;
    position: absolute;
    right: 0.75rem;
    text-transform: uppercase;
    top: 0.75rem;
}

.media-collection-card__body {
    padding: 1.1rem;
}

.media-collection-card__body > span {
    color: var(--muted);
    display: block;
    font-size: 0.72rem;
    font-weight: 900;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
}

.media-collection-card h2 {
    color: var(--text);
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 0.96;
    margin: 0;
    text-transform: uppercase;
}

.media-collection-card p {
    color: var(--muted);
    line-height: 1.55;
    margin: 0.85rem 0 0;
}

.media-collection-card strong {
    color: var(--text);
    display: block;
    font-size: 0.82rem;
    margin-top: 1rem;
}

.media-empty-state {
    border: 1px solid var(--line);
    max-width: 52rem;
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.media-empty-state h2 {
    color: var(--text);
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 0.95;
    margin: 0;
    text-transform: uppercase;
}

.media-empty-state p:last-child {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .media-collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .media-collection-grid {
        grid-template-columns: 1fr;
    }
}

/* Media items */

.media-subcollections-section,
.media-items-section {
    padding-top: 0;
}

.media-subcollection-grid,
.media-item-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-subcollection-card,
.media-item-card {
    background: var(--panel);
    border: 1px solid var(--line);
}

.media-subcollection-card a {
    color: inherit;
    display: block;
    text-decoration: none;
}

.media-subcollection-card figure {
    aspect-ratio: 4 / 3;
    background: #111;
    margin: 0;
    overflow: hidden;
}

.media-subcollection-card img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.media-subcollection-card > a > div {
    padding: 1rem;
}

.media-subcollection-card span {
    color: var(--muted);
    display: block;
    font-size: 0.72rem;
    font-weight: 900;
    margin-bottom: 0.65rem;
    text-transform: uppercase;
}

.media-subcollection-card h3 {
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

.media-subcollection-card .media-subcollection-card__meta {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.media-subcollection-card p {
    color: var(--muted);
    margin: 0.75rem 0 0;
}

.media-item-card figure {
    background: #111;
    align-items: center;
    display: flex;
    min-height: 18rem;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.media-item-card img {
    display: block;
    height: auto;
    max-height: 34rem;
    object-fit: contain;
    width: 100%;
}

.media-item-card__placeholder {
    align-items: center;
    color: var(--muted);
    display: flex;
    font-size: 0.8rem;
    height: 100%;
    justify-content: center;
    text-transform: uppercase;
}

.media-item-card__watermark {
    color: rgba(255, 255, 255, 0.62);
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 3.4rem);
    font-weight: 900;
    left: 50%;
    letter-spacing: 0;
    pointer-events: none;
    position: absolute;
    text-transform: uppercase;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-18deg);
    white-space: nowrap;
}

.media-item-card > div {
    padding: 1rem;
}

.media-item-card h3 {
    color: var(--text);
    display: none;
    font-size: 1rem;
    margin: 0 0 0.8rem;
}

.media-item-card .button {
    font-size: 0.78rem;
    padding: 0.55rem 0.75rem;
}

.media-item-card__status,
.media-items-empty {
    color: var(--muted);
}

.media-item-card__status {
    display: block;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 0.65rem;
}

@media (max-width: 900px) {
    .media-subcollection-grid,
    .media-item-grid {
        grid-template-columns: 1fr;
    }
}

/* My downloads */

.my-downloads-panel {
    margin: 0 auto;
    max-width: 1180px;
}

.my-downloads-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.my-download-card {
    background: var(--panel);
    border: 1px solid var(--line);
}

.my-download-card figure {
    align-items: center;
    background: #111;
    display: flex;
    margin: 0;
    min-height: 14rem;
    overflow: hidden;
}

.my-download-card img {
    display: block;
    height: auto;
    max-height: 26rem;
    object-fit: contain;
    width: 100%;
}

.my-download-card > div {
    padding: 1rem;
}

.my-download-card span {
    color: var(--muted);
    display: block;
    font-size: 0.72rem;
    font-weight: 900;
    margin-bottom: 0.65rem;
    text-transform: uppercase;
}

.my-download-card h3 {
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1;
    margin: 0 0 0.8rem;
    text-transform: uppercase;
}

.my-download-card p,
.my-downloads-empty {
    color: var(--muted);
}

.my-download-card .button {
    font-size: 0.78rem;
    margin-top: 0.25rem;
    padding: 0.55rem 0.75rem;
}

.my-download-card__empty {
    color: var(--muted);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

@media (max-width: 900px) {
    .my-downloads-grid {
        grid-template-columns: 1fr;
    }
}


.menu-item-cart > a::before,
.menu-item-258 > a::before {
    background: currentColor;
    content: "";
    display: inline-block;
    height: 1.05em;
    margin-right: 0.45rem;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='21' r='1'/%3E%3Ccircle cx='19' cy='21' r='1'/%3E%3Cpath d='M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='21' r='1'/%3E%3Ccircle cx='19' cy='21' r='1'/%3E%3Cpath d='M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12'/%3E%3C/svg%3E") center / contain no-repeat;
    position: relative;
    top: 0.12em;
    width: 1.05em;
}


.about-hero__grid--text {
    display: block;
}

.about-content {
    padding-top: 3.5rem;
}

.about-story {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
    margin-bottom: 4rem;
}

.about-story .section-heading {
    margin-bottom: 0;
}

.about-story .section-heading p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.08rem;
}

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

.profile-card {
    background: var(--panel);
    border: 1px solid var(--line);
}

.profile-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.profile-card__body {
    padding: 1.25rem;
}

.profile-card h3 {
    margin: 0;
    text-transform: uppercase;
}

.profile-card p {
    margin-bottom: 0;
}

.about-service-summary {
    margin: 4.5rem 0 0;
}

.deliverables-panel {
    align-items: center;
}

.deliverables-panel .deliverables-list {
    align-self: center;
    margin-top: 0;
}

.deliverables-panel .deliverables-list li {
    max-width: 560px;
}

.content-section--dark .eyebrow,
.podcast-grid .eyebrow {
    color: var(--muted);
}

.contact-hero {
    padding-bottom: 3rem;
}

.contact-content {
    padding-top: 3rem;
}

.contact-layout {
    grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1.1fr);
    gap: clamp(1.5rem, 4vw, 4rem);
}

.contact-aside h2 {
    font-size: clamp(1.8rem, 3.5vw, 3.3rem);
}

@media (max-width: 900px) {
    .about-story,
    .profile-grid {
        grid-template-columns: 1fr;
    }

    .contact-aside {
        position: static;
    }
}

.contact-content--compact {
    padding-top: clamp(3rem, 6vw, 5rem);
}

.contact-layout--compact {
    align-items: start;
    grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
}

.contact-layout--compact .contact-aside {
    position: static;
}

.contact-layout--compact h1 {
    font-size: clamp(2.6rem, 5.8vw, 5.8rem);
    max-width: 640px;
}

.contact-layout--compact .contact-aside > p {
    color: var(--muted);
    max-width: 560px;
}

.contact-direct {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

.contact-direct p {
    margin: 0;
}

.contact-direct p + p {
    margin-top: 0.35rem;
}

@media (max-width: 900px) {
    .contact-layout--compact {
        grid-template-columns: 1fr;
    }
}

.contact-layout--compact {
    column-gap: clamp(2.5rem, 7vw, 7rem);
}

.contact-layout--compact .contact-aside {
    min-width: 0;
}

.contact-layout--compact h1 {
    max-width: 560px;
    overflow-wrap: normal;
}

.contact-layout--compact .contact-form-panel {
    min-width: 0;
}

@media (min-width: 1200px) {
    .contact-layout--compact {
        grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1fr);
    }
}

.media-collection-card__body > span,
.media-collection-panel .eyebrow,
.media-subcollection-card span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.28rem 0.48rem;
    background: rgba(244, 240, 234, 0.1);
    border: 1px solid rgba(244, 240, 234, 0.18);
    color: var(--text);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}


.tothebar-cart-item-thumb {
    align-items: center;
    display: inline-flex;
    gap: 0.85rem;
}

.tothebar-cart-item-thumb__image {
    aspect-ratio: 1;
    border: 1px solid var(--line);
    height: 64px;
    object-fit: cover;
    width: 64px;
}

.woocommerce table.shop_table .product-thumbnail img {
    aspect-ratio: 1;
    height: 72px;
    object-fit: cover;
    width: 72px;
}


.home .eyebrow,
.home .text-link {
    color: var(--muted);
}

.home .button,
.home .cta-band .button {
    color: var(--text);
}

.cred-strip__label {
    color: var(--text);
}

.cred-strip__item {
    color: var(--muted);
}

.cred-strip__item span,
.cred-strip p {
    color: inherit;
}


.media-collection-hero .eyebrow,
.media-subcollections-section .eyebrow,
.media-items-section .eyebrow {
    color: var(--muted);
}

.media-subcollection-card--general span {
    color: var(--text);
}


.media-collection-detail__content {
    max-width: 62rem;
}

.media-collection-cta {
    padding-top: 0;
}

.media-collection-cta__inner {
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: clamp(1.5rem, 4vw, 2.5rem);
}

.media-collection-cta__inner h2 {
    color: var(--text);
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3.25rem);
    line-height: 0.95;
    margin: 0;
    text-transform: uppercase;
}

.media-collection-cta__inner p:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.55;
    margin: 0.55rem 0 0;
    max-width: 38rem;
}

.media-collection-card__body > span,
.media-subcollection-card span,
.media-subcollection-card .media-subcollection-card__meta,
.media-subcollections-section .section-heading .eyebrow,
.media-items-section .section-heading .eyebrow,
.media-collection-cta .eyebrow {
    color: var(--muted);
}

.media-subcollection-card span {
    color: var(--text);
}

@media (max-width: 760px) {
    .media-collection-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}


.media-subcollection-card.is-active {
    border-color: rgba(244, 240, 234, 0.42);
}

.media-subcollection-card.is-active h3 {
    color: var(--text);
}


/* Merchandise product polish */

.single-product .shop-content {
    padding-top: clamp(2rem, 5vw, 4rem);
}

.woocommerce div.product {
    display: grid;
    gap: clamp(1.5rem, 4vw, 3rem);
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
    float: none;
    width: auto;
}

.woocommerce div.product div.images {
    margin-bottom: 0;
}

.woocommerce div.product div.images img {
    background: #111;
    border: 1px solid var(--line);
}

.woocommerce div.product div.images .flex-control-thumbs {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 0.75rem;
}

.woocommerce div.product div.images .flex-control-thumbs li {
    float: none;
    width: auto;
}

.woocommerce div.product div.summary {
    background: var(--panel);
    border: 1px solid var(--line);
    padding: clamp(1.2rem, 3vw, 2rem);
}

.woocommerce div.product .product_title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 4.6rem);
    line-height: 0.92;
    margin-bottom: 1rem;
}

.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce div.product .woocommerce-product-details__short-description p {
    color: var(--muted);
    line-height: 1.65;
}

.woocommerce div.product form.cart {
    border-top: 1px solid var(--line);
    margin-top: 1.4rem;
    padding-top: 1.4rem;
}

.woocommerce div.product form.cart .variations {
    margin-bottom: 1rem;
}

.woocommerce div.product form.cart .variations th,
.woocommerce div.product form.cart .variations td {
    display: block;
    padding: 0 0 0.65rem;
    text-align: left;
}

.woocommerce div.product form.cart .variations label {
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.woocommerce div.product form.cart .variations select {
    width: 100%;
}

.woocommerce div.product .reset_variations,
.woocommerce div.product .stock,
.woocommerce div.product .woocommerce-variation-description {
    color: var(--muted);
}

.woocommerce div.product .single_variation_wrap .woocommerce-variation-price {
    margin-bottom: 1rem;
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related.products,
.woocommerce div.product .upsells.products {
    grid-column: 1 / -1;
}

.woocommerce div.product .woocommerce-tabs {
    border-top: 1px solid var(--line);
    padding-top: 2rem;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    border: 0;
    margin: 0 0 1rem;
    padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 0;
    margin: 0 0.4rem 0.5rem 0;
    padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    padding: 0.75rem 1rem;
    text-transform: uppercase;
}

.woocommerce div.product .woocommerce-tabs .panel {
    color: var(--muted);
    line-height: 1.65;
}

.woocommerce div.product .related.products > h2,
.woocommerce div.product .upsells.products > h2 {
    color: var(--text);
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 0.95;
    text-transform: uppercase;
}

@media (max-width: 880px) {
    .woocommerce div.product {
        grid-template-columns: 1fr;
    }

    .woocommerce div.product div.summary {
        padding: 1rem;
    }
}


/* WooCommerce variation select readability */

.woocommerce div.product form.cart .variations select,
.woocommerce div.product form.cart table.variations select,
.woocommerce .variations_form select {
    appearance: auto;
    -webkit-appearance: menulist;
    background-color: #f7f5ef;
    border: 1px solid rgba(244, 240, 234, 0.32);
    color: #111;
    display: block;
    font-size: 1rem;
    font-weight: 750;
    line-height: 1.35;
    min-height: 54px;
    padding: 0.85rem 2.75rem 0.85rem 1rem;
    width: 100%;
}

.woocommerce div.product form.cart .variations select option,
.woocommerce .variations_form select option {
    background: #f7f5ef;
    color: #111;
}

.woocommerce div.product form.cart .variations td.value {
    min-width: min(100%, 22rem);
    width: 100%;
}

.woocommerce div.product form.cart .variations .reset_variations {
    display: inline-block;
    margin-top: 0.65rem;
}


/* WooCommerce quantity stepper */

.woocommerce .quantity {
    align-items: stretch;
    display: inline-flex;
    gap: 0.35rem;
    min-height: 52px;
}

.woocommerce .quantity .qty {
    font-size: 1.05rem;
    font-weight: 850;
    min-height: 52px;
    min-width: 5rem;
    text-align: center;
}

.woocommerce .quantity .ttb-qty-button {
    align-items: center;
    background: #f7f5ef;
    border: 1px solid rgba(244, 240, 234, 0.32);
    color: #111;
    cursor: pointer;
    display: inline-flex;
    font-size: 1.35rem;
    font-weight: 900;
    justify-content: center;
    line-height: 1;
    min-height: 52px;
    min-width: 48px;
    padding: 0;
}

.woocommerce .quantity .ttb-qty-button:hover,
.woocommerce .quantity .ttb-qty-button:focus-visible {
    background: var(--text);
    color: #111;
}


/* Premium merchandise product cards */

.shop-content--merchandise .woocommerce ul.products {
    gap: clamp(1rem, 2vw, 1.4rem);
}

.shop-content--merchandise .woocommerce ul.products li.product {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022));
    border: 1px solid rgba(244, 240, 234, 0.16);
    border-radius: 6px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    padding: 0.75rem 0.75rem 1rem;
}

.shop-content--merchandise .woocommerce ul.products li.product:hover {
    border-color: rgba(244, 240, 234, 0.38);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.26);
}

.shop-content--merchandise .woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
}

.shop-content--merchandise .woocommerce ul.products li.product img {
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #d9d5ca 0%, #f4f0e8 100%);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 4px;
    box-sizing: border-box;
    margin: 0 0 1rem;
    object-fit: contain;
    padding: clamp(0.65rem, 2vw, 1rem);
}

.shop-content--merchandise .woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: var(--text);
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    letter-spacing: 0;
    line-height: 1;
    margin: 0 0.35rem 0.65rem;
    min-height: 2.7em;
}

.shop-content--merchandise .woocommerce ul.products li.product .price {
    color: var(--text);
    display: block;
    font-size: 1rem;
    font-weight: 900;
    margin: auto 0.35rem 1rem;
}

.shop-content--merchandise .woocommerce ul.products li.product .button {
    align-items: center;
    align-self: stretch;
    background: #f7f5ef;
    border: 1px solid rgba(244, 240, 234, 0.22);
    border-radius: 4px;
    color: #111;
    display: inline-flex;
    justify-content: center;
    margin: 0.25rem 0.35rem 0;
    min-height: 46px;
    padding: 0.8rem 1rem;
}

.shop-content--merchandise .woocommerce ul.products li.product .button:hover,
.shop-content--merchandise .woocommerce ul.products li.product .button:focus-visible {
    background: var(--accent);
    color: var(--text);
}

.shop-content--merchandise .woocommerce ul.products li.product .added_to_cart {
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 850;
    margin: 0.7rem 0.35rem 0;
    text-transform: uppercase;
}

@media (max-width: 760px) {
    .shop-content--merchandise .woocommerce ul.products li.product {
        padding: 0.65rem 0.65rem 0.9rem;
    }
}


/* Editorial merchandise product grid */
.shop-content--merchandise .woocommerce ul.products {
    align-items: stretch;
    gap: clamp(1.1rem, 2.4vw, 1.75rem);
}

.shop-content--merchandise .woocommerce ul.products li.product {
    background: linear-gradient(180deg, rgba(244, 240, 234, 0.075), rgba(244, 240, 234, 0.028));
    border: 1px solid rgba(244, 240, 234, 0.18);
    border-radius: 6px;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
    padding: clamp(0.7rem, 1.4vw, 0.95rem);
    position: relative;
}

.shop-content--merchandise .woocommerce ul.products li.product::before {
    background: linear-gradient(90deg, rgba(244, 240, 234, 0.45), rgba(244, 240, 234, 0));
    content: "";
    height: 1px;
    left: 0.95rem;
    position: absolute;
    right: 0.95rem;
    top: 0.95rem;
    z-index: 1;
}

.shop-content--merchandise .woocommerce ul.products li.product:hover {
    border-color: rgba(244, 240, 234, 0.42);
    box-shadow: 0 28px 58px rgba(0, 0, 0, 0.32);
    transform: translateY(-3px);
}

.shop-content--merchandise .woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
}

.shop-content--merchandise .woocommerce ul.products li.product img {
    aspect-ratio: 1 / 1;
    background:
        radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.95), rgba(247, 245, 239, 0.92) 48%, rgba(221, 216, 203, 0.9) 100%);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 4px;
    box-shadow: inset 0 -18px 34px rgba(17, 17, 17, 0.06);
    box-sizing: border-box;
    margin: 0 0 clamp(0.95rem, 2vw, 1.25rem);
    object-fit: contain;
    padding: clamp(0.45rem, 1.6vw, 0.85rem);
    transition: transform 180ms ease, filter 180ms ease;
}

.shop-content--merchandise .woocommerce ul.products li.product:hover img {
    filter: saturate(1.03) contrast(1.02);
    transform: scale(1.018);
}

.shop-content--merchandise .woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #f7f5ef;
    font-family: var(--font-display);
    font-size: clamp(1.02rem, 1.8vw, 1.28rem);
    letter-spacing: 0;
    line-height: 1.04;
    margin: 0 0.35rem 0.7rem;
    min-height: 2.25em;
}

.shop-content--merchandise .woocommerce ul.products li.product .price {
    color: rgba(247, 245, 239, 0.88);
    display: block;
    font-size: 1.02rem;
    font-weight: 900;
    margin: auto 0.35rem 1rem;
}

.shop-content--merchandise .woocommerce ul.products li.product .button {
    align-items: center;
    align-self: stretch;
    background: #f7f5ef;
    border: 1px solid rgba(247, 245, 239, 0.3);
    border-radius: 4px;
    color: #0b2e41;
    display: inline-flex;
    font-size: 0.78rem;
    justify-content: center;
    letter-spacing: 0.08em;
    margin: 0.15rem 0.35rem 0;
    min-height: 46px;
    padding: 0.82rem 1rem;
    text-transform: uppercase;
}

.shop-content--merchandise .woocommerce ul.products li.product .button:hover,
.shop-content--merchandise .woocommerce ul.products li.product .button:focus-visible {
    background: var(--accent);
    border-color: var(--accent);
    color: #f7f5ef;
}

.shop-content--merchandise .woocommerce ul.products li.product .added_to_cart {
    color: #f7f5ef;
    font-size: 0.78rem;
    font-weight: 850;
    margin: 0.7rem 0.35rem 0;
    text-transform: uppercase;
}

@media (min-width: 980px) {
    .shop-content--merchandise .woocommerce ul.products.columns-4 li.product {
        width: calc(25% - 1.35rem);
    }
}

@media (max-width: 760px) {
    .shop-content--merchandise .woocommerce ul.products li.product {
        padding: 0.65rem;
    }

    .shop-content--merchandise .woocommerce ul.products li.product .woocommerce-loop-product__title {
        min-height: 0;
    }
}


/* Merchandise card rounded catalogue refinement */
.shop-content--merchandise .woocommerce ul.products li.product {
    border-radius: 8px;
    padding: clamp(0.82rem, 1.6vw, 1.05rem);
}

.shop-content--merchandise .woocommerce ul.products li.product::before {
    left: 1.05rem;
    right: 1.05rem;
    top: 1.05rem;
}

.shop-content--merchandise .woocommerce ul.products li.product img {
    border-radius: 8px;
    margin-bottom: clamp(1rem, 2vw, 1.35rem);
    padding: clamp(0.5rem, 1.5vw, 0.8rem);
}

.shop-content--merchandise .woocommerce ul.products li.product .button {
    border-radius: 999px;
    font-size: 0.76rem;
    min-height: 44px;
}

@media (max-width: 760px) {
    .shop-content--merchandise .woocommerce ul.products li.product {
        border-radius: 8px;
        padding: 0.72rem;
    }
}


/* Merchandise visible rounded card treatment */
body.woocommerce-page .shop-content--merchandise .woocommerce ul.products li.product,
body.tax-product_cat .shop-content--merchandise .woocommerce ul.products li.product,
.shop-content--merchandise ul.products li.product.product {
    border-radius: 22px !important;
    overflow: hidden;
    padding: clamp(0.85rem, 1.7vw, 1.1rem) !important;
}

body.woocommerce-page .shop-content--merchandise .woocommerce ul.products li.product img,
body.tax-product_cat .shop-content--merchandise .woocommerce ul.products li.product img,
.shop-content--merchandise ul.products li.product.product img {
    border-radius: 18px !important;
    display: block;
    overflow: hidden;
}

body.woocommerce-page .shop-content--merchandise .woocommerce ul.products li.product .button,
body.tax-product_cat .shop-content--merchandise .woocommerce ul.products li.product .button,
.shop-content--merchandise ul.products li.product.product .button {
    border-radius: 999px !important;
}


/* Merchandise category hub tiles */
.merchandise-category-tiles {
    display: grid;
    gap: clamp(1rem, 2.4vw, 1.5rem);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 0 2.2rem;
}

.merchandise-category-tile {
    background: linear-gradient(180deg, rgba(244, 240, 234, 0.09), rgba(244, 240, 234, 0.035));
    border: 1px solid rgba(244, 240, 234, 0.2);
    border-radius: 22px;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
    color: #f7f5ef;
    display: flex;
    flex-direction: column;
    min-height: 13rem;
    overflow: hidden;
    padding: clamp(1.1rem, 2vw, 1.35rem);
    position: relative;
    text-decoration: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.merchandise-category-tile::before {
    background: radial-gradient(circle at 80% 12%, rgba(247, 245, 239, 0.18), rgba(247, 245, 239, 0) 46%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.merchandise-category-tile span {
    color: rgba(247, 245, 239, 0.68);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    position: relative;
    text-transform: uppercase;
}

.merchandise-category-tile strong {
    color: #f7f5ef;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 3.3rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.95;
    margin: auto 0 0.8rem;
    position: relative;
    text-transform: uppercase;
}

.merchandise-category-tile em {
    color: rgba(247, 245, 239, 0.78);
    font-style: normal;
    line-height: 1.45;
    max-width: 18rem;
    position: relative;
}

.merchandise-category-tile:hover,
.merchandise-category-tile:focus-visible,
.merchandise-category-tile.is-active {
    border-color: rgba(247, 245, 239, 0.46);
    box-shadow: 0 28px 58px rgba(0, 0, 0, 0.28);
    transform: translateY(-3px);
}

@media (max-width: 860px) {
    .merchandise-category-tiles {
        grid-template-columns: 1fr;
    }

    .merchandise-category-tile {
        min-height: 10rem;
    }
}


/* Merchandise tile text fit */
.merchandise-category-tile strong {
    font-size: clamp(1.55rem, 3.2vw, 2.85rem);
    overflow-wrap: anywhere;
    text-wrap: balance;
}

@media (min-width: 861px) and (max-width: 1120px) {
    .merchandise-category-tile strong {
        font-size: clamp(1.35rem, 2.6vw, 2.05rem);
    }
}


/* Media preview copy guard */
.media-item-card figure,
.media-item-card img {
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
    user-select: none;
}

.media-item-card img {
    pointer-events: none;
}

/* App promotion */
.site-footer__apps {
    align-items: flex-start;
    border-bottom: 1px solid rgba(247, 245, 239, 0.12);
    display: grid;
    gap: 1rem;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.9fr);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}

.site-footer__apps-label {
    color: rgba(247, 245, 239, 0.66);
    display: block;
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.site-footer__apps strong {
    color: #f7f5ef;
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.6vw, 2.25rem);
    line-height: 0.98;
    text-transform: uppercase;
}

.site-footer__apps p {
    color: rgba(247, 245, 239, 0.72);
    margin: 0.45rem 0 0;
    max-width: 34rem;
}

.site-footer__app-links,
.store-app-card div {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: flex-end;
}

.site-footer__app-links a,
.store-app-card a {
    align-items: center;
    background: rgba(247, 245, 239, 0.08);
    border: 1px solid rgba(247, 245, 239, 0.2);
    border-radius: 999px;
    color: #f7f5ef;
    display: inline-flex;
    font-size: 0.88rem;
    font-weight: 800;
    min-height: 2.7rem;
    padding: 0.7rem 1rem;
    text-decoration: none;
}

.site-footer__app-links a:hover,
.site-footer__app-links a:focus-visible,
.store-app-card a:hover,
.store-app-card a:focus-visible {
    background: rgba(247, 245, 239, 0.14);
    border-color: rgba(247, 245, 239, 0.42);
}

.store-app-promo {
    align-items: stretch;
    border-top: 1px solid rgba(247, 245, 239, 0.12);
    display: grid;
    gap: clamp(1rem, 2.5vw, 1.5rem);
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    margin-top: clamp(1.5rem, 3vw, 2.4rem);
    padding-top: clamp(1.5rem, 3vw, 2.4rem);
}

.store-app-promo h2 {
    color: #f7f5ef;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 0.95;
    margin: 0;
    text-transform: uppercase;
}

.store-app-promo p:not(.eyebrow) {
    color: rgba(247, 245, 239, 0.76);
    margin: 1rem 0 0;
    max-width: 38rem;
}

.store-app-promo__cards {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.store-app-card {
    background: linear-gradient(180deg, rgba(244, 240, 234, 0.09), rgba(244, 240, 234, 0.035));
    border: 1px solid rgba(244, 240, 234, 0.2);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    min-height: 13rem;
    padding: clamp(1.1rem, 2vw, 1.35rem);
}

.store-app-card span {
    color: rgba(247, 245, 239, 0.68);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.store-app-card strong {
    color: #f7f5ef;
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    line-height: 0.95;
    margin: auto 0 1rem;
    text-transform: uppercase;
}

@media (max-width: 860px) {
    .site-footer__apps,
    .store-app-promo,
    .store-app-promo__cards {
        grid-template-columns: 1fr;
    }

    .site-footer__app-links,
    .store-app-card div {
        justify-content: flex-start;
    }
}

/* Official app store badges */
.site-footer__app-links .app-badge-link,
.store-app-card .app-badge-link {
    background: transparent !important;
    border: 0 !important;
    border-radius: 9px;
    box-shadow: none;
    line-height: 0;
    min-height: 0;
    padding: 0 !important;
}

.app-badge-link img {
    display: block;
    height: 40px;
    max-width: 100%;
    width: auto;
}

.store-app-card .app-badge-link img {
    height: 44px;
}

.site-footer__app-links .app-badge-link:hover,
.site-footer__app-links .app-badge-link:focus-visible,
.store-app-card .app-badge-link:hover,
.store-app-card .app-badge-link:focus-visible {
    background: transparent !important;
    outline: 2px solid rgba(247, 245, 239, 0.42);
    outline-offset: 4px;
}

@media (max-width: 420px) {
    .app-badge-link img,
    .store-app-card .app-badge-link img {
        height: 38px;
    }
}

/* App download tiles */
.app-download-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.app-download-grid--footer {
    align-self: stretch;
}

.app-download-tile {
    background: linear-gradient(180deg, rgba(244, 240, 234, 0.1), rgba(244, 240, 234, 0.04));
    border: 1px solid rgba(244, 240, 234, 0.2);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    min-height: 10.5rem;
    padding: 1rem;
}

.app-download-tile span {
    color: rgba(247, 245, 239, 0.68);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.app-download-tile strong {
    color: #f7f5ef;
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.5vw, 2.35rem);
    line-height: 0.98;
    margin: auto 0 0;
    text-transform: uppercase;
}

.app-download-tile__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.site-footer__apps .app-download-tile strong {
    font-size: clamp(1.15rem, 1.8vw, 1.55rem);
}

.site-footer__apps .app-download-tile {
    min-height: 9.25rem;
}

.store-app-promo .store-app-promo__cards {
    display: grid;
}

@media (max-width: 860px) {
    .app-download-grid {
        grid-template-columns: 1fr;
    }
}

/* Store app promo refinement */
.store-app-promo {
    display: block;
}

.store-app-promo__heading {
    margin-bottom: 1rem;
}

.store-app-promo h2 {
    font-size: clamp(1.65rem, 3vw, 2.75rem);
}

.store-app-promo p:not(.eyebrow) {
    display: none;
}

.store-app-promo__cards.app-download-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.store-app-card.app-download-tile {
    background: linear-gradient(180deg, rgba(244, 240, 234, 0.09), rgba(244, 240, 234, 0.035));
    border: 1px solid rgba(244, 240, 234, 0.2);
    border-radius: 8px;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
    gap: 1rem;
    justify-content: space-between;
    min-height: 0;
    padding: clamp(1.1rem, 2vw, 1.35rem);
}

.store-app-card.app-download-tile strong {
    font-size: clamp(1.45rem, 2.6vw, 2.45rem);
    margin: 0;
}

.store-app-card.app-download-tile span {
    display: none;
}

.store-app-card .app-download-tile__badges {
    margin-top: 0.1rem;
}

@media (max-width: 860px) {
    .store-app-promo__cards.app-download-grid {
        grid-template-columns: 1fr;
    }
}

