/* ============================================================
   WINDSOR · site system v5 (editorial)
   Structure follows the rhythm Carlos referenced (caffemilani.it):
   a warm paper ground for content, full-bleed photographic bands
   between, grids drawn with hairlines instead of cards, section
   headers as a dot + title with the action pushed to the right.
   Palette stays Windsor: paper + ink, brand red on light, gold on
   dark. Cinzel display, Jost text.
   ============================================================ */

:root {
  /* dark side: hero, bands, footer */
  --bg:      #17100a;
  --bg-deep: #120b05;
  --panel:   #221809;
  --panel-2: #2a1d10;
  --line:    rgba(200, 161, 76, 0.22);
  --line-2:  rgba(200, 161, 76, 0.45);
  --gold:    #c8a14c;
  --gold-2:  #d9b25a;
  --cream:   #e1ddd8;
  --white:   #fefefe;
  --dim:     #c9bfae;

  /* light side: the page ground */
  --paper:   #f3ede4;
  --paper-2: #eae2d5;
  --ink:     #241a11;
  --ink-2:   #6f6050;
  --rule:    rgba(36, 26, 17, .14);
  --rule-2:  rgba(36, 26, 17, .28);
  --red:     #7d2a24;

  --serif: 'Cinzel', serif;
  --sans:  'Jost', sans-serif;

  /* line accents (sampled from the reference boxes) */
  --l-tes:    #7d2a24;
  --l-mates:  #3f6b3a;
  --l-frutas: #d9a52a;
  --l-ceylan: #c0272d;
}

html { scroll-behavior: smooth; font-size: 15px; }

body {
  /* the reset used to live in the retired css/hero.css; without this the page
     carried the default 8px body margin, i.e. a dark frame around the hero */
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
}

::selection { background: rgba(125, 42, 36, .18); }

img { display: block; max-width: 100%; }

/* ---------- layout ---------- */

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.wrap-wide { max-width: 1600px; }

.section { padding: clamp(4.5rem, 8vw, 8rem) 0; position: relative; }
.section.tight { padding: clamp(3rem, 5vw, 5rem) 0; }
.section.pt0 { padding-top: 0; }
.section.pb0 { padding-bottom: 0; }

.sec-dark { background: var(--bg); color: var(--cream); }
.sec-alt { background: var(--paper-2); }

/* ---------- type ---------- */

.overline {
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.sec-dark .overline, .on-dark .overline { color: var(--gold-2); }

/* dot + title, the section header of the reference */
.sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
}

.sec-head .t {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: .01em;
  color: var(--ink);
}
.sec-head .t::before {
  content: "";
  width: .62em; height: .62em;
  border-radius: 50%;
  background: var(--red);
  flex: 0 0 auto;
}
.sec-dark .sec-head .t, .on-dark .sec-head .t { color: var(--white); }
.sec-dark .sec-head .t::before, .on-dark .sec-head .t::before { background: var(--gold); }

.h-display {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: .01em;
  color: var(--ink);
  text-wrap: balance;
  margin: 0 0 1.2rem;
}
.sec-dark .h-display, .on-dark .h-display { color: var(--white); }

.lead {
  font-weight: 300;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.8;
  color: var(--ink-2);
  max-width: 46rem;
  margin: 0 0 1rem;
}
.sec-dark .lead, .on-dark .lead { color: var(--dim); }

.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* ---------- buttons: pills ---------- */

.b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  padding: .95rem 1.7rem;
  border: 1px solid transparent;
  transition: background-color .25s ease, color .25s ease,
              border-color .25s ease, transform .25s ease;
}

.b .ico { width: 1.1em; height: 1.1em; }
.b .arrow { transition: transform .25s ease; }
.b:hover .arrow { transform: translateX(4px); }

.b-solid { color: var(--paper); background: var(--ink); }
.b-solid:hover { background: #3a2a1a; }

.b-ghost { color: var(--ink); border-color: var(--rule-2); background: transparent; }
.b-ghost:hover { border-color: var(--ink); background: rgba(36, 26, 17, .05); }

.on-dark .b-solid, .sec-dark .b-solid { color: var(--ink); background: var(--gold-2); }
.on-dark .b-solid:hover, .sec-dark .b-solid:hover { background: #e6c273; }
.on-dark .b-ghost, .sec-dark .b-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .55);
}
.on-dark .b-ghost:hover, .sec-dark .b-ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

/* quiet text link with a rule under it */
.link-line {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--red);
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--rule-2);
  transition: border-color .25s ease, color .25s ease;
}
.link-line:hover { color: var(--ink); border-color: var(--ink); }

/* ---------- fixed header ---------- */

.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 74px;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0 clamp(1.25rem, 3vw, 2.6rem);
  background: rgba(243, 237, 228, .94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: transform .45s ease, opacity .45s ease;
}

.site-head.auto-hide { transform: translateY(-102%); opacity: 0; }
.site-head.auto-hide.on { transform: none; opacity: 1; }

.sh-logo { flex: 0 0 auto; display: block; }
.sh-logo img { height: 42px; width: auto; }

.sh-nav { display: flex; gap: 2.2rem; margin-left: 1rem; }

.sh-nav a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding: .4rem 0;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}

.sh-nav a:hover { color: var(--red); }
.sh-nav a.active { border-color: var(--red); color: var(--red); }

.sh-cta { margin-left: auto; padding: .8rem 1.4rem; font-size: .7rem; }

/* ---------- reveal on scroll ---------- */

.rv { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.rv.on { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
}

/* ---------- full-bleed category tiles ---------- */

.tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.tile {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4.15;
  overflow: hidden;
  text-decoration: none;
  background: var(--bg);
}

.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.22,.61,.36,1), filter .5s ease;
  filter: brightness(.82);
}
.tile:hover img { filter: brightness(1); }

.tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12, 8, 3, .5) 0%, rgba(12, 8, 3, .08) 42%, rgba(12, 8, 3, .72) 100%);
}

.tile-in {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: clamp(1.4rem, 2.2vw, 2.2rem);
}

.tile h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  line-height: 1.1;
  letter-spacing: .04em;
  color: var(--white);
  margin: 0 0 .5rem;
  text-shadow: 0 2px 18px rgba(10, 6, 2, .6);
}

.tile p {
  font-weight: 300;
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(245, 238, 226, .84);
  margin: 0 0 1rem;
  max-width: 24ch;
}

.tile .go {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.tile .go svg { width: 14px; height: 14px; stroke: currentColor; transition: transform .3s ease; }
.tile:hover .go svg { transform: translateX(4px); }

.tile .num {
  position: absolute;
  top: clamp(1rem, 1.8vw, 1.6rem);
  left: clamp(1.4rem, 2.2vw, 2.2rem);
  z-index: 1;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .26em;
  color: rgba(245, 238, 226, .7);
}

/* ---------- product grid: hairlines, no cards ---------- */

/* hairlines are drawn BY the cells, not by a gap over a coloured ground: a row
   that does not fill (17 SKUs, or a filter that hides some) leaves paper, not
   a grey block */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  margin-top: 2.5rem;
}

.prod {
  background: var(--paper);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: clamp(1.4rem, 2vw, 2rem) clamp(1rem, 1.6vw, 1.6rem) clamp(1.6rem, 2.2vw, 2.2rem);
  display: flex;
  flex-direction: column;
  transition: background-color .3s ease;
}
.prod:hover { background: #fbf7f0; }

.prod-img, .prod-plate {
  position: relative;
  aspect-ratio: 4 / 4.4;
  overflow: hidden;
  margin-bottom: 1.4rem;
}
.prod-img img { width: 100%; height: 100%; object-fit: cover; }

/* designed label plate for SKUs without photography: a tinted paper block in
   the line's own colour, so a grid of plates and photos still reads as one */
.prod-plate {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  padding: 1.2rem;
  text-align: center;
  background: var(--paper-2);
  background: color-mix(in srgb, var(--plate, #7d2a24) 11%, #fbf8f2);
}
.prod-plate img { height: 42px; width: auto; }
.prod-plate .pp-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.25;
  color: var(--ink);
  text-wrap: balance;
}
.prod-plate .pp-rule {
  width: 34px; height: 2px;
  background: var(--plate, #7d2a24);
  opacity: .75;
}

.prod-line {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--red);
}

.prod h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--ink);
  margin: .5rem 0 .5rem;
}

.prod p {
  font-weight: 300;
  font-size: .86rem;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
}

.prod-formats { display: flex; gap: .4rem; margin-top: auto; padding-top: 1rem; flex-wrap: wrap; }
.prod-formats span {
  font-size: .66rem;
  letter-spacing: .1em;
  color: var(--ink-2);
  border: 1px solid var(--rule-2);
  border-radius: 999px;
  padding: .22rem .6rem;
}

.prod.hide { display: none; }

/* ---------- statement band: full-bleed photo, centred ---------- */

.statement {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  min-height: clamp(420px, 62vh, 620px);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.statement .st-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.statement::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 8, 3, .55), rgba(12, 8, 3, .35) 45%, rgba(12, 8, 3, .8)),
    radial-gradient(70% 70% at 50% 50%, rgba(12, 8, 3, .1), rgba(12, 8, 3, .55));
}

.statement .wrap { position: relative; z-index: 1; }

.statement h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  line-height: 1.15;
  letter-spacing: .01em;
  color: var(--white);
  text-wrap: balance;
  max-width: 20ch;
  margin: 0 auto 1.6rem;
  text-shadow: 0 3px 30px rgba(10, 6, 2, .5);
}

.statement .lead {
  color: #ece3d4;
  margin: 0 auto 2.2rem;
  max-width: 52ch;
}

/* ---------- editorial split ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: center;
}

.split.rev { direction: rtl; }
.split.rev > * { direction: ltr; }

.split-img { position: relative; overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 4.4; }

.split-cap {
  margin-top: .9rem;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.ghost-num {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  top: 6%;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(7rem, 16vw, 15rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(36, 26, 17, .1);
  pointer-events: none;
  user-select: none;
}
.sec-dark .ghost-num { -webkit-text-stroke-color: rgba(200, 161, 76, .16); }

/* ---------- numbered pillars ---------- */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.8rem, 3.5vw, 3.5rem);
  margin-top: clamp(2rem, 3.5vw, 3rem);
}

.pillar { padding-top: 1.6rem; border-top: 1px solid var(--rule-2); }

.pillar .n {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .26em;
  color: var(--red);
  margin-bottom: 1.1rem;
}

.pillar svg { width: 30px; height: 30px; stroke: var(--ink); margin-bottom: 1rem; opacity: .8; }

.pillar h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0 0 .6rem;
}

.pillar p { font-weight: 300; font-size: .92rem; line-height: 1.75; color: var(--ink-2); margin: 0; }

.sec-dark .pillar { border-top-color: var(--line); }
.sec-dark .pillar .n { color: var(--gold); }
.sec-dark .pillar svg { stroke: var(--gold); }
.sec-dark .pillar h3 { color: var(--white); }
.sec-dark .pillar p { color: var(--dim); }

/* ---------- page hero (subpages) ---------- */

.page-hero {
  position: relative;
  padding: clamp(10rem, 17vw, 14rem) 0 clamp(4rem, 7vw, 6rem);
  overflow: hidden;
  background: var(--bg);
}

.page-hero .ph-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.55);
}

.page-hero .ph-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18, 11, 5, .7), rgba(18, 11, 5, .45) 45%, rgba(18, 11, 5, .85));
}

.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .overline { color: var(--gold-2); }

.page-hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: .02em;
  color: var(--white);
  text-wrap: balance;
  margin: 0 0 1.2rem;
  max-width: 20ch;
}
.page-hero .lead { color: #ece3d4; }

/* ---------- quote ---------- */

.quote {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.7vw, 2.4rem);
  line-height: 1.35;
  color: var(--ink);
  text-wrap: balance;
  max-width: 26ch;
  margin: 0 auto;
  text-align: center;
}

.quote em { font-style: normal; color: var(--red); }
.sec-dark .quote { color: var(--white); }
.sec-dark .quote em { color: var(--gold-2); }

/* ---------- filters (productos) ---------- */

.filters {
  position: sticky;
  top: 74px;
  z-index: 50;
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  padding: 1.1rem 0;
  background: linear-gradient(180deg, var(--paper) 76%, transparent);
}

.filters button {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--rule-2);
  border-radius: 999px;
  padding: .6rem 1.25rem;
  cursor: pointer;
  transition: all .25s ease;
}

.filters button:hover { border-color: var(--ink); }
.filters button.active { background: var(--ink); border-color: var(--ink); color: var(--paper); }

/* ---------- footer ---------- */

.site-foot {
  background: var(--bg-deep);
  color: var(--dim);
  padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.foot-brand img { height: 58px; width: auto; margin-bottom: 1.2rem; }
.foot-brand p { font-weight: 300; font-size: .92rem; line-height: 1.75; color: var(--dim); max-width: 30ch; margin: 0; }

.site-foot h4 {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.2rem;
}

.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { margin-bottom: .6rem; }
.site-foot ul a {
  font-weight: 300;
  font-size: .92rem;
  color: var(--dim);
  text-decoration: none;
  transition: color .2s ease;
}
.site-foot ul a:hover { color: var(--gold-2); }

.foot-legal {
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-weight: 300;
  font-size: .78rem;
  color: rgba(201, 191, 174, .6);
}

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .split, .split.rev { grid-template-columns: 1fr; direction: ltr; }
  .split-img img { aspect-ratio: 16 / 10; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .sh-nav { display: none; }
  .sh-cta { display: none; }
  .tiles { grid-template-columns: 1fr; }
  .tile { aspect-ratio: 16 / 11; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr; gap: 2rem; }
  .filters { top: 74px; }
}

/* ============================================================
   Photography components (v5.1). Everything below the fold is
   lazy-loaded; the library lives in assets/lib and is graded by
   scripts/build_library.py.
   ============================================================ */

/* full-bleed asymmetric mosaic */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(120px, 13vw, 200px);
  grid-auto-flow: dense;   /* spans must not leave holes in the rectangle */
  gap: 2px;
  background: var(--rule);
}

.mosaic figure { margin: 0; position: relative; overflow: hidden; background: var(--bg); }
.mosaic img { width: 100%; height: 100%; object-fit: cover; }
.mosaic .tall { grid-row: span 2; }
.mosaic .wide { grid-column: span 2; }
.mosaic .big  { grid-column: span 2; grid-row: span 2; }

.mosaic figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1.2rem .9rem;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #f3ead6;
  background: linear-gradient(180deg, transparent, rgba(12, 8, 3, .8));
}

/* three-step process, photo on top */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.6rem);
  margin-top: clamp(2rem, 3.5vw, 3rem);
}

.step .ph { position: relative; overflow: hidden; aspect-ratio: 4 / 3.2; margin-bottom: 1.3rem; }
.step .ph img { width: 100%; height: 100%; object-fit: cover; }

.step .n {
  position: absolute;
  left: 0; bottom: 0;
  z-index: 1;
  padding: .55rem 1rem;
  background: var(--paper);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .26em;
  color: var(--red);
}

.step h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0 0 .55rem;
}
.step p { font-weight: 300; font-size: .92rem; line-height: 1.75; color: var(--ink-2); margin: 0; }

/* two images side by side, captioned */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2vw, 1.6rem); }
.duo figure { margin: 0; }
.duo img { width: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.duo .short img { aspect-ratio: 4 / 3.4; }
.duo figcaption {
  margin-top: .8rem;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-2);
}

/* even photo strip with captions under */
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
  margin-top: clamp(2rem, 3.5vw, 3rem);
}
.strip figure { margin: 0; }
.strip img { width: 100%; object-fit: cover; aspect-ratio: 3 / 4; }
.strip figcaption {
  margin-top: .85rem;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.strip .sub {
  display: block;
  margin-top: .3rem;
  font-family: var(--sans);
  font-weight: 300;
  font-size: .86rem;
  line-height: 1.6;
  color: var(--ink-2);
}
.sec-dark .strip figcaption { color: var(--white); }
.sec-dark .strip .sub { color: var(--dim); }

/* wide editorial figure with the caption beside it */
.figure-wide { position: relative; }
.figure-wide img { width: 100%; object-fit: cover; aspect-ratio: 21 / 9; }
.figure-wide figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: .9rem;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-2);
}

@media (max-width: 1080px) {
  .steps { grid-template-columns: 1fr; }
  .strip { grid-template-columns: repeat(2, 1fr); }
  .mosaic { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .duo { grid-template-columns: 1fr; }
  .strip { grid-template-columns: 1fr; }
}
