{# lookbook (magazine-bold) — grid of duotone look frames with mono numbering, captions and optional shop links. Fields: heading, intro, looks[].image/.caption/.credit/.link/.linkLabel. Image via {% img %} (media filter not registered in block render path). MID motion: duotone hover + mb-reveal, reduced-motion safe. #}
{% if heading %}

{{ heading }}

{% endif %} {% if intro %}

{{ intro }}

{% endif %} {% if looks %}
{% for look in looks %}
{% if look.image %}
{% img look.image alt=look.caption|default:"" class="h-full w-full object-cover" %}
{% endif %}
{{ forloop.Counter|stringformat:"%02d" }} {% if look.caption %}{{ look.caption }}{% endif %} {% if look.credit %}{{ look.credit }}{% endif %}
{% if look.link %}{{ look.linkLabel|default:"Shop the look" }}{% endif %}
{% endfor %}
{% else %}
No looks yet.
{% endif %}